From 64fa18398ace579bde6eb2bb75949fcb8cd92bda Mon Sep 17 00:00:00 2001 From: serkus01 <7erkus@gmail.com> Date: Sat, 4 Sep 2021 10:48:28 +0900 Subject: [PATCH] add local_USEs --- __pycache__/findfsdb.cpython-39.pyc | Bin 2429 -> 2428 bytes __pycache__/getUses.cpython-39.pyc | Bin 756 -> 1050 bytes findfsdb.py | 4 ++-- getUses.py | 16 +++++++++++++++- overlays.json | 2 +- pkgs.json | 1 - 6 files changed, 18 insertions(+), 5 deletions(-) delete mode 100644 pkgs.json diff --git a/__pycache__/findfsdb.cpython-39.pyc b/__pycache__/findfsdb.cpython-39.pyc index 8bfc6525e7c683f93ebd5cfb1633f2b4eb035fea..9053925a27d129fee5ddaee5ca3cf88d52dcb838 100644 GIT binary patch delta 36 qcmew>^hby{k(ZZ?0SL|>GD_^+$ScLj!JD315}%WwyxD-!mjeL99tvLo delta 37 rcmew(^jC;Ck(ZZ?0SI2bG)(N?$ScLj$(Np55}%%vpR`$@(U$`N)d33& diff --git a/__pycache__/getUses.cpython-39.pyc b/__pycache__/getUses.cpython-39.pyc index 35feef0ce8921d4076f760948f622a358a9ba97b..148f12675a7871bb24a814797f7d08df06cadef8 100644 GIT binary patch delta 434 zcmY+Au}T9$5Qb-V_mV@sGb$z~h;`CP)YifxTH1sV6(j^#L=1-PZ4Ufn8H|SkzypQ3`L9xp=iMIbtFSMR$8VQJcd%M z3t@H!)vG=0kS?^7qRwf!5oL%mgef)8$~I89|LTZjE+MpGP*q@aHXq~g0fECxz9Ae^ ztxmfQ8Wcq=5iScG5WLnWK6cO(p$Rp2-w67WkqpIf7&%6sfrOfCctU0t8pJtHJ%-Pi zXDl!l8B2`fA4-&E-r1?`^!g{=UZ>UEEhTkP*{b3i7H}O+nH)8hiGGmDU>F#l^hBKM LGU-=JGEw;ji3nBW delta 162 zcmbQm@r9Kyk(ZZ?0SMmxGfdpew2?2Ak+EuW3S%Xs=Hz>fGK?aVe=|ndivblRgH#~{ zMj*!-h>KZ(L<&PNgC?V2kqD5DPKZukz$|Xa1e9T5ED{Hjnk=`N@{4aV7grV+fs6(V KV(6O0A_V}LNgHhd diff --git a/findfsdb.py b/findfsdb.py index e7f5101..17e6180 100755 --- a/findfsdb.py +++ b/findfsdb.py @@ -5,7 +5,7 @@ import json from io import StringIO from utils.utils import get_list_overlays from GenRecovers import ScanRecoverFile -from getUses import get_global_USE +from getUses import get_local_USE from package import search # создаём разширеную базу пактов с предлизительно структурой @@ -24,7 +24,7 @@ def create_db(): overlays = get_list_overlays() recovers = ScanRecoverFile() pkg_list ={} - listUses=get_global_USE() + listUses=get_local_USE() port_dir =["/var/lib/layman/", "/usr/portage"] if not os.path.exists('./pkgs.json'): print("Create ramdb") diff --git a/getUses.py b/getUses.py index f3e397a..a36a599 100644 --- a/getUses.py +++ b/getUses.py @@ -21,4 +21,18 @@ def get_global_USE(): def get_local_USE(): - pass + ListUSE={} + with open("/usr/portage/profiles/use.desc") as uses: + line = uses.read().split("\n") + print(line) + for l in line: + if l.startswith('#') or l =='': + pass + else: + try: + #result[cat].append(search(r)) + ListUSE[str(l.split('-')[0])] = str(l.split('-')[1:]) + print(ListUSE[str(l.split('-')[0])]) + except Exception (e): + print(e) + return ListUSE diff --git a/overlays.json b/overlays.json index eb8003b..ae8db34 100644 --- a/overlays.json +++ b/overlays.json @@ -1 +1 @@ -{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]} \ No newline at end of file +{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]}{"repositories": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}]} \ No newline at end of file diff --git a/pkgs.json b/pkgs.json deleted file mode 100644 index 2ce08ea..0000000 --- a/pkgs.json +++ /dev/null @@ -1 +0,0 @@ -{"all_pkgs": ["usr/portage", "acct-group/abrt", "acct-group/adm", "acct-group/aerospike-amc", "acct-group/airdcppd", "acct-group/alertmanager", "acct-group/amanda", "acct-group/amavis", "acct-group/amule", "acct-group/android", "acct-group/anope", "acct-group/apache", "acct-group/apt-cacher-ng", "acct-group/argus", "acct-group/arpwatch", "acct-group/artifactory", "acct-group/aspnet", "acct-group/asterisk", "acct-group/at", "acct-group/atheme-services", "acct-group/audio", "acct-group/automatic", "acct-group/automx2", "acct-group/avahi-autoipd", "acct-group/avahi", "acct-group/axtls", "acct-group/backuppc", "acct-group/bacula", "acct-group/badvpn", "acct-group/bareos", "acct-group/beanstalk", "acct-group/bedrock", "acct-group/bind_exporter", "acct-group/bird", "acct-group/bitcoin", "acct-group/bitflu", "acct-group/bitlbee", "acct-group/blackbox_exporter", "acct-group/boinc", "acct-group/buildbot", "acct-group/bumblebee", "acct-group/burp", "acct-group/burrow_exporter", "acct-group/cadvisor", "acct-group/cancd", "acct-group/carbon", "acct-group/cdrom", "acct-group/ceph", "acct-group/cgit", "acct-group/chronograf", "acct-group/cinder", "acct-group/clair", "acct-group/clamav", "acct-group/cmd5checkpw", "acct-group/cntlm", "acct-group/cockroach", "acct-group/collectd", "acct-group/colord", "acct-group/consul-template", "acct-group/consul", "acct-group/consul_exporter", "acct-group/coredns", "acct-group/croc", "acct-group/cron", "acct-group/crontab", "acct-group/cvmfs", "acct-group/davfs2", "acct-group/dbmail", "acct-group/dbskkd", "acct-group/ddclient", "acct-group/defang", "acct-group/dehydrated", "acct-group/deluge", "acct-group/dhcp", "acct-group/dhcpcd", "acct-group/dialout", "acct-group/dictd", "acct-group/dirsrv", "acct-group/disk", "acct-group/distcc", "acct-group/dnrd", "acct-group/dnscrypt-proxy", "acct-group/dnsdist", "acct-group/dnsmasq", "acct-group/dnsmasq_exporter", "acct-group/docker", "acct-group/docker_auth", "acct-group/dovecot", "acct-group/dovenull", "acct-group/drone", "acct-group/elasticsearch", "acct-group/elasticsearch_exporter", "acct-group/energi3", "acct-group/epam", "acct-group/epmd", "acct-group/err", "acct-group/etcd", "acct-group/exabgp", "acct-group/ez-ipupd", "acct-group/fax", "acct-group/fcron", "acct-group/fdm", "acct-group/fetchmail", "acct-group/fhem", "acct-group/fingerprint", "acct-group/firebird", "acct-group/flatpak", "acct-group/flows", "acct-group/fluentd", "acct-group/foldingathome", "acct-group/fp-multiuser", "acct-group/freenet", "acct-group/fritzbox_smarthome_exporter", "acct-group/frr", "acct-group/ftp", "acct-group/ftpproxy", "acct-group/fvwm-crystal", "acct-group/gamemode", "acct-group/gamestat", "acct-group/gatling", "acct-group/gauth", "acct-group/gdm", "acct-group/geneweb", "acct-group/geoclue", "acct-group/gerbera", "acct-group/git", "acct-group/github-exporter", "acct-group/gkrellmd", "acct-group/glance", "acct-group/gluster", "acct-group/gnump3d", "acct-group/gnupg-pkcs11-scd-proxy", "acct-group/gnupg-pkcs11", "acct-group/gopher", "acct-group/gopherd", "acct-group/gpib", "acct-group/gpio", "acct-group/grafana", "acct-group/graylog", "acct-group/greetd", "acct-group/grok_exporter", "acct-group/groonga", "acct-group/gvm", "acct-group/h2o", "acct-group/haclient", "acct-group/haproxy", "acct-group/havp", "acct-group/heat", "acct-group/hsqldb", "acct-group/http", "acct-group/i2c", "acct-group/i2p", "acct-group/i2pd", "acct-group/icecast", "acct-group/icecream", "acct-group/ices", "acct-group/icinga", "acct-group/icingacmd", "acct-group/icingaweb2", "acct-group/influxdb", "acct-group/input", "acct-group/inspircd", "acct-group/ipfs", "acct-group/ipsec", "acct-group/ipsentinel", "acct-group/iroffer", "acct-group/jabber", "acct-group/jenkins", "acct-group/kafka", "acct-group/kapacitor", "acct-group/karma", "acct-group/keystone", "acct-group/kibana", "acct-group/kismet", "acct-group/kmem", "acct-group/knot", "acct-group/kube-apiserver", "acct-group/kube-controller-manager", "acct-group/kube-scheduler", "acct-group/kvm", "acct-group/ldap", "acct-group/libvirt", "acct-group/lightdm", "acct-group/lighttpd", "acct-group/litecoin", "acct-group/lldpd", "acct-group/locate", "acct-group/logcheck", "acct-group/logstash", "acct-group/logsurfer", "acct-group/lp", "acct-group/lpadmin", "acct-group/lxc", "acct-group/lxd", "acct-group/mail", "acct-group/man", "acct-group/maradns", "acct-group/memcached", "acct-group/memcached_exporter", "acct-group/messagebus", "acct-group/mgraph", "acct-group/milter-regex", "acct-group/minbif", "acct-group/minecraft", "acct-group/minetest", "acct-group/minidlna", "acct-group/minio", "acct-group/mogile", "acct-group/mongodb", "acct-group/mongodb_exporter", "acct-group/monitorix", "acct-group/monkeyd", "acct-group/monkeysphere", "acct-group/mosquitto", "acct-group/motion", "acct-group/msmtpd", "acct-group/munge", "acct-group/munin", "acct-group/murmur", "acct-group/mysql", "acct-group/mysqld_exporter", "acct-group/mythtv", "acct-group/nagios", "acct-group/named", "acct-group/netbox", "acct-group/netdata", "acct-group/netdev", "acct-group/netperf", "acct-group/neutron", "acct-group/nginx-vts-exporter", "acct-group/nginx", "acct-group/ngircd", "acct-group/ngrep", "acct-group/nm-openconnect", "acct-group/nm-openvpn", "acct-group/nobody", "acct-group/node_exporter", "acct-group/nofiles", "acct-group/notary", "acct-group/nova", "acct-group/nsd", "acct-group/nslcd", "acct-group/ntopng", "acct-group/ntp", "acct-group/nullmail", "acct-group/nut", "acct-group/nzbget", "acct-group/oidentd", "acct-group/openct", "acct-group/opendkim", "acct-group/opendmarc", "acct-group/opendnssec", "acct-group/openntpd", "acct-group/openrct2", "acct-group/openvpn", "acct-group/openvpn_exporter", "acct-group/opm", "acct-group/oprofile", "acct-group/oragono", "acct-group/ossec", "acct-group/p2p", "acct-group/partimag", "acct-group/pcap", "acct-group/pcscd", "acct-group/pdns", "acct-group/pdnsd", "acct-group/pgagent", "acct-group/pkcs11", "acct-group/placement", "acct-group/plex", "acct-group/plugdev", "acct-group/polkitd", "acct-group/polw", "acct-group/popa3d", "acct-group/portage", "acct-group/postdrop", "acct-group/postfix", "acct-group/postfix_exporter", "acct-group/postfwd", "acct-group/postgres", "acct-group/postgres_exporter", "acct-group/postgrey", "acct-group/privoxy", "acct-group/prometheus", "acct-group/psybnc", "acct-group/pulse-access", "acct-group/pulse", "acct-group/puppet", "acct-group/puppetdb", "acct-group/pushgateway", "acct-group/pvpgn", "acct-group/qemu", "acct-group/qmail", "acct-group/quagga", "acct-group/quassel", "acct-group/rabbitmq", "acct-group/rabbitmq_exporter", "acct-group/radicale", "acct-group/radius", "acct-group/radvd", "acct-group/rbldns", "acct-group/rbot", "acct-group/realtime", "acct-group/redis", "acct-group/redis_exporter", "acct-group/redmine", "acct-group/redsocks", "acct-group/reg", "acct-group/registry", "acct-group/render", "acct-group/resin", "acct-group/roccat", "acct-group/root", "acct-group/ros", "acct-group/rplayd", "acct-group/rslsync", "acct-group/rspamd", "acct-group/rstudio-server", "acct-group/rt", "acct-group/rtkit", "acct-group/rundeck", "acct-group/rwhoisd", "acct-group/sabnzbd", "acct-group/sagan", "acct-group/samplicator", "acct-group/sancp", "acct-group/sanlock", "acct-group/sauerbraten", "acct-group/scanlogd", "acct-group/scanner", "acct-group/scponly", "acct-group/scsi", "acct-group/serf", "acct-group/sguil", "acct-group/sgx", "acct-group/shellinaboxd", "acct-group/sigh", "acct-group/simplevirt", "acct-group/sispmctl", "acct-group/sks", "acct-group/slurm", "acct-group/smmsp", "acct-group/smokeping", "acct-group/sms", "acct-group/smtpd", "acct-group/smtpq", "acct-group/snapserver", "acct-group/sniproxy", "acct-group/snmp_exporter", "acct-group/snort", "acct-group/sobby", "acct-group/sobexsrv", "acct-group/sockd", "acct-group/sogo", "acct-group/spamd", "acct-group/spectrum", "acct-group/spi", "acct-group/spire", "acct-group/spread", "acct-group/sqlgrey", "acct-group/squid", "acct-group/sshd", "acct-group/ssmtp", "acct-group/sstpc", "acct-group/stapdev", "acct-group/stapsys", "acct-group/stapusr", "acct-group/stdiscosrv", "acct-group/steamcmd", "acct-group/stg", "acct-group/strelaysrv", "acct-group/stubby", "acct-group/stunnel", "acct-group/subsonic", "acct-group/supervisor", "acct-group/suricata", "acct-group/svnusers", "acct-group/svxlink", "acct-group/swift", "acct-group/syncthing", "acct-group/systemd-coredump", "acct-group/systemd-journal-remote", "acct-group/systemd-journal", "acct-group/systemd-network", "acct-group/systemd-oom", "acct-group/systemd-resolve", "acct-group/systemd-timesync", "acct-group/tape", "acct-group/taskd", "acct-group/teamspeak", "acct-group/telegraf", "acct-group/tenshi", "acct-group/thttpd", "acct-group/tinyproxy", "acct-group/tomcat", "acct-group/tor", "acct-group/tox", "acct-group/tpm", "acct-group/transmission", "acct-group/trickster", "acct-group/trojan", "acct-group/tsm", "acct-group/tss", "acct-group/ttrssd", "acct-group/tty", "acct-group/turnserver", "acct-group/ubridge", "acct-group/ulogd", "acct-group/ultimaker", "acct-group/unbound-telemetry", "acct-group/unbound", "acct-group/unifi-video", "acct-group/unifi", "acct-group/unrealircd", "acct-group/upmpdcli", "acct-group/uptimed", "acct-group/usb", "acct-group/users", "acct-group/ushare", "acct-group/utmp", "acct-group/uucp", "acct-group/uwsgi_exporter", "acct-group/vacation", "acct-group/varnish", "acct-group/vault", "acct-group/vault_exporter", "acct-group/vboxguest", "acct-group/vboxsf", "acct-group/vboxusers", "acct-group/vdr", "acct-group/vdradmin", "acct-group/video", "acct-group/vlock", "acct-group/vnstat", "acct-group/vpopmail", "acct-group/wesnoth", "acct-group/wheel", "acct-group/wwwoffle", "acct-group/x2goprint", "acct-group/x2gouser", "acct-group/xpra", "acct-group/xrootd", "acct-group/xwax", "acct-group/zabbix", "acct-group/zeppelin", "acct-group/zetcd", "acct-group/ziproxy", "acct-group/znc", "acct-group/zookeeper", "acct-user/abrt", "acct-user/aerospike-amc", "acct-user/airdcppd", "acct-user/alertmanager", "acct-user/alias", "acct-user/amanda", "acct-user/amavis", "acct-user/amule", "acct-user/anope", "acct-user/apache", "acct-user/apt-cacher-ng", "acct-user/argus", "acct-user/arpwatch", "acct-user/artifactory", "acct-user/aspnet", "acct-user/asterisk", "acct-user/at", "acct-user/atheme-services", "acct-user/automatic", "acct-user/automx2", "acct-user/avahi-autoipd", "acct-user/avahi", "acct-user/axtls", "acct-user/backuppc", "acct-user/bacula", "acct-user/badvpn", "acct-user/bareos", "acct-user/beanstalk", "acct-user/bedrock", "acct-user/bind_exporter", "acct-user/bird", "acct-user/bitcoin", "acct-user/bitflu", "acct-user/bitlbee", "acct-user/blackbox_exporter", "acct-user/boinc", "acct-user/buildbot", "acct-user/burp", "acct-user/burrow_exporter", "acct-user/cadvisor", "acct-user/cancd", "acct-user/carbon", "acct-user/ceph", "acct-user/cgit", "acct-user/chronograf", "acct-user/cinder", "acct-user/clair", "acct-user/clamav", "acct-user/cmd5checkpw", "acct-user/cntlm", "acct-user/cockroach", "acct-user/collectd", "acct-user/colord", "acct-user/consul-template", "acct-user/consul", "acct-user/consul_exporter", "acct-user/coredns", "acct-user/croc", "acct-user/cron", "acct-user/cvmfs", "acct-user/cyrus", "acct-user/darkstat", "acct-user/davfs2", "acct-user/dbmail", "acct-user/dbskkd", "acct-user/ddclient", "acct-user/defang", "acct-user/dehydrated", "acct-user/deluge", "acct-user/dhcp", "acct-user/dhcpcd", "acct-user/dictd", "acct-user/dirsrv", "acct-user/distcc", "acct-user/dnrd", "acct-user/dnscache", "acct-user/dnscrypt-proxy", "acct-user/dnsdist", "acct-user/dnslog", "acct-user/dnsmasq", "acct-user/dnsmasq_exporter", "acct-user/docker_auth", "acct-user/dovecot", "acct-user/dovenull", "acct-user/drone", "acct-user/duende", "acct-user/elasticsearch", "acct-user/elasticsearch_exporter", "acct-user/energi3", "acct-user/epmd", "acct-user/err", "acct-user/etcd", "acct-user/exabgp", "acct-user/ez-ipupd", "acct-user/fax", "acct-user/fdm", "acct-user/fetchmail", "acct-user/fhem", "acct-user/flatpak", "acct-user/flows", "acct-user/fluentd", "acct-user/fnord", "acct-user/fnordlog", "acct-user/foldingathome", "acct-user/fp-multiuser", "acct-user/freenet", "acct-user/fritzbox_smarthome_exporter", "acct-user/frr", "acct-user/ftp", "acct-user/ftpproxy", "acct-user/gatling", "acct-user/gauth", "acct-user/gdm", "acct-user/geneweb", "acct-user/geoclue", "acct-user/gerbera", "acct-user/git", "acct-user/github-exporter", "acct-user/gkrellmd", "acct-user/glance", "acct-user/gluster", "acct-user/gnump3d", "acct-user/gnupg-pkcs11-scd-proxy", "acct-user/gopher", "acct-user/gopherd", "acct-user/gpsd", "acct-user/grafana", "acct-user/graylog", "acct-user/greetd", "acct-user/grok_exporter", "acct-user/groonga", "acct-user/gvm", "acct-user/h2o", "acct-user/hacluster", "acct-user/haproxy", "acct-user/havp", "acct-user/heat", "acct-user/hsqldb", "acct-user/http", "acct-user/i2p", "acct-user/i2pd", "acct-user/icecast", "acct-user/icecream", "acct-user/ices", "acct-user/icinga", "acct-user/influxdb", "acct-user/inspircd", "acct-user/ipfs", "acct-user/ippl", "acct-user/ipsec", "acct-user/ipsentinel", "acct-user/iroffer", "acct-user/jabber", "acct-user/jenkins", "acct-user/kafka", "acct-user/kapacitor", "acct-user/keystone", "acct-user/kibana", "acct-user/kismet", "acct-user/knot", "acct-user/kube-apiserver", "acct-user/kube-controller-manager", "acct-user/kube-scheduler", "acct-user/ldap", "acct-user/lighttpd", "acct-user/litecoin", "acct-user/lldpd", "acct-user/logcheck", "acct-user/logstash", "acct-user/logsurfer", "acct-user/lxc", "acct-user/mail", "acct-user/man", "acct-user/maradns", "acct-user/memcached", "acct-user/memcached_exporter", "acct-user/messagebus", "acct-user/mgraph", "acct-user/milter-regex", "acct-user/minbif", "acct-user/minecraft", "acct-user/minetest", "acct-user/minidlna", "acct-user/minio", "acct-user/mogile", "acct-user/mongodb", "acct-user/mongodb_exporter", "acct-user/monitorix", "acct-user/monkeyd", "acct-user/monkeysphere", "acct-user/mosquitto", "acct-user/motion", "acct-user/mpd", "acct-user/msmtpd", "acct-user/munge", "acct-user/munin-async", "acct-user/munin", "acct-user/murmur", "acct-user/mysql", "acct-user/mysqld_exporter", "acct-user/mythtv", "acct-user/nagios", "acct-user/named", "acct-user/netbox", "acct-user/netdata", "acct-user/netperf", "acct-user/neutron", "acct-user/nginx-vts-exporter", "acct-user/ngircd", "acct-user/ngrep", "acct-user/nm-openconnect", "acct-user/nm-openvpn", "acct-user/nobody", "acct-user/node_exporter", "acct-user/notary", "acct-user/nova", "acct-user/nsd", "acct-user/nslcd", "acct-user/ntopng", "acct-user/ntp", "acct-user/nullmail", "acct-user/nut", "acct-user/nvpd", "acct-user/nzbget", "acct-user/oidentd", "acct-user/openctd", "acct-user/opendkim", "acct-user/opendmarc", "acct-user/opendnssec", "acct-user/openntpd", "acct-user/openrct2", "acct-user/openvpn", "acct-user/openvpn_exporter", "acct-user/opm", "acct-user/oprofile", "acct-user/oragono", "acct-user/ossec", "acct-user/ossecm", "acct-user/ossecr", "acct-user/p2p", "acct-user/pcap", "acct-user/pcscd", "acct-user/pdns", "acct-user/pdnsd", "acct-user/pgbouncer", "acct-user/placement", "acct-user/plex", "acct-user/polkitd", "acct-user/polw", "acct-user/popa3d", "acct-user/portage", "acct-user/postfix", "acct-user/postfix_exporter", "acct-user/postfwd", "acct-user/postgres", "acct-user/postgres_exporter", "acct-user/postgrey", "acct-user/postmaster", "acct-user/privoxy", "acct-user/prometheus", "acct-user/psybnc", "acct-user/pulse", "acct-user/puppet", "acct-user/puppetdb", "acct-user/pushgateway", "acct-user/pvpgn", "acct-user/qemu", "acct-user/qmaild", "acct-user/qmaill", "acct-user/qmailp", "acct-user/qmailq", "acct-user/qmailr", "acct-user/qmails", "acct-user/quagga", "acct-user/quassel", "acct-user/rabbitmq", "acct-user/rabbitmq_exporter", "acct-user/radicale", "acct-user/radius", "acct-user/radvd", "acct-user/rbldns", "acct-user/rbot", "acct-user/redis", "acct-user/redis_exporter", "acct-user/redmine", "acct-user/redsocks", "acct-user/reg", "acct-user/registry", "acct-user/root", "acct-user/ros", "acct-user/rplayd", "acct-user/rslsync", "acct-user/rspamd", "acct-user/rstudio-server", "acct-user/rtkit", "acct-user/rundeck", "acct-user/rwhoisd", "acct-user/sabnzbd", "acct-user/sagan", "acct-user/samplicator", "acct-user/sancp", "acct-user/saned", "acct-user/sanlock", "acct-user/sauerbraten", "acct-user/scanlogd", "acct-user/scponly", "acct-user/sendpage", "acct-user/serf", "acct-user/sguil", "acct-user/shellinaboxd", "acct-user/sigh", "acct-user/sks", "acct-user/slurm", "acct-user/smmsp", "acct-user/smokeping", "acct-user/smsd", "acct-user/smtpd", "acct-user/smtpq", "acct-user/snapclient", "acct-user/snapserver", "acct-user/sndiod", "acct-user/sniproxy", "acct-user/snmp_exporter", "acct-user/snort", "acct-user/sobby", "acct-user/sobexsrv", "acct-user/sockd", "acct-user/sogo", "acct-user/spamd", "acct-user/spectrum", "acct-user/spire", "acct-user/spread", "acct-user/sqlgrey", "acct-user/squid", "acct-user/sshd", "acct-user/sstpc", "acct-user/stdiscosrv", "acct-user/steamcmd", "acct-user/stg", "acct-user/strelaysrv", "acct-user/stubby", "acct-user/stunnel", "acct-user/subsonic", "acct-user/suricata", "acct-user/svn", "acct-user/svxlink", "acct-user/swift", "acct-user/syncthing", "acct-user/systemd-coredump", "acct-user/systemd-journal-remote", "acct-user/systemd-network", "acct-user/systemd-oom", "acct-user/systemd-resolve", "acct-user/systemd-timesync", "acct-user/taskd", "acct-user/teamspeak", "acct-user/telegraf", "acct-user/tenshi", "acct-user/thttpd", "acct-user/timidity", "acct-user/tinydns", "acct-user/tinyproxy", "acct-user/tomcat", "acct-user/tor", "acct-user/tox", "acct-user/tpm", "acct-user/transmission", "acct-user/trojan", "acct-user/tss", "acct-user/ttrssd", "acct-user/turnserver", "acct-user/tvheadend", "acct-user/ulogd", "acct-user/ultimaker", "acct-user/unbound-telemetry", "acct-user/unbound", "acct-user/unifi-video", "acct-user/unifi", "acct-user/unrealircd", "acct-user/upmpdcli", "acct-user/uptimed", "acct-user/usbmux", "acct-user/ushare", "acct-user/uwsgi_exporter", "acct-user/vacation", "acct-user/varnish", "acct-user/vault", "acct-user/vault_exporter", "acct-user/vboxguest", "acct-user/vdradmin", "acct-user/vnstat", "acct-user/vpopmail", "acct-user/wesnoth", "acct-user/wwwoffle", "acct-user/x2goprint", "acct-user/x2gouser", "acct-user/xrootd", "acct-user/zabbix", "acct-user/zeppelin", "acct-user/zetcd", "acct-user/ziproxy", "acct-user/znc", "acct-user/zookeeper", "acct-user/karma", "acct-user/trickster", "app-accessibility/accerciser", "app-accessibility/at-spi2-atk", "app-accessibility/at-spi2-core", "app-accessibility/at-spi2-core", "app-accessibility/brltty", "app-accessibility/caribou", "app-accessibility/caribou", "app-accessibility/edbrowse", "app-accessibility/emacspeak-ss", "app-accessibility/emacspeak", "app-accessibility/emacspeak", "app-accessibility/epos", "app-accessibility/espeak-ng", "app-accessibility/espeak-ng", "app-accessibility/espeak", "app-accessibility/espeakup", "app-accessibility/espeakup", "app-accessibility/espeakup", "app-accessibility/flite", "app-accessibility/freetts", "app-accessibility/julius", "app-accessibility/kontrast", "app-accessibility/kontrast", "app-accessibility/mbrola-voices", "app-accessibility/mbrola", "app-accessibility/mbrola", "app-accessibility/nfbtrans", "app-accessibility/orca", "app-accessibility/powiedz", "app-accessibility/sound-icons", "app-accessibility/speech-dispatcher", "app-accessibility/speech-tools", "app-accessibility/speechd-el", "app-accessibility/sphinx2", "app-accessibility/yasr", "app-admin/abrt", "app-admin/abrt", "app-admin/aerospike-amc-community", "app-admin/aerospike-amc-community", "app-admin/amazon-ec2-init", "app-admin/analog", "app-admin/ananicy", "app-admin/ansible-base", "app-admin/ansible-base", "app-admin/ansible-base", "app-admin/ansible-base", "app-admin/ansible-base", "app-admin/ansible-cmdb", "app-admin/ansible-cmdb", "app-admin/ansible-lint", "app-admin/ansible-modules-hashivault", "app-admin/ansible-molecule", "app-admin/ansible", "app-admin/ansible", "app-admin/ansible", "app-admin/apache-tools", "app-admin/apache-tools", "app-admin/apache-tools", "app-admin/apachetop", "app-admin/apg", "app-admin/augeas", "app-admin/augeas", "app-admin/augeas", "app-admin/authbind", "app-admin/aws-elb-tools", "app-admin/awscli", "app-admin/awscli", "app-admin/awscli", "app-admin/awscli", "app-admin/awscli", "app-admin/bastille", "app-admin/bitwarden-desktop-bin", "app-admin/bitwarden-desktop-bin", "app-admin/calamares", "app-admin/cancd", "app-admin/ccze", "app-admin/cdist", "app-admin/checksec", "app-admin/checksec", "app-admin/chroot_safe", "app-admin/chrootuid", "app-admin/chrpath", "app-admin/chrpath", "app-admin/cli53", "app-admin/clog", "app-admin/clsync", "app-admin/clsync", "app-admin/clustershell", "app-admin/conky", "app-admin/conky", "app-admin/conserver", "app-admin/consul-replicate", "app-admin/consul-template", "app-admin/consul-template", "app-admin/consul-template", "app-admin/consul", "app-admin/consul", "app-admin/consul", "app-admin/cpulimit", "app-admin/cronlocker", "app-admin/cronolog", "app-admin/cygwin-rebase", "app-admin/cygwin-rebase", "app-admin/dio", "app-admin/diradm", "app-admin/doas", "app-admin/docker-bench", "app-admin/doctl", "app-admin/doctl", "app-admin/drush", "app-admin/ec2-ami-tools", "app-admin/eclean-kernel", "app-admin/eclean-kernel", "app-admin/eclean-kernel", "app-admin/eclean-kernel", "app-admin/eclean-kernel", "app-admin/emacs-updater", "app-admin/entr", "app-admin/entr", "app-admin/eselect", "app-admin/eselect", "app-admin/eselect", "app-admin/evtxtools", "app-admin/exo", "app-admin/fam", "app-admin/fetchlog", "app-admin/fifo-cronolog", "app-admin/filebeat", "app-admin/filebeat", "app-admin/filebeat", "app-admin/filebeat", "app-admin/filebeat", "app-admin/filebeat", "app-admin/filewatcher", "app-admin/fluentd", "app-admin/fluentd", "app-admin/fsvs", "app-admin/gam-server", "app-admin/gamin", "app-admin/genromfs", "app-admin/gentoo-perl-helpers", "app-admin/gentoo-perl-helpers", "app-admin/gentoo-rsync-mirror", "app-admin/git-credential-gopass", "app-admin/github-backup-utils", "app-admin/github-backup-utils", "app-admin/gixy", "app-admin/gkrellm", "app-admin/gkrellm", "app-admin/gnome-abrt", "app-admin/gnome-abrt", "app-admin/gnome-system-log", "app-admin/go-updater", "app-admin/gopass-hibp", "app-admin/gopass-jsonapi", "app-admin/gopass-summon-provider", "app-admin/gopass", "app-admin/gopass", "app-admin/graylog", "app-admin/graylog", "app-admin/graylog", "app-admin/gtkdiskfree", "app-admin/hardinfo", "app-admin/haskell-updater", "app-admin/hcloud", "app-admin/hcloud", "app-admin/hddtemp", "app-admin/helm", "app-admin/ide-smart", "app-admin/integrit", "app-admin/integrit", "app-admin/keepass", "app-admin/keepass", "app-admin/keepass", "app-admin/keepassxc", "app-admin/keepassxc", "app-admin/keepassxc", "app-admin/keepassxc", "app-admin/killproc", "app-admin/kpcli", "app-admin/kube-bench", "app-admin/kubectx", "app-admin/lib_users", "app-admin/lib_users", "app-admin/lnav", "app-admin/lnav", "app-admin/lnav", "app-admin/logcheck", "app-admin/logmon", "app-admin/logrotate", "app-admin/logsentry", "app-admin/logstalgia", "app-admin/logstash-bin", "app-admin/logstash-bin", "app-admin/logstash-bin", "app-admin/logstash-bin", "app-admin/logstash-bin", "app-admin/logstash-bin", "app-admin/logstash-bin", "app-admin/logsurfer+", "app-admin/longrun", "app-admin/lsyncd", "app-admin/makepasswd", "app-admin/mcelog", "app-admin/mcollective", "app-admin/mcollective", "app-admin/mei-amt-check", "app-admin/metalog", "app-admin/mktwpol", "app-admin/mongo-tools", "app-admin/mongo-tools", "app-admin/mongo-tools", "app-admin/mongo-tools", "app-admin/mongo-tools", "app-admin/mongo-tools", "app-admin/mongo-tools", "app-admin/monit", "app-admin/monit", "app-admin/monit", "app-admin/mtail", "app-admin/mtail", "app-admin/multilog-watch", "app-admin/needrestart", "app-admin/needrestart", "app-admin/needrestart", "app-admin/newsyslog", "app-admin/ngxtop", "app-admin/ngxtop", "app-admin/op-cli-bin", "app-admin/openrc-settingsd", "app-admin/openrc-settingsd", "app-admin/pass-otp", "app-admin/pass", "app-admin/pass", "app-admin/pass", "app-admin/passwordsafe", "app-admin/passwordsafe", "app-admin/paxtest", "app-admin/perl-cleaner", "app-admin/perl-cleaner", "app-admin/petrovich", "app-admin/pprocm", "app-admin/prelude-manager", "app-admin/prelude-manager", "app-admin/procinfo-ng", "app-admin/profile-cleaner", "app-admin/ps_mem", "app-admin/psmon", "app-admin/puppet-agent", "app-admin/puppet-agent", "app-admin/puppet-agent", "app-admin/puppet-agent", "app-admin/puppet-lint", "app-admin/puppet-lint", "app-admin/puppet", "app-admin/puppet", "app-admin/puppet", "app-admin/puppet", "app-admin/puppetdb", "app-admin/puppetdb", "app-admin/puppetserver", "app-admin/puppetserver", "app-admin/puppetserver", "app-admin/pwcrypt", "app-admin/pwgen", "app-admin/pwman3", "app-admin/pwman3", "app-admin/pydf", "app-admin/qpage", "app-admin/qtpass", "app-admin/quickswitch", "app-admin/r10k", "app-admin/radmind", "app-admin/ranpwd", "app-admin/rasdaemon", "app-admin/rcm", "app-admin/rcm", "app-admin/reportmagic", "app-admin/restart-services", "app-admin/restart-services", "app-admin/restart-services", "app-admin/restart-services", "app-admin/rex", "app-admin/rex", "app-admin/rex", "app-admin/rsyslog", "app-admin/rsyslog", "app-admin/rsyslog", "app-admin/rsyslog", "app-admin/ryzen_monitor", "app-admin/ryzen_smu", "app-admin/ryzen_smu", "app-admin/sagan-rules", "app-admin/sagan-rules", "app-admin/sagan", "app-admin/salt", "app-admin/salt", "app-admin/salt", "app-admin/salt", "app-admin/salt", "app-admin/salt", "app-admin/selint", "app-admin/selint", "app-admin/selint", "app-admin/serf", "app-admin/setools", "app-admin/setools", "app-admin/setools", "app-admin/socklog", "app-admin/spectre-meltdown-checker", "app-admin/spectre-meltdown-checker", "app-admin/spectre-meltdown-checker", "app-admin/spectre-meltdown-checker", "app-admin/spectre-meltdown-checker", "app-admin/spectre-meltdown-checker", "app-admin/spectre-meltdown-checker", "app-admin/sshguard", "app-admin/sshguard", "app-admin/sshguard", "app-admin/stow", "app-admin/su-exec", "app-admin/sud", "app-admin/sudo", "app-admin/sudo", "app-admin/sudo", "app-admin/sudo", "app-admin/superadduser", "app-admin/supervisor", "app-admin/supervisor", "app-admin/supervisor", "app-admin/swatchdog", "app-admin/sxid", "app-admin/sysklogd", "app-admin/sysklogd", "app-admin/sysklogd", "app-admin/syslog-ng", "app-admin/syslog-ng", "app-admin/syslog-ng", "app-admin/syslog-ng", "app-admin/syslog-ng", "app-admin/syslog-summary", "app-admin/sysrqd", "app-admin/sysstat", "app-admin/system-config-printer", "app-admin/systemdgenie", "app-admin/tenshi", "app-admin/terraform", "app-admin/terraform", "app-admin/terraform", "app-admin/terraform", "app-admin/terraform", "app-admin/terraform", "app-admin/testdisk", "app-admin/tmpreaper", "app-admin/tmpwatch", "app-admin/tripwire", "app-admin/ulogd", "app-admin/undertaker-scripts", "app-admin/usbview", "app-admin/vault", "app-admin/vault", "app-admin/vault", "app-admin/vault", "app-admin/verynice", "app-admin/watchfolder", "app-admin/webalizer", "app-admin/webapp-config", "app-admin/webapp-config", "app-admin/whowatch", "app-admin/whowatch", "app-admin/xkcdpass", "app-admin/xstow", "app-admin/xstow", "app-admin/xtail", "app-admin/yadm", "app-admin/mongosh-bin", "app-antivirus/clamav", "app-antivirus/clamav", "app-antivirus/clamtk", "app-antivirus/fangfrisch", "app-arch/advancecomp", "app-arch/afio", "app-arch/alien", "app-arch/arc", "app-arch/arj", "app-arch/atool", "app-arch/bloscpack", "app-arch/brotli", "app-arch/brotli", "app-arch/brotli", "app-arch/brotli", "app-arch/bsdsfv", "app-arch/bzip2", "app-arch/bzip2", "app-arch/cabextract", "app-arch/cabextract", "app-arch/cabextract", "app-arch/cabextract", "app-arch/cksfv", "app-arch/cksfv", "app-arch/cpio", "app-arch/cpio", "app-arch/createrepo_c", "app-arch/deb2targz", "app-arch/dpkg", "app-arch/dpkg", "app-arch/duff", "app-arch/dump", "app-arch/engrampa", "app-arch/engrampa", "app-arch/fastjar", "app-arch/file-roller", "app-arch/funzix", "app-arch/gcab", "app-arch/gnome-autoar", "app-arch/gnome-autoar", "app-arch/gtk-splitter", "app-arch/gzip", "app-arch/hardlink", "app-arch/innoextract", "app-arch/lbzip2", "app-arch/lcab", "app-arch/lha", "app-arch/libarchive", "app-arch/libarchive", "app-arch/libpar2", "app-arch/lrzip", "app-arch/lxqt-archiver", "app-arch/lxqt-archiver", "app-arch/lz4", "app-arch/lz5", "app-arch/lzip", "app-arch/lziprecover", "app-arch/lzlib", "app-arch/lzlib", "app-arch/lzma", "app-arch/lzma", "app-arch/lzop", "app-arch/makeself", "app-arch/makeself", "app-arch/mscompress", "app-arch/mt-st", "app-arch/mt-st", "app-arch/mt-st", "app-arch/ncompress", "app-arch/p7zip", "app-arch/par2cmdline", "app-arch/par2cmdline", "app-arch/patool", "app-arch/pax", "app-arch/pbzip2", "app-arch/pbzip2", "app-arch/pdlzip", "app-arch/pdlzip", "app-arch/pdv", "app-arch/pet2tgz", "app-arch/pigz", "app-arch/pixz", "app-arch/pixz", "app-arch/plzip", "app-arch/plzip", "app-arch/pure-sfv", "app-arch/pxz", "app-arch/pxz", "app-arch/qpress", "app-arch/rar", "app-arch/rar", "app-arch/rpm", "app-arch/rpm2targz", "app-arch/rzip", "app-arch/sharutils", "app-arch/snappy", "app-arch/snappy", "app-arch/stenc", "app-arch/stenc", "app-arch/stormlib", "app-arch/stuffit", "app-arch/tapeutils", "app-arch/tar", "app-arch/tardelta", "app-arch/tarlz", "app-arch/tarsync", "app-arch/torrentzip", "app-arch/unace", "app-arch/unadf", "app-arch/unar", "app-arch/unmakeself", "app-arch/unp", "app-arch/unp", "app-arch/unp", "app-arch/unrar", "app-arch/unrar", "app-arch/unrar", "app-arch/unrpa", "app-arch/unshield", "app-arch/unzip", "app-arch/upx-bin", "app-arch/upx", "app-arch/vimball", "app-arch/vimball", "app-arch/wimlib", "app-arch/wimlib", "app-arch/xar", "app-arch/xar", "app-arch/xar", "app-arch/xarchiver", "app-arch/xdms", "app-arch/xz-utils", "app-arch/xz-utils", "app-arch/zip", "app-arch/zoo", "app-arch/zopfli", "app-arch/zpaq-extras", "app-arch/zpaq", "app-arch/zstd", "app-arch/zstd", "app-backup/amanda", "app-backup/attic", "app-backup/attic", "app-backup/backintime", "app-backup/backintime", "app-backup/backintime", "app-backup/backup-manager", "app-backup/backup-manager", "app-backup/backupninja", "app-backup/backupninja", "app-backup/backuppc", "app-backup/bacula", "app-backup/bacula", "app-backup/bacula", "app-backup/bacula", "app-backup/bacula", "app-backup/bacula", "app-backup/bareos", "app-backup/bareos", "app-backup/bareos", "app-backup/borgbackup", "app-backup/borgbackup", "app-backup/borgbackup", "app-backup/borgbackup", "app-backup/borgmatic", "app-backup/borgmatic", "app-backup/borgweb", "app-backup/borgweb", "app-backup/btrbk", "app-backup/btrbk", "app-backup/btrbk", "app-backup/btrbk", "app-backup/burp", "app-backup/burp", "app-backup/ccollect", "app-backup/cdbackup", "app-backup/cdbkup", "app-backup/consul-backinator", "app-backup/cpdup", "app-backup/dar", "app-backup/deja-dup", "app-backup/dirvish", "app-backup/duplicity", "app-backup/duplicity", "app-backup/duply", "app-backup/flexbackup", "app-backup/fsarchiver", "app-backup/hdup", "app-backup/kfoldersync", "app-backup/kup", "app-backup/luckybackup", "app-backup/mirdir", "app-backup/mkstage4", "app-backup/mkstage4", "app-backup/mylvmbackup", "app-backup/pdumpfs", "app-backup/rdedup", "app-backup/rdiff-backup", "app-backup/rdiff-backup", "app-backup/rdumpfs", "app-backup/rdup", "app-backup/rear", "app-backup/rear", "app-backup/reoback", "app-backup/restic", "app-backup/restic", "app-backup/rsnapshot", "app-backup/rsnapshot", "app-backup/sarab", "app-backup/simplebackup", "app-backup/snapper", "app-backup/snapper", "app-backup/snapper", "app-backup/spideroak-bin", "app-backup/synology-cloud-station-backup", "app-backup/tarsnap", "app-backup/tsm", "app-backup/untangle-https-backup", "app-backup/untangle-https-backup", "app-backup/vzdump", "app-benchmarks/acovea-gtk", "app-benchmarks/acovea", "app-benchmarks/bashmark", "app-benchmarks/bonnie++", "app-benchmarks/bonnie++", "app-benchmarks/bonnie++", "app-benchmarks/bonnie++", "app-benchmarks/bonnie", "app-benchmarks/bootchart2", "app-benchmarks/cpuburn", "app-benchmarks/dbench", "app-benchmarks/filebench", "app-benchmarks/forkbomb", "app-benchmarks/geekbench", "app-benchmarks/geekbench", "app-benchmarks/geekbench", "app-benchmarks/geekbench", "app-benchmarks/geekbench", "app-benchmarks/hey", "app-benchmarks/httperf", "app-benchmarks/httperf", "app-benchmarks/hyperfine", "app-benchmarks/i7z", "app-benchmarks/interbench", "app-benchmarks/ioping", "app-benchmarks/ioping", "app-benchmarks/iozone", "app-benchmarks/iozone", "app-benchmarks/iozone", "app-benchmarks/iozone", "app-benchmarks/libc-bench", "app-benchmarks/nbench", "app-benchmarks/pipebench", "app-benchmarks/ramspeed", "app-benchmarks/siege", "app-benchmarks/siege", "app-benchmarks/stress-ng", "app-benchmarks/stress", "app-benchmarks/sysbench", "app-benchmarks/tiobench", "app-benchmarks/wrk", "app-cdr/b5i2iso", "app-cdr/bashburn", "app-cdr/bchunk", "app-cdr/bin2iso", "app-cdr/brasero", "app-cdr/burncdda", "app-cdr/ccd2iso", "app-cdr/cdck", "app-cdr/cddetect", "app-cdr/cdemu-daemon", "app-cdr/cdemu-daemon", "app-cdr/cdemu", "app-cdr/cdemu", "app-cdr/cdlabelgen", "app-cdr/cdrdao", "app-cdr/cdrtools", "app-cdr/cdrtools", "app-cdr/cdw", "app-cdr/cdw", "app-cdr/cue2toc", "app-cdr/cuecue", "app-cdr/cuegen", "app-cdr/cuetools", "app-cdr/daa2iso", "app-cdr/disc-cover", "app-cdr/dolphin-plugins-mountiso", "app-cdr/dolphin-plugins-mountiso", "app-cdr/dumpet", "app-cdr/dvd+rw-tools", "app-cdr/dvd+rw-tools", "app-cdr/dvdisaster", "app-cdr/dvdshrink", "app-cdr/extract-xiso", "app-cdr/gaffitter", "app-cdr/gcdemu", "app-cdr/gcdemu", "app-cdr/geteltorito", "app-cdr/graveman", "app-cdr/iat", "app-cdr/isoimagewriter", "app-cdr/isomaster", "app-cdr/isomaster", "app-cdr/kcdemu", "app-cdr/mirage2iso", "app-cdr/mirage2iso", "app-cdr/mkcdtoc", "app-cdr/mp3burn", "app-cdr/multicd", "app-cdr/nrg2iso", "app-cdr/plextor-tool", "app-cdr/tkdvd", "app-cdr/uif2iso", "app-cdr/xbiso", "app-cdr/xcdroast", "app-cdr/xfburn", "app-crypt/WiRouterKeyRec", "app-crypt/acme-sh", "app-crypt/acme-sh", "app-crypt/acme-tiny", "app-crypt/acme-tiny", "app-crypt/acme", "app-crypt/acme", "app-crypt/acme", "app-crypt/acme", "app-crypt/acr38u", "app-crypt/aescrypt", "app-crypt/aespipe", "app-crypt/aespipe", "app-crypt/age", "app-crypt/age", "app-crypt/argon2", "app-crypt/asedriveiiie-serial", "app-crypt/asedriveiiie-usb", "app-crypt/asekey", "app-crypt/bcwipe", "app-crypt/bsign", "app-crypt/ccid", "app-crypt/ccid", "app-crypt/ccid", "app-crypt/ccrypt", "app-crypt/certbot-apache", "app-crypt/certbot-apache", "app-crypt/certbot-apache", "app-crypt/certbot-apache", "app-crypt/certbot-dns-nsone", "app-crypt/certbot-dns-nsone", "app-crypt/certbot-nginx", "app-crypt/certbot-nginx", "app-crypt/certbot-nginx", "app-crypt/certbot-nginx", "app-crypt/certbot", "app-crypt/certbot", "app-crypt/certbot", "app-crypt/certbot", "app-crypt/cfssl", "app-crypt/cfssl", "app-crypt/chntpw", "app-crypt/ckpass", "app-crypt/codecrypt", "app-crypt/codecrypt", "app-crypt/codegroup", "app-crypt/coolkey", "app-crypt/crackpkcs12", "app-crypt/debian-archive-keyring", "app-crypt/debian-archive-keyring", "app-crypt/debian-archive-keyring", "app-crypt/dehydrated", "app-crypt/dieharder", "app-crypt/easy-rsa", "app-crypt/easy-rsa", "app-crypt/easy-rsa", "app-crypt/easy-rsa", "app-crypt/easy-rsa", "app-crypt/efitools", "app-crypt/efitools", "app-crypt/eid-mw", "app-crypt/eid-mw", "app-crypt/ekeyd", "app-crypt/elettra", "app-crypt/envchain", "app-crypt/envchain", "app-crypt/fcrackzip", "app-crypt/gcr", "app-crypt/gentoo-keys", "app-crypt/gifshuffle", "app-crypt/glep63-check", "app-crypt/glep63-check", "app-crypt/gnupg-pkcs11-scd", "app-crypt/gnupg", "app-crypt/gnupg", "app-crypt/gnupg", "app-crypt/gnupg", "app-crypt/gorilla", "app-crypt/gpa", "app-crypt/gpg-ringmgr", "app-crypt/gpgme", "app-crypt/gpgme", "app-crypt/gpgstats", "app-crypt/hashalot", "app-crypt/hashcat-utils", "app-crypt/hashcat", "app-crypt/hashcat", "app-crypt/heimdal", "app-crypt/heimdal", "app-crypt/hmaccalc", "app-crypt/ima-evm-utils", "app-crypt/ima-evm-utils", "app-crypt/jacksum", "app-crypt/jetring", "app-crypt/jetring", "app-crypt/jitterentropy-rngd", "app-crypt/jitterentropy-rngd", "app-crypt/jitterentropy", "app-crypt/jitterentropy", "app-crypt/johntheripper-jumbo", "app-crypt/johntheripper-jumbo", "app-crypt/johntheripper", "app-crypt/kali-archive-keyring", "app-crypt/kbfs", "app-crypt/kbfs", "app-crypt/kbfs", "app-crypt/kbfs", "app-crypt/kbfs", "app-crypt/kencfs-plasma", "app-crypt/keybase", "app-crypt/keybase", "app-crypt/keybase", "app-crypt/keybase", "app-crypt/keybase", "app-crypt/keybase", "app-crypt/keylookup", "app-crypt/kstart", "app-crypt/kstart", "app-crypt/libb2", "app-crypt/libb2", "app-crypt/libmd", "app-crypt/libmd", "app-crypt/libnitrokey", "app-crypt/libnitrokey", "app-crypt/libscrypt", "app-crypt/libsecret", "app-crypt/libsecret", "app-crypt/libu2f-host", "app-crypt/libu2f-server", "app-crypt/libu2f-server", "app-crypt/loop-aes-losetup", "app-crypt/loop-aes-losetup", "app-crypt/mcrypt", "app-crypt/md4sum", "app-crypt/md5deep", "app-crypt/md6sum", "app-crypt/mhash", "app-crypt/minisign", "app-crypt/minisign", "app-crypt/mit-krb5-appl", "app-crypt/mit-krb5", "app-crypt/monkeysphere", "app-crypt/moolticute", "app-crypt/moolticute", "app-crypt/nasty", "app-crypt/nitrocli", "app-crypt/nitrocli", "app-crypt/nitrocli", "app-crypt/nitrocli", "app-crypt/nitrokey-app", "app-crypt/nitrokey-app", "app-crypt/nwipe", "app-crypt/nwipe", "app-crypt/onak", "app-crypt/openpgp-keys-adamspiers", "app-crypt/openpgp-keys-alexbarton", "app-crypt/openpgp-keys-bcl", "app-crypt/openpgp-keys-botan", "app-crypt/openpgp-keys-crypto++", "app-crypt/openpgp-keys-danielveillard", "app-crypt/openpgp-keys-django", "app-crypt/openpgp-keys-django", "app-crypt/openpgp-keys-gentoo-auth", "app-crypt/openpgp-keys-gentoo-release", "app-crypt/openpgp-keys-jedisct1", "app-crypt/openpgp-keys-kernel", "app-crypt/openpgp-keys-libidn", "app-crypt/openpgp-keys-libvirt", "app-crypt/openpgp-keys-linuxcontainers", "app-crypt/openpgp-keys-midipix", "app-crypt/openpgp-keys-miniupnp", "app-crypt/openpgp-keys-mlichvar", "app-crypt/openpgp-keys-mlichvar", "app-crypt/openpgp-keys-nmap", "app-crypt/openpgp-keys-oletange", "app-crypt/openpgp-keys-openzfs", "app-crypt/openpgp-keys-python", "app-crypt/openpgp-keys-rust", "app-crypt/openpgp-keys-tcpdump", "app-crypt/openpgp-keys-teemutoivola", "app-crypt/openpgp-keys-terminator", "app-crypt/openpgp-keys-tor", "app-crypt/openpgp-keys-voikko", "app-crypt/ophcrack-tables", "app-crypt/ophcrack", "app-crypt/osslsigncode", "app-crypt/p11-kit", "app-crypt/p11-kit", "app-crypt/paperkey", "app-crypt/paperkey", "app-crypt/pdfcrack", "app-crypt/pesign", "app-crypt/pgpdump", "app-crypt/pinentry", "app-crypt/pinentry", "app-crypt/pius", "app-crypt/pkcrack", "app-crypt/pkcs11-data", "app-crypt/pkcs11-dump", "app-crypt/princeprocessor", "app-crypt/qca", "app-crypt/quickcrypt", "app-crypt/rainbowcrack", "app-crypt/rhash", "app-crypt/rhash", "app-crypt/rhash", "app-crypt/rotix", "app-crypt/sbsigntools", "app-crypt/sbsigntools", "app-crypt/scdrand", "app-crypt/scrypt", "app-crypt/scute", "app-crypt/seahorse-sharing", "app-crypt/seahorse", "app-crypt/shash", "app-crypt/signify", "app-crypt/signing-party", "app-crypt/signing-party", "app-crypt/simple-tpm-pk11", "app-crypt/ssdeep", "app-crypt/ssss", "app-crypt/stan", "app-crypt/stoken", "app-crypt/swtpm", "app-crypt/tc-play", "app-crypt/tpm-emulator", "app-crypt/tpm-tools", "app-crypt/tpm-tools", "app-crypt/tpm2-abrmd", "app-crypt/tpm2-pkcs11", "app-crypt/tpm2-tools", "app-crypt/tpm2-tools", "app-crypt/tpm2-totp", "app-crypt/tpm2-tss-engine", "app-crypt/tpm2-tss", "app-crypt/tpm2-tss", "app-crypt/tpm2-tss", "app-crypt/trousers", "app-crypt/trousers", "app-crypt/ubuntu-keyring", "app-crypt/ubuntu-keyring", "app-crypt/ubuntu-keyring", "app-crypt/veracrypt", "app-crypt/xca", "app-crypt/xca", "app-crypt/xor-analyze", "app-crypt/yubikey-manager-qt", "app-crypt/yubikey-manager-qt", "app-crypt/yubikey-manager", "app-crypt/yubikey-manager", "app-crypt/yubikey-manager", "app-crypt/yubioath-desktop", "app-crypt/zulucrypt", "app-dicts/aspell-af", "app-dicts/aspell-am", "app-dicts/aspell-ar", "app-dicts/aspell-ast", "app-dicts/aspell-az", "app-dicts/aspell-be", "app-dicts/aspell-bg", "app-dicts/aspell-bn", "app-dicts/aspell-br", "app-dicts/aspell-ca", "app-dicts/aspell-cs", "app-dicts/aspell-csb", "app-dicts/aspell-cy", "app-dicts/aspell-da", "app-dicts/aspell-de-alt", "app-dicts/aspell-de", "app-dicts/aspell-el", "app-dicts/aspell-en", "app-dicts/aspell-eo", "app-dicts/aspell-es", "app-dicts/aspell-et", "app-dicts/aspell-fa", "app-dicts/aspell-fi", "app-dicts/aspell-fo", "app-dicts/aspell-fr", "app-dicts/aspell-fy", "app-dicts/aspell-ga", "app-dicts/aspell-gd", "app-dicts/aspell-gl", "app-dicts/aspell-grc", "app-dicts/aspell-gu", "app-dicts/aspell-gv", "app-dicts/aspell-he", "app-dicts/aspell-hi", "app-dicts/aspell-hil", "app-dicts/aspell-hr", "app-dicts/aspell-hsb", "app-dicts/aspell-hu", "app-dicts/aspell-hus", "app-dicts/aspell-hy", "app-dicts/aspell-ia", "app-dicts/aspell-id", "app-dicts/aspell-is", "app-dicts/aspell-it", "app-dicts/aspell-kn", "app-dicts/aspell-ku", "app-dicts/aspell-ky", "app-dicts/aspell-la", "app-dicts/aspell-lt", "app-dicts/aspell-lv", "app-dicts/aspell-mg", "app-dicts/aspell-mi", "app-dicts/aspell-mk", "app-dicts/aspell-ml", "app-dicts/aspell-mn", "app-dicts/aspell-mr", "app-dicts/aspell-ms", "app-dicts/aspell-mt", "app-dicts/aspell-nb", "app-dicts/aspell-nds", "app-dicts/aspell-nl", "app-dicts/aspell-nn", "app-dicts/aspell-no", "app-dicts/aspell-ny", "app-dicts/aspell-or", "app-dicts/aspell-pa", "app-dicts/aspell-pl", "app-dicts/aspell-pl", "app-dicts/aspell-pt-br", "app-dicts/aspell-pt", "app-dicts/aspell-qu", "app-dicts/aspell-ro", "app-dicts/aspell-ru", "app-dicts/aspell-rw", "app-dicts/aspell-sc", "app-dicts/aspell-sk", "app-dicts/aspell-sl", "app-dicts/aspell-sr", "app-dicts/aspell-sv", "app-dicts/aspell-sw", "app-dicts/aspell-ta", "app-dicts/aspell-te", "app-dicts/aspell-tet", "app-dicts/aspell-tk", "app-dicts/aspell-tl", "app-dicts/aspell-tn", "app-dicts/aspell-tr", "app-dicts/aspell-uk", "app-dicts/aspell-uz", "app-dicts/aspell-vi", "app-dicts/aspell-wa", "app-dicts/aspell-yi", "app-dicts/aspell-zu", "app-dicts/bookview", "app-dicts/dictd-vera", "app-dicts/dictd-wn", "app-dicts/dikt", "app-dicts/eblook", "app-dicts/edictionary", "app-dicts/freedict-deu-eng", "app-dicts/freedict-eng-fra", "app-dicts/freedict-eng-ita", "app-dicts/freedict-eng-swe", "app-dicts/freedict-fra-eng", "app-dicts/freedict-ita-eng", "app-dicts/gnome-dictionary", "app-dicts/gwaei", "app-dicts/ipadic", "app-dicts/kasumi", "app-dicts/libydpdict", "app-dicts/mecab-ipadic", "app-dicts/mecab-naist-jdic", "app-dicts/mecab-unidic", "app-dicts/migemo-dict", "app-dicts/myspell-af", "app-dicts/myspell-bg", "app-dicts/myspell-ca", "app-dicts/myspell-ca", "app-dicts/myspell-cs", "app-dicts/myspell-cs", "app-dicts/myspell-cy", "app-dicts/myspell-da", "app-dicts/myspell-da", "app-dicts/myspell-de", "app-dicts/myspell-de_1901", "app-dicts/myspell-el", "app-dicts/myspell-en", "app-dicts/myspell-en", "app-dicts/myspell-en", "app-dicts/myspell-eo", "app-dicts/myspell-eo", "app-dicts/myspell-es", "app-dicts/myspell-es", "app-dicts/myspell-es", "app-dicts/myspell-et", "app-dicts/myspell-fo", "app-dicts/myspell-fr", "app-dicts/myspell-fr", "app-dicts/myspell-fr", "app-dicts/myspell-ga", "app-dicts/myspell-ga", "app-dicts/myspell-gl", "app-dicts/myspell-gl", "app-dicts/myspell-he", "app-dicts/myspell-hr", "app-dicts/myspell-hu", "app-dicts/myspell-hu", "app-dicts/myspell-ia", "app-dicts/myspell-id", "app-dicts/myspell-is", "app-dicts/myspell-is", "app-dicts/myspell-it", "app-dicts/myspell-it", "app-dicts/myspell-kk", "app-dicts/myspell-km", "app-dicts/myspell-km", "app-dicts/myspell-ku", "app-dicts/myspell-lt", "app-dicts/myspell-lt", "app-dicts/myspell-lv", "app-dicts/myspell-mi", "app-dicts/myspell-mi", "app-dicts/myspell-mk", "app-dicts/myspell-ms", "app-dicts/myspell-nb", "app-dicts/myspell-nb", "app-dicts/myspell-nl", "app-dicts/myspell-nl", "app-dicts/myspell-nn", "app-dicts/myspell-pl", "app-dicts/myspell-pl", "app-dicts/myspell-pt-br", "app-dicts/myspell-pt-br", "app-dicts/myspell-pt", "app-dicts/myspell-ro", "app-dicts/myspell-ru", "app-dicts/myspell-ru", "app-dicts/myspell-ru", "app-dicts/myspell-sk", "app-dicts/myspell-sk", "app-dicts/myspell-sl", "app-dicts/myspell-sl", "app-dicts/myspell-sq", "app-dicts/myspell-sv", "app-dicts/myspell-sv", "app-dicts/myspell-sw", "app-dicts/myspell-sw", "app-dicts/myspell-tn", "app-dicts/myspell-tn", "app-dicts/myspell-tr", "app-dicts/myspell-uk", "app-dicts/myspell-uk", "app-dicts/myspell-zu", "app-dicts/prime-dict", "app-dicts/stardict-cdict-en-zh-big5", "app-dicts/stardict-cdict-en-zh-gb", "app-dicts/stardict-cedict-zh-en-big5", "app-dicts/stardict-cedict-zh-en-gb", "app-dicts/stardict-dictd-devils", "app-dicts/stardict-freedict-eng-deu", "app-dicts/stardict-freedict-eng-fra", "app-dicts/stardict-freedict-eng-ita", "app-dicts/stardict-freedict-eng-lat", "app-dicts/stardict-freedict-eng-rus", "app-dicts/stardict-freedict-eng-spa", "app-dicts/stardict-freedict-eng-swe", "app-dicts/stardict-freedict-eng-tur", "app-dicts/stardict-freedict-tur-deu", "app-dicts/stardict-freedict-tur-eng", "app-dicts/stardict-jmdict-en-ja", "app-dicts/stardict-jmdict-ja-en", "app-dicts/stardict-langdao-en-zh-gb", "app-dicts/stardict-langdao-zh-en-gb", "app-dicts/stardict-mova-smiley", "app-dicts/stardict-oxford-en-zh-gb", "app-dicts/stardict-quick-eng-jpn", "app-dicts/stardict-quick-jpn-eng", "app-dicts/stardict-quick-ru-en", "app-dicts/stardict-xdict-en-zh-big5", "app-dicts/stardict-xdict-en-zh-gb", "app-dicts/stardict-xdict-zh-en-big5", "app-dicts/stardict-xdict-zh-en-gb", "app-dicts/sword-2BabDict", "app-dicts/sword-AB", "app-dicts/sword-ABP", "app-dicts/sword-ABPGRK", "app-dicts/sword-ABS_Essay_GoodSam_SWB", "app-dicts/sword-ACV", "app-dicts/sword-AKJV", "app-dicts/sword-ASV", "app-dicts/sword-Abbott", "app-dicts/sword-AbbottSmith", "app-dicts/sword-AbbottSmithStrongs", "app-dicts/sword-Afr1953", "app-dicts/sword-Alb", "app-dicts/sword-Aleppo", "app-dicts/sword-AmTract", "app-dicts/sword-Anderson", "app-dicts/sword-Antoniades", "app-dicts/sword-AraNAV", "app-dicts/sword-AraSVD", "app-dicts/sword-ArmEastern", "app-dicts/sword-ArmWestern", "app-dicts/sword-Azeri", "app-dicts/sword-BBE", "app-dicts/sword-BDBGlosses_Strongs", "app-dicts/sword-BWE", "app-dicts/sword-BaptistConfession1689", "app-dicts/sword-Barnes", "app-dicts/sword-BasHautin", "app-dicts/sword-BeaMRK", "app-dicts/sword-Bela", "app-dicts/sword-BlaMat", "app-dicts/sword-BretonNT", "app-dicts/sword-BulVeren", "app-dicts/sword-BurCBCM", "app-dicts/sword-BurJudson", "app-dicts/sword-Burkitt", "app-dicts/sword-Byz", "app-dicts/sword-CBC", "app-dicts/sword-CPDV", "app-dicts/sword-CSlElizabeth", "app-dicts/sword-Calo", "app-dicts/sword-Catena", "app-dicts/sword-Cawdrey", "app-dicts/sword-Chamorro", "app-dicts/sword-Che1860", "app-dicts/sword-ChiNCVs", "app-dicts/sword-ChiNCVt", "app-dicts/sword-ChiSB", "app-dicts/sword-ChiUn", "app-dicts/sword-ChiUnL", "app-dicts/sword-ChiUns", "app-dicts/sword-Clarke", "app-dicts/sword-Common", "app-dicts/sword-Concord", "app-dicts/sword-CopNT", "app-dicts/sword-CopSahBible2", "app-dicts/sword-CopSahHorner", "app-dicts/sword-CopSahidicMSS", "app-dicts/sword-CopSahidica", "app-dicts/sword-CroSaric", "app-dicts/sword-CzeB21", "app-dicts/sword-CzeBKR", "app-dicts/sword-CzeCEP", "app-dicts/sword-CzeCSP", "app-dicts/sword-DBD", "app-dicts/sword-DRC", "app-dicts/sword-DTN", "app-dicts/sword-DaNT1819", "app-dicts/sword-DaOT1871NT1907", "app-dicts/sword-DaOT1931NT1907", "app-dicts/sword-Daily", "app-dicts/sword-Darby", "app-dicts/sword-Dari", "app-dicts/sword-DarkNightOfTheSoul", "app-dicts/sword-Diaglott", "app-dicts/sword-Dodson", "app-dicts/sword-DutKant", "app-dicts/sword-DutKingComm", "app-dicts/sword-DutSVV", "app-dicts/sword-DutSVVA", "app-dicts/sword-EMBReality", "app-dicts/sword-EMTV", "app-dicts/sword-Easton", "app-dicts/sword-Elzevir", "app-dicts/sword-Esperanto", "app-dicts/sword-Est", "app-dicts/sword-Etheridge", "app-dicts/sword-Eusebian_num", "app-dicts/sword-Eusebian_vs", "app-dicts/sword-FVDPVietAnh", "app-dicts/sword-Family", "app-dicts/sword-FarHezareNoh", "app-dicts/sword-FarOPV", "app-dicts/sword-FarTPV", "app-dicts/sword-FinBiblia", "app-dicts/sword-FinPR", "app-dicts/sword-FinPR92", "app-dicts/sword-FinRK", "app-dicts/sword-FinSTLK2017", "app-dicts/sword-Finney", "app-dicts/sword-FreBBB", "app-dicts/sword-FreBDM1707", "app-dicts/sword-FreBDM1744", "app-dicts/sword-FreBailly", "app-dicts/sword-FreCJE", "app-dicts/sword-FreCrampon", "app-dicts/sword-FreDAW", "app-dicts/sword-FreGBM", "app-dicts/sword-FreGeneve1669", "app-dicts/sword-FreJND", "app-dicts/sword-FreKhan", "app-dicts/sword-FreLSN1872", "app-dicts/sword-FreLXX", "app-dicts/sword-FreOltramare1874", "app-dicts/sword-FrePGR", "app-dicts/sword-FrePilgrim", "app-dicts/sword-FreSegond1910", "app-dicts/sword-FreStapfer1889", "app-dicts/sword-FreSynodale1921", "app-dicts/sword-Geez", "app-dicts/sword-Geneva", "app-dicts/sword-Geneva1599", "app-dicts/sword-GerAlbrecht", "app-dicts/sword-GerAugustinus", "app-dicts/sword-GerBoLut", "app-dicts/sword-GerElb1871", "app-dicts/sword-GerElb1905", "app-dicts/sword-GerGruenewald", "app-dicts/sword-GerHfa2002", "app-dicts/sword-GerHfaLex2002", "app-dicts/sword-GerKingComm", "app-dicts/sword-GerLeoNA28", "app-dicts/sword-GerLeoRP18", "app-dicts/sword-GerLut1545", "app-dicts/sword-GerLutherpredigten", "app-dicts/sword-GerMenge", "app-dicts/sword-GerNeUe", "app-dicts/sword-GerOffBiSt", "app-dicts/sword-GerReinhardt", "app-dicts/sword-GerSch", "app-dicts/sword-GerTafel", "app-dicts/sword-GerTextbibel", "app-dicts/sword-GerZurcher", "app-dicts/sword-Godbey", "app-dicts/sword-GodsWord", "app-dicts/sword-GreVamvas", "app-dicts/sword-GreekHebrew", "app-dicts/sword-Haitian", "app-dicts/sword-HebDelitzsch", "app-dicts/sword-HebModern", "app-dicts/sword-HebrewGreek", "app-dicts/sword-Heretics", "app-dicts/sword-HinERV", "app-dicts/sword-Hitchcock", "app-dicts/sword-HunIMIT", "app-dicts/sword-HunKNB", "app-dicts/sword-HunKar", "app-dicts/sword-HunUj", "app-dicts/sword-ISBE", "app-dicts/sword-ISV", "app-dicts/sword-Imitation", "app-dicts/sword-Institutes", "app-dicts/sword-IriODomhnuill", "app-dicts/sword-ItDizGreco", "app-dicts/sword-ItNomiBibbia", "app-dicts/sword-ItaDio", "app-dicts/sword-ItaRive", "app-dicts/sword-JCRHoliness", "app-dicts/sword-JEAffections", "app-dicts/sword-JESermons", "app-dicts/sword-JFB", "app-dicts/sword-JOChrist", "app-dicts/sword-JOCommGod", "app-dicts/sword-JOGlory", "app-dicts/sword-JOMortSin", "app-dicts/sword-JPS", "app-dicts/sword-JST", "app-dicts/sword-JapBungo", "app-dicts/sword-JapDenmo", "app-dicts/sword-JapKougo", "app-dicts/sword-JapMeiji", "app-dicts/sword-JapRaguet", "app-dicts/sword-Josephus", "app-dicts/sword-Jubilee2000", "app-dicts/sword-KD", "app-dicts/sword-KJV", "app-dicts/sword-KJVA", "app-dicts/sword-KJVPCE", "app-dicts/sword-KLV", "app-dicts/sword-KLVen_iklingon", "app-dicts/sword-KLViklingon_en", "app-dicts/sword-Kapingamarangi", "app-dicts/sword-Kaz", "app-dicts/sword-Kekchi", "app-dicts/sword-KhmerNT", "app-dicts/sword-KingComm", "app-dicts/sword-KorHKJV", "app-dicts/sword-KorRV", "app-dicts/sword-KtuVb", "app-dicts/sword-LEB", "app-dicts/sword-LITV", "app-dicts/sword-LO", "app-dicts/sword-LXX", "app-dicts/sword-Latvian", "app-dicts/sword-LawGospel", "app-dicts/sword-Leeser", "app-dicts/sword-Lightfoot", "app-dicts/sword-LinVB", "app-dicts/sword-LtKBB", "app-dicts/sword-Luther", "app-dicts/sword-LvGluck8", "app-dicts/sword-MAK", "app-dicts/sword-MHC", "app-dicts/sword-MHCC", "app-dicts/sword-MKJV", "app-dicts/sword-MLStrong", "app-dicts/sword-Mal1910", "app-dicts/sword-ManxGaelic", "app-dicts/sword-Maori", "app-dicts/sword-MapM", "app-dicts/sword-Mg1865", "app-dicts/sword-MollColossians", "app-dicts/sword-MonKJV", "app-dicts/sword-Montgomery", "app-dicts/sword-MorphGNT", "app-dicts/sword-Murdock", "app-dicts/sword-NETfree", "app-dicts/sword-NETnotesfree", "app-dicts/sword-NETtext", "app-dicts/sword-NHEB", "app-dicts/sword-NHEBJE", "app-dicts/sword-NHEBME", "app-dicts/sword-Nave", "app-dicts/sword-Ndebele", "app-dicts/sword-Nestle1904", "app-dicts/sword-NlCanisius1939", "app-dicts/sword-NorBroed", "app-dicts/sword-NorSMB", "app-dicts/sword-Norsk", "app-dicts/sword-NorthernAzeri", "app-dicts/sword-Noyes", "app-dicts/sword-OEB", "app-dicts/sword-OEBcth", "app-dicts/sword-OSHB", "app-dicts/sword-OSHM", "app-dicts/sword-OrthJBC", "app-dicts/sword-Orthodoxy", "app-dicts/sword-OxfordTR", "app-dicts/sword-PNT", "app-dicts/sword-Packard", "app-dicts/sword-Passion", "app-dicts/sword-Personal", "app-dicts/sword-Peshitta", "app-dicts/sword-Phaistos", "app-dicts/sword-Pilgrim", "app-dicts/sword-PohnOld", "app-dicts/sword-Pohnpeian", "app-dicts/sword-PolGdanska", "app-dicts/sword-PolUGdanska", "app-dicts/sword-PorAR", "app-dicts/sword-PorAlmeida1911", "app-dicts/sword-PorBLivre", "app-dicts/sword-PorBLivreTR", "app-dicts/sword-PorCap", "app-dicts/sword-PorIBP", "app-dicts/sword-PotLykins", "app-dicts/sword-Practice", "app-dicts/sword-QuotingPassages", "app-dicts/sword-RKJNT", "app-dicts/sword-RNKJV", "app-dicts/sword-RWP", "app-dicts/sword-RWebster", "app-dicts/sword-RecVer", "app-dicts/sword-Rieger", "app-dicts/sword-Robinson", "app-dicts/sword-RomCor", "app-dicts/sword-Rotherham", "app-dicts/sword-RusCARS", "app-dicts/sword-RusCARSA", "app-dicts/sword-RusCARSADICT", "app-dicts/sword-RusCARSDict", "app-dicts/sword-RusCARST", "app-dicts/sword-RusCARSTDICT", "app-dicts/sword-RusMakarij", "app-dicts/sword-RusSynodal", "app-dicts/sword-RusSynodalLIO", "app-dicts/sword-RusVZh", "app-dicts/sword-SAOA", "app-dicts/sword-SBLGNT", "app-dicts/sword-SBLGNTApp", "app-dicts/sword-SME", "app-dicts/sword-SP", "app-dicts/sword-SPDSS", "app-dicts/sword-SPE", "app-dicts/sword-SPMT", "app-dicts/sword-SPVar", "app-dicts/sword-SahidicBible", "app-dicts/sword-Scofield", "app-dicts/sword-ScotsGaelic", "app-dicts/sword-Sentiment", "app-dicts/sword-Shona", "app-dicts/sword-SloKJV", "app-dicts/sword-SloOjacano", "app-dicts/sword-SloStritar", "app-dicts/sword-Smith", "app-dicts/sword-SomKQA", "app-dicts/sword-Sorani", "app-dicts/sword-SpaPlatense", "app-dicts/sword-SpaRV", "app-dicts/sword-SpaRV1865", "app-dicts/sword-SpaRV1909", "app-dicts/sword-SpaRVG", "app-dicts/sword-SpaTDP", "app-dicts/sword-SpaVNT", "app-dicts/sword-Spurious", "app-dicts/sword-SrKDEkavski", "app-dicts/sword-SrKDIjekav", "app-dicts/sword-StrongsGreek", "app-dicts/sword-StrongsHebrew", "app-dicts/sword-Swahili", "app-dicts/sword-Swe1917", "app-dicts/sword-Swe1917Of", "app-dicts/sword-SweFolk1998", "app-dicts/sword-SweKarlXII", "app-dicts/sword-SweKarlXII1873", "app-dicts/sword-TCR", "app-dicts/sword-TDavid", "app-dicts/sword-TFG", "app-dicts/sword-TNT", "app-dicts/sword-TR", "app-dicts/sword-TSK", "app-dicts/sword-TagAngBiblia", "app-dicts/sword-Tagalog", "app-dicts/sword-Tausug", "app-dicts/sword-ThaiKJV", "app-dicts/sword-Tisch", "app-dicts/sword-Torrey", "app-dicts/sword-TurHADI", "app-dicts/sword-TurNTB", "app-dicts/sword-Twenty", "app-dicts/sword-Tyndale", "app-dicts/sword-UKJV", "app-dicts/sword-UkrKulish", "app-dicts/sword-Ukrainian", "app-dicts/sword-Uma", "app-dicts/sword-UrduGeo", "app-dicts/sword-UrduGeoDeva", "app-dicts/sword-UrduGeoRoman", "app-dicts/sword-UyCyr", "app-dicts/sword-VarApp", "app-dicts/sword-VieRobinson", "app-dicts/sword-VieStrongsGreek", "app-dicts/sword-Viet", "app-dicts/sword-VietLCCMN", "app-dicts/sword-VietLCCMNCT", "app-dicts/sword-VietNVB", "app-dicts/sword-VulgClementine", "app-dicts/sword-VulgConte", "app-dicts/sword-VulgGlossa", "app-dicts/sword-VulgHetzenauer", "app-dicts/sword-VulgSistine", "app-dicts/sword-Vulgate", "app-dicts/sword-Vulgate_HebPs", "app-dicts/sword-WHNU", "app-dicts/sword-WLC", "app-dicts/sword-Webster", "app-dicts/sword-Webster1806", "app-dicts/sword-Webster1913", "app-dicts/sword-WelBeiblNet", "app-dicts/sword-Wesley", "app-dicts/sword-Westminster", "app-dicts/sword-Westminster21", "app-dicts/sword-Weymouth", "app-dicts/sword-Worsley", "app-dicts/sword-Wulfila", "app-dicts/sword-Wycliffe", "app-dicts/sword-YLT", "app-dicts/sword-ZhEnglish", "app-dicts/sword-ZhHanzi", "app-dicts/sword-ZhPinyin", "app-dicts/sword-alzat", "app-dicts/sword-br_en", "app-dicts/sword-en_eu", "app-dicts/sword-f35", "app-dicts/sword-la_en", "app-dicts/sword-sml_BL_2008", "app-dicts/sword-vlsJoNT", "app-dicts/verbiste", "app-dicts/verbiste", "app-dicts/wnn-ldic", "app-dicts/wordnet", "app-dicts/wordnet", "app-dicts/wordnet", "app-dicts/ydpdict", "app-doc/NaturalDocs", "app-doc/abs-guide", "app-doc/autobook", "app-doc/blas-docs", "app-doc/cantera-docs", "app-doc/casting-spels-emacs", "app-doc/cppman", "app-doc/csound-manual", "app-doc/csound-manual", "app-doc/devmanual", "app-doc/devmanual", "app-doc/devmanual", "app-doc/diveintopython", "app-doc/doxygen", "app-doc/doxygen", "app-doc/doxygen", "app-doc/doxygen", "app-doc/e16-docs", "app-doc/eclass-manpages", "app-doc/eclass-manpages", "app-doc/eclass-manpages", "app-doc/elisp-manual", "app-doc/elisp-manual", "app-doc/elisp-manual", "app-doc/elisp-manual", "app-doc/elisp-manual", "app-doc/elisp-manual", "app-doc/elisp-manual", "app-doc/elisp-manual", "app-doc/elisp-manual", "app-doc/geant-docs", "app-doc/gimp-help", "app-doc/gnucash-docs", "app-doc/gnucash-docs", "app-doc/halibut", "app-doc/jargon", "app-doc/kicad-doc", "app-doc/lapack-docs", "app-doc/linkers-and-loaders", "app-doc/linux-device-drivers", "app-doc/linux-device-drivers", "app-doc/linux-kernel-in-a-nutshell", "app-doc/linuxfromscratch", "app-doc/mathjax-docs", "app-doc/motif-reference-manual", "app-doc/php-docs", "app-doc/phrack-all", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/phrack", "app-doc/pms-bin", "app-doc/pms-bin", "app-doc/pms-bin", "app-doc/pms-bin", "app-doc/pms", "app-doc/pms", "app-doc/pms", "app-doc/pms", "app-doc/psmark", "app-doc/selfhtml", "app-doc/selflinux", "app-doc/single-unix-specification", "app-doc/tldp-howto", "app-doc/vilearn", "app-doc/xmltoman", "app-doc/zeal", "app-doc/zsh-lovers", "app-doc/zsh-lovers", "app-editors/aee", "app-editors/bluefish", "app-editors/bvi", "app-editors/curses-hexedit", "app-editors/dav", "app-editors/dhex", "app-editors/diakonos", "app-editors/diakonos", "app-editors/e3", "app-editors/ee", "app-editors/elvis", "app-editors/emacs", "app-editors/emacs", "app-editors/emacs", "app-editors/emacs", "app-editors/emacs", "app-editors/emacs", "app-editors/emacs", "app-editors/emacs", "app-editors/emact", "app-editors/ersatz-emacs", "app-editors/fe", "app-editors/featherpad", "app-editors/focuswriter", "app-editors/focuswriter", "app-editors/fte", "app-editors/gedit-plugins", "app-editors/gedit", "app-editors/ghex", "app-editors/ghostwriter", "app-editors/ghostwriter", "app-editors/gnome-latex", "app-editors/gummi", "app-editors/gvim", "app-editors/gvim", "app-editors/hexcurse", "app-editors/hexedit", "app-editors/hteditor", "app-editors/jasspa-microemacs", "app-editors/jed", "app-editors/jedit", "app-editors/jedit", "app-editors/joe", "app-editors/joe", "app-editors/joe", "app-editors/joe", "app-editors/jove", "app-editors/juffed", "app-editors/jupp", "app-editors/jupp", "app-editors/kakoune", "app-editors/kile", "app-editors/le", "app-editors/leafpad", "app-editors/levee", "app-editors/lpe", "app-editors/lpe", "app-editors/mg", "app-editors/mg", "app-editors/micro", "app-editors/moe", "app-editors/moe", "app-editors/moe", "app-editors/mousepad", "app-editors/mousepad", "app-editors/nano", "app-editors/nano", "app-editors/nano", "app-editors/nano", "app-editors/ne", "app-editors/ne", "app-editors/nedit", "app-editors/neovim", "app-editors/neovim", "app-editors/neovim", "app-editors/ng", "app-editors/notepadqq", "app-editors/notepadqq", "app-editors/okteta", "app-editors/padre", "app-editors/pluma", "app-editors/pluma", "app-editors/pyvim", "app-editors/qemacs", "app-editors/qhexedit2", "app-editors/qxmledit", "app-editors/retext", "app-editors/retext", "app-editors/retext", "app-editors/sandy", "app-editors/scite", "app-editors/shed", "app-editors/sublime-text", "app-editors/sublime-text", "app-editors/sublime-text", "app-editors/tea", "app-editors/teco", "app-editors/ted", "app-editors/texworks", "app-editors/texworks", "app-editors/uemacs-pk", "app-editors/uemacs-pk", "app-editors/vile", "app-editors/vile", "app-editors/vim-core", "app-editors/vim-core", "app-editors/vim", "app-editors/vim", "app-editors/vis", "app-editors/vis", "app-editors/vis", "app-editors/vscode", "app-editors/vscode", "app-editors/vscodium", "app-editors/vscodium", "app-editors/wily", "app-editors/wxhexeditor", "app-editors/xemacs", "app-editors/xemacs", "app-editors/xmlcopyeditor", "app-editors/xmlcopyeditor", "app-editors/xvile", "app-editors/yudit", "app-editors/zile", "app-editors/zile", "app-emacs/actionscript-mode", "app-emacs/adaptive-wrap", "app-emacs/analog", "app-emacs/apache-mode", "app-emacs/apel", "app-emacs/apel", "app-emacs/async", "app-emacs/atomic-chrome", "app-emacs/auctex", "app-emacs/auctex", "app-emacs/auctex", "app-emacs/auto-complete", "app-emacs/autoconf-mode", "app-emacs/basic-toolkit", "app-emacs/bbdb", "app-emacs/bbdb", "app-emacs/binclock", "app-emacs/bison-mode", "app-emacs/blogmax", "app-emacs/bm", "app-emacs/bongo", "app-emacs/boxquote", "app-emacs/browse-kill-ring", "app-emacs/bubblet", "app-emacs/buffer-extension", "app-emacs/calfw", "app-emacs/chess", "app-emacs/chess", "app-emacs/circe", "app-emacs/cldoc", "app-emacs/color-browser", "app-emacs/color-moccur", "app-emacs/color-theme", "app-emacs/company-mode", "app-emacs/company-mode", "app-emacs/crontab-mode", "app-emacs/crypt++", "app-emacs/crypt++", "app-emacs/csharp-mode", "app-emacs/css-mode", "app-emacs/css-sort-buffer", "app-emacs/csv-mode", "app-emacs/csv-mode", "app-emacs/cycle-buffer", "app-emacs/d-mode", "app-emacs/dash", "app-emacs/dash", "app-emacs/dash", "app-emacs/dash", "app-emacs/ddskk", "app-emacs/ddskk", "app-emacs/ddskk", "app-emacs/desktop+", "app-emacs/develock", "app-emacs/df-mode", "app-emacs/dictionary", "app-emacs/dircolors", "app-emacs/dired-sort-menu", "app-emacs/distel", "app-emacs/doctest-mode", "app-emacs/doxymacs", "app-emacs/dropdown-list", "app-emacs/dts-mode", "app-emacs/dts-mode", "app-emacs/ebuild-mode", "app-emacs/ebuild-mode", "app-emacs/ebuild-mode", "app-emacs/ebuild-run-mode", "app-emacs/ecb", "app-emacs/edb", "app-emacs/edit-list", "app-emacs/edit-server", "app-emacs/editorconfig-emacs", "app-emacs/elscreen", "app-emacs/emacs-common", "app-emacs/emacs-daemon", "app-emacs/emacs-jabber", "app-emacs/emacs-w3m", "app-emacs/emacs-wget", "app-emacs/emhacks", "app-emacs/emms", "app-emacs/emms", "app-emacs/emms", "app-emacs/erobot", "app-emacs/eselect-mode", "app-emacs/eselect-mode", "app-emacs/eselect-mode", "app-emacs/ess", "app-emacs/ess", "app-emacs/evil", "app-emacs/evil", "app-emacs/expand-region", "app-emacs/f", "app-emacs/f", "app-emacs/fff", "app-emacs/filladapt", "app-emacs/flashcard", "app-emacs/flim", "app-emacs/flim", "app-emacs/folding", "app-emacs/ghub", "app-emacs/ghub", "app-emacs/ghub", "app-emacs/ghub", "app-emacs/gnuplot-mode", "app-emacs/gnuserv", "app-emacs/go-mode", "app-emacs/google-c-style", "app-emacs/graphql", "app-emacs/graphviz-dot-mode", "app-emacs/graphviz-dot-mode", "app-emacs/h4x0r", "app-emacs/haskell-mode", "app-emacs/helm-system-packages", "app-emacs/helm", "app-emacs/helm", "app-emacs/hexrgb", "app-emacs/highline", "app-emacs/howm", "app-emacs/htmlize", "app-emacs/htmlize", "app-emacs/httpd", "app-emacs/icicles", "app-emacs/igrep", "app-emacs/inform-mode", "app-emacs/initsplit", "app-emacs/jam-mode", "app-emacs/jasmin", "app-emacs/jde", "app-emacs/keywiz", "app-emacs/ledger-mode", "app-emacs/libegit2", "app-emacs/lookup", "app-emacs/lua-mode", "app-emacs/lua-mode", "app-emacs/lyskom-elisp-client", "app-emacs/lyskom-elisp-client", "app-emacs/magit-popup", "app-emacs/magit-popup", "app-emacs/magit-popup", "app-emacs/magit", "app-emacs/magit", "app-emacs/magit", "app-emacs/magit", "app-emacs/magit", "app-emacs/mailcrypt", "app-emacs/markdown-mode", "app-emacs/matlab", "app-emacs/mediawiki", "app-emacs/meson-mode", "app-emacs/mew", "app-emacs/mic-paren", "app-emacs/mic-paren", "app-emacs/mldonkey", "app-emacs/mmm-mode", "app-emacs/moccur-edit", "app-emacs/mpg123-el", "app-emacs/mpg123-el", "app-emacs/mu-cite", "app-emacs/multi-term", "app-emacs/multiple-cursors", "app-emacs/muse", "app-emacs/nagios-mode", "app-emacs/navi2ch", "app-emacs/nxml-docbook5-schemas", "app-emacs/nxml-docbook5-schemas", "app-emacs/nxml-gentoo-schemas", "app-emacs/nxml-gentoo-schemas", "app-emacs/nxml-libvirt-schemas", "app-emacs/nxml-svg-schemas", "app-emacs/ocaml-mode", "app-emacs/org-mode", "app-emacs/org-mode", "app-emacs/outline-magic", "app-emacs/paredit", "app-emacs/pariemacs", "app-emacs/php-mode", "app-emacs/php-mode", "app-emacs/planner", "app-emacs/po-mode", "app-emacs/popup", "app-emacs/popwin", "app-emacs/pov-mode", "app-emacs/proofgeneral", "app-emacs/protbuf", "app-emacs/psgml", "app-emacs/puppet-mode", "app-emacs/puppet-mode", "app-emacs/pymacs", "app-emacs/python-mode", "app-emacs/quack", "app-emacs/quilt-el", "app-emacs/qwerty", "app-emacs/redo+", "app-emacs/regress", "app-emacs/remember", "app-emacs/revive", "app-emacs/rfcview", "app-emacs/riece", "app-emacs/rnc-mode", "app-emacs/rpm-spec-mode", "app-emacs/ruby-mode", "app-emacs/ruby-mode", "app-emacs/ruby-mode", "app-emacs/ruby-mode", "app-emacs/rudel", "app-emacs/rust-mode", "app-emacs/rust-mode", "app-emacs/s", "app-emacs/scala-mode", "app-emacs/scheme-complete", "app-emacs/scim-bridge-el", "app-emacs/scss-mode", "app-emacs/scss-mode", "app-emacs/semi", "app-emacs/semi", "app-emacs/session", "app-emacs/setnu", "app-emacs/slime", "app-emacs/sml-mode", "app-emacs/sokoban", "app-emacs/ssh", "app-emacs/stripes", "app-emacs/sumibi", "app-emacs/teco", "app-emacs/template", "app-emacs/tempo-snippets", "app-emacs/thinks", "app-emacs/transient", "app-emacs/transient", "app-emacs/transient", "app-emacs/treepy", "app-emacs/treepy", "app-emacs/treepy", "app-emacs/tuareg-mode", "app-emacs/twittering-mode", "app-emacs/twittering-mode", "app-emacs/twittering-mode", "app-emacs/typing", "app-emacs/uboat", "app-emacs/undo-tree", "app-emacs/uptimes", "app-emacs/vhdl-mode", "app-emacs/visual-basic-mode", "app-emacs/vm", "app-emacs/volume", "app-emacs/vterm", "app-emacs/vterm", "app-emacs/w3mnav", "app-emacs/wanderlust", "app-emacs/wanderlust", "app-emacs/websocket", "app-emacs/websocket", "app-emacs/wgrep", "app-emacs/wgrep", "app-emacs/whine", "app-emacs/wikipedia-mode", "app-emacs/windows", "app-emacs/with-editor", "app-emacs/with-editor", "app-emacs/with-editor", "app-emacs/with-editor", "app-emacs/with-editor", "app-emacs/xclip", "app-emacs/xrdb-mode", "app-emacs/xslide", "app-emacs/yaml-mode", "app-emacs/yaml-mode", "app-emacs/yaml-mode", "app-emacs/yasnippet-snippets", "app-emacs/yasnippet", "app-emacs/yatex", "app-emacs/zenburn", "app-emacs/zenirc", "app-emulation/aqemu", "app-emulation/aranym", "app-emulation/bochs", "app-emulation/bochs", "app-emulation/buildah", "app-emulation/cadvisor", "app-emulation/cloud-init", "app-emulation/cloud-init", "app-emulation/cloud-init", "app-emulation/coldfire", "app-emulation/conmon", "app-emulation/conmon", "app-emulation/conmon", "app-emulation/containerd", "app-emulation/containerd", "app-emulation/containers-storage", "app-emulation/cri-o", "app-emulation/cri-tools", "app-emulation/cri-tools", "app-emulation/crossover-bin", "app-emulation/crossover-bin", "app-emulation/crun", "app-emulation/dinero", "app-emulation/diskimage-builder", "app-emulation/diskimage-builder", "app-emulation/diskimage-builder", "app-emulation/distrobuilder", "app-emulation/distrobuilder", "app-emulation/dlx", "app-emulation/dlx", "app-emulation/docker-bench-security", "app-emulation/docker-bench-security", "app-emulation/docker-cli", "app-emulation/docker-cli", "app-emulation/docker-compose", "app-emulation/docker-compose", "app-emulation/docker-compose", "app-emulation/docker-compose", "app-emulation/docker-compose", "app-emulation/docker-compose", "app-emulation/docker-compose", "app-emulation/docker-credential-helpers", "app-emulation/docker-gc", "app-emulation/docker-machine-kvm", "app-emulation/docker-machine", "app-emulation/docker-proxy", "app-emulation/docker-registry", "app-emulation/docker-swarm", "app-emulation/docker", "app-emulation/docker", "app-emulation/dosemu", "app-emulation/dynamips", "app-emulation/edumips64", "app-emulation/faudio", "app-emulation/faudio", "app-emulation/firecracker-bin", "app-emulation/firecracker-bin", "app-emulation/firecracker", "app-emulation/flannel", "app-emulation/free42", "app-emulation/free42", "app-emulation/free42", "app-emulation/free42", "app-emulation/fs-uae-launcher", "app-emulation/fs-uae", "app-emulation/fuse-utils", "app-emulation/fuse", "app-emulation/gallium-nine-standalone", "app-emulation/gallium-nine-standalone", "app-emulation/gallium-nine-standalone", "app-emulation/ganeti-os-noop", "app-emulation/genymotion-bin", "app-emulation/glean", "app-emulation/go-secbench", "app-emulation/go-secbench", "app-emulation/grub-xen-host", "app-emulation/gxemul", "app-emulation/hercules", "app-emulation/hercules", "app-emulation/hercules", "app-emulation/hyperd", "app-emulation/img", "app-emulation/img", "app-emulation/k3d", "app-emulation/kompose", "app-emulation/libcacard", "app-emulation/libdsk", "app-emulation/libguestfs-appliance", "app-emulation/libguestfs-appliance", "app-emulation/libguestfs", "app-emulation/libguestfs", "app-emulation/libspectrum", "app-emulation/libvirt-glib", "app-emulation/libvirt-glib", "app-emulation/libvirt-snmp", "app-emulation/libvirt", "app-emulation/libvirt", "app-emulation/libvirt", "app-emulation/libvirt", "app-emulation/libvirt", "app-emulation/libvirt", "app-emulation/libvirt", "app-emulation/lxc-templates", "app-emulation/lxc", "app-emulation/lxc", "app-emulation/lxd", "app-emulation/nemu", "app-emulation/nerdctl", "app-emulation/nerdctl", "app-emulation/open-vm-tools", "app-emulation/open-vm-tools", "app-emulation/pcem", "app-emulation/phpvirtualbox", "app-emulation/podman", "app-emulation/podman", "app-emulation/protontricks", "app-emulation/protontricks", "app-emulation/punes", "app-emulation/q4wine", "app-emulation/qemu-guest-agent", "app-emulation/qemu-guest-agent", "app-emulation/qemu-guest-agent", "app-emulation/qemu-init-scripts", "app-emulation/qemu-riscv64-bin", "app-emulation/qemu", "app-emulation/qemu", "app-emulation/qemu", "app-emulation/reg", "app-emulation/runc", "app-emulation/runv", "app-emulation/s6-overlay", "app-emulation/s6-overlay", "app-emulation/sen", "app-emulation/simh", "app-emulation/simplevirt", "app-emulation/ski", "app-emulation/skopeo", "app-emulation/skopeo", "app-emulation/skopeo", "app-emulation/skopeo", "app-emulation/skopeo", "app-emulation/skopeo", "app-emulation/slirp4netns", "app-emulation/slirp4netns", "app-emulation/snapd", "app-emulation/snapd", "app-emulation/softgun", "app-emulation/spectemu", "app-emulation/spice-protocol", "app-emulation/spice-protocol", "app-emulation/spice-protocol", "app-emulation/spice-vdagent", "app-emulation/spice-vdagent", "app-emulation/spice", "app-emulation/spice", "app-emulation/spice", "app-emulation/spim", "app-emulation/uade", "app-emulation/umoci", "app-emulation/umoci", "app-emulation/vagrant", "app-emulation/vagrant", "app-emulation/vendor-reset", "app-emulation/vendor-reset", "app-emulation/vice", "app-emulation/vice", "app-emulation/virt-manager", "app-emulation/virt-manager", "app-emulation/virt-manager", "app-emulation/virt-manager", "app-emulation/virt-viewer", "app-emulation/virt-viewer", "app-emulation/virt-viewer", "app-emulation/virt-viewer", "app-emulation/virt-viewer", "app-emulation/virt-what", "app-emulation/virtio-win", "app-emulation/virtualbox-additions", "app-emulation/virtualbox-additions", "app-emulation/virtualbox-additions", "app-emulation/virtualbox-extpack-oracle", "app-emulation/virtualbox-extpack-oracle", "app-emulation/virtualbox-extpack-oracle", "app-emulation/virtualbox-guest-additions", "app-emulation/virtualbox-guest-additions", "app-emulation/virtualbox-guest-additions", "app-emulation/virtualbox-guest-additions", "app-emulation/virtualbox-modules", "app-emulation/virtualbox-modules", "app-emulation/virtualbox-modules", "app-emulation/virtualbox", "app-emulation/virtualbox", "app-emulation/virtualbox", "app-emulation/vkd3d", "app-emulation/vkd3d", "app-emulation/vkd3d", "app-emulation/vkd3d", "app-emulation/vkd3d", "app-emulation/wine-desktop-common", "app-emulation/wine-gecko", "app-emulation/wine-mono", "app-emulation/wine-mono", "app-emulation/wine-mono", "app-emulation/wine-staging", "app-emulation/wine-staging", "app-emulation/wine-staging", "app-emulation/wine-staging", "app-emulation/wine-staging", "app-emulation/wine-vanilla", "app-emulation/wine-vanilla", "app-emulation/wine-vanilla", "app-emulation/wine-vanilla", "app-emulation/wine-vanilla", "app-emulation/wine-vanilla", "app-emulation/wine-vanilla", "app-emulation/winetricks", "app-emulation/winetricks", "app-emulation/winetricks", "app-emulation/x48", "app-emulation/xcpc", "app-emulation/xe-guest-utilities", "app-emulation/xen-tools", "app-emulation/xen-tools", "app-emulation/xen", "app-emulation/xen", "app-emulation/xtrs", "app-eselect/eselect-audicle", "app-eselect/eselect-awk", "app-eselect/eselect-blas", "app-eselect/eselect-blas", "app-eselect/eselect-cblas", "app-eselect/eselect-cdparanoia", "app-eselect/eselect-chuck", "app-eselect/eselect-ctags", "app-eselect/eselect-ctags", "app-eselect/eselect-emacs", "app-eselect/eselect-emacs", "app-eselect/eselect-fontconfig", "app-eselect/eselect-gnome-shell-extensions", "app-eselect/eselect-gradle", "app-eselect/eselect-gradle", "app-eselect/eselect-iptables", "app-eselect/eselect-java", "app-eselect/eselect-lapack", "app-eselect/eselect-lib-bin-symlink", "app-eselect/eselect-lib-bin-symlink", "app-eselect/eselect-lua", "app-eselect/eselect-luajit", "app-eselect/eselect-miniaudicle", "app-eselect/eselect-mpg123", "app-eselect/eselect-notify-send", "app-eselect/eselect-oodict", "app-eselect/eselect-opencascade", "app-eselect/eselect-package-manager", "app-eselect/eselect-php", "app-eselect/eselect-php", "app-eselect/eselect-php", "app-eselect/eselect-php", "app-eselect/eselect-pinentry", "app-eselect/eselect-pinentry", "app-eselect/eselect-postgresql", "app-eselect/eselect-python", "app-eselect/eselect-python", "app-eselect/eselect-python", "app-eselect/eselect-rails", "app-eselect/eselect-repository", "app-eselect/eselect-ruby", "app-eselect/eselect-ruby", "app-eselect/eselect-ruby", "app-eselect/eselect-ruby", "app-eselect/eselect-rust", "app-eselect/eselect-rust", "app-eselect/eselect-scala", "app-eselect/eselect-sh", "app-eselect/eselect-sndpeek", "app-eselect/eselect-timezone", "app-eselect/eselect-timidity", "app-eselect/eselect-unison", "app-eselect/eselect-vdr", "app-eselect/eselect-vdr", "app-eselect/eselect-vi", "app-eselect/eselect-wine", "app-eselect/eselect-wxwidgets", "app-eselect/eselect-wxwidgets", "app-forensics/afflib", "app-forensics/afl", "app-forensics/afl", "app-forensics/aflplusplus", "app-forensics/aflplusplus", "app-forensics/aflplusplus", "app-forensics/aide", "app-forensics/air", "app-forensics/chkrootkit", "app-forensics/chkrootkit", "app-forensics/cmospwd", "app-forensics/dfxml", "app-forensics/dfxml", "app-forensics/examiner", "app-forensics/foremost", "app-forensics/galleta", "app-forensics/honggfuzz", "app-forensics/libewf", "app-forensics/lynis", "app-forensics/mac-robber", "app-forensics/magicrescue", "app-forensics/memdump", "app-forensics/ovaldi", "app-forensics/pasco", "app-forensics/radamsa", "app-forensics/rifiuti", "app-forensics/rkhunter", "app-forensics/scalpel", "app-forensics/sleuthkit", "app-forensics/sleuthkit", "app-forensics/sleuthkit", "app-forensics/sleuthkit", "app-forensics/unhide", "app-forensics/yasat", "app-forensics/zzuf", "app-forensics/zzuf", "app-i18n/anthy", "app-i18n/bidiv", "app-i18n/cstools", "app-i18n/cstools", "app-i18n/dbskkd-cdb", "app-i18n/dbskkd-cdb", "app-i18n/enca", "app-i18n/fbterm", "app-i18n/fcitx-anthy", "app-i18n/fcitx-anthy", "app-i18n/fcitx-chewing", "app-i18n/fcitx-chewing", "app-i18n/fcitx-cloudpinyin", "app-i18n/fcitx-cloudpinyin", "app-i18n/fcitx-configtool", "app-i18n/fcitx-configtool", "app-i18n/fcitx-hangul", "app-i18n/fcitx-hangul", "app-i18n/fcitx-libpinyin", "app-i18n/fcitx-libpinyin", "app-i18n/fcitx-m17n", "app-i18n/fcitx-m17n", "app-i18n/fcitx-qt5", "app-i18n/fcitx-qt5", "app-i18n/fcitx-rime", "app-i18n/fcitx-rime", "app-i18n/fcitx-sayura", "app-i18n/fcitx-sayura", "app-i18n/fcitx-sunpinyin", "app-i18n/fcitx-sunpinyin", "app-i18n/fcitx-table-extra", "app-i18n/fcitx-table-extra", "app-i18n/fcitx-unikey", "app-i18n/fcitx-unikey", "app-i18n/fcitx", "app-i18n/fcitx", "app-i18n/freewnn", "app-i18n/freewnn", "app-i18n/ibus-anthy", "app-i18n/ibus-anthy", "app-i18n/ibus-cangjie", "app-i18n/ibus-chewing", "app-i18n/ibus-chewing", "app-i18n/ibus-fbterm", "app-i18n/ibus-handwrite", "app-i18n/ibus-hangul", "app-i18n/ibus-hangul", "app-i18n/ibus-input-pad", "app-i18n/ibus-kkc", "app-i18n/ibus-libpinyin", "app-i18n/ibus-m17n", "app-i18n/ibus-m17n", "app-i18n/ibus-m17n", "app-i18n/ibus-pinyin", "app-i18n/ibus-rime", "app-i18n/ibus-rime", "app-i18n/ibus-skk", "app-i18n/ibus-skk", "app-i18n/ibus-sunpinyin", "app-i18n/ibus-table-chinese", "app-i18n/ibus-table-chinese", "app-i18n/ibus-table-extraphrase", "app-i18n/ibus-table-latin", "app-i18n/ibus-table-others", "app-i18n/ibus-table-others", "app-i18n/ibus-table", "app-i18n/ibus-table", "app-i18n/ibus-typing-booster", "app-i18n/ibus-typing-booster", "app-i18n/ibus-typing-booster", "app-i18n/ibus-unikey", "app-i18n/ibus", "app-i18n/ibus", "app-i18n/ibus", "app-i18n/ibus", "app-i18n/im-chooser", "app-i18n/im-freewnn", "app-i18n/im-freewnn", "app-i18n/imhangul", "app-i18n/imhangul", "app-i18n/imhangul", "app-i18n/imsettings", "app-i18n/jfbterm", "app-i18n/kakasi", "app-i18n/kakasi", "app-i18n/kanjipad", "app-i18n/kcc", "app-i18n/kcm-fcitx", "app-i18n/kcm-fcitx", "app-i18n/kinput2", "app-i18n/libcangjie", "app-i18n/libchewing", "app-i18n/libchewing", "app-i18n/libhangul", "app-i18n/libkkc", "app-i18n/libkkc", "app-i18n/libpinyin", "app-i18n/libpinyin", "app-i18n/librime-lua", "app-i18n/librime-lua", "app-i18n/librime", "app-i18n/librime", "app-i18n/librime", "app-i18n/librime", "app-i18n/libskk", "app-i18n/libskk", "app-i18n/man-pages-it", "app-i18n/man-pages-ja", "app-i18n/man-pages-l10n", "app-i18n/man-pages-ru", "app-i18n/man-pages-zh_CN", "app-i18n/mecab-skkserv", "app-i18n/mozc", "app-i18n/mozc", "app-i18n/mozc", "app-i18n/multiskkserv", "app-i18n/nabi", "app-i18n/nkf", "app-i18n/nkf", "app-i18n/opencc", "app-i18n/opencc", "app-i18n/opencc", "app-i18n/opencc", "app-i18n/opencc", "app-i18n/opencc", "app-i18n/poedit", "app-i18n/poedit", "app-i18n/pyzy", "app-i18n/qkc", "app-i18n/rime-data", "app-i18n/rime-data", "app-i18n/scim-anthy", "app-i18n/scim-bridge", "app-i18n/scim-hangul", "app-i18n/scim-input-pad", "app-i18n/scim-input-pad", "app-i18n/scim-m17n", "app-i18n/scim-pinyin", "app-i18n/scim-sayura", "app-i18n/scim-sunpinyin", "app-i18n/scim-tables", "app-i18n/scim-tomoe", "app-i18n/scim-uim", "app-i18n/scim", "app-i18n/skk-jisyo", "app-i18n/skk-jisyo", "app-i18n/skk-jisyo", "app-i18n/skkfep", "app-i18n/skkserv", "app-i18n/skktools", "app-i18n/skktools", "app-i18n/sunpinyin-data", "app-i18n/sunpinyin-data", "app-i18n/sunpinyin", "app-i18n/tagainijisho", "app-i18n/tagainijisho", "app-i18n/tagainijisho", "app-i18n/tagainijisho", "app-i18n/tagainijisho", "app-i18n/tegaki-zinnia-japanese", "app-i18n/tomoe-gtk", "app-i18n/tomoe", "app-i18n/transifex-client", "app-i18n/transifex-client", "app-i18n/translate-shell", "app-i18n/translate-shell", "app-i18n/uchardet", "app-i18n/uchardet", "app-i18n/uim-tomoe-gtk", "app-i18n/uim", "app-i18n/unicode-cldr", "app-i18n/unicode-cldr", "app-i18n/unicode-cldr", "app-i18n/unicode-data", "app-i18n/unicode-data", "app-i18n/unicode-data", "app-i18n/unicode-emoji", "app-i18n/unicode-emoji", "app-i18n/unicode-emoji", "app-i18n/xsunpinyin", "app-i18n/xvnkb", "app-i18n/yaskkserv", "app-i18n/zinnia-tomoe", "app-i18n/zinnia", "app-laptop/dispad", "app-laptop/hdaps-gl", "app-laptop/hdapsd", "app-laptop/i8kutils", "app-laptop/ibam", "app-laptop/laptop-mode-tools", "app-laptop/laptop-mode-tools", "app-laptop/mbpfan", "app-laptop/mbpfan", "app-laptop/mbpfan", "app-laptop/msi-keyboard", "app-laptop/pbbuttonsd", "app-laptop/pommed", "app-laptop/spicctrl", "app-laptop/thinkfan", "app-laptop/thinkfan", "app-laptop/thinkfan", "app-laptop/tp_smapi", "app-laptop/tpacpi-bat", "app-laptop/tpacpi-bat", "app-laptop/tpacpi-bat", "app-laptop/tpb", "app-laptop/tuxedo-control-center-bin", "app-laptop/tuxedo-keyboard", "app-laptop/tuxedo-keyboard", "app-laptop/rogauracore", "app-laptop/rogauracore", "app-metrics/alertmanager", "app-metrics/alertmanager", "app-metrics/bind_exporter", "app-metrics/blackbox_exporter", "app-metrics/blackbox_exporter", "app-metrics/burrow_exporter", "app-metrics/burrow_exporter", "app-metrics/collectd", "app-metrics/consul_exporter", "app-metrics/consul_exporter", "app-metrics/consul_exporter", "app-metrics/dnsmasq_exporter", "app-metrics/elasticsearch_exporter", "app-metrics/elasticsearch_exporter", "app-metrics/elasticsearch_exporter", "app-metrics/elasticsearch_exporter", "app-metrics/exabgp_exporter", "app-metrics/fritzbox_smarthome_exporter", "app-metrics/fusioninventory-agent", "app-metrics/github-exporter", "app-metrics/github-exporter", "app-metrics/grok_exporter", "app-metrics/memcached_exporter", "app-metrics/mongodb_exporter", "app-metrics/mongodb_exporter", "app-metrics/mongodb_exporter", "app-metrics/mysqld_exporter", "app-metrics/mysqld_exporter", "app-metrics/mysqld_exporter", "app-metrics/nginx-lua-prometheus", "app-metrics/nginx-vts-exporter", "app-metrics/nginx-vts-exporter", "app-metrics/nginx-vts-exporter", "app-metrics/node_exporter", "app-metrics/node_exporter", "app-metrics/node_exporter", "app-metrics/openvpn_exporter", "app-metrics/openvpn_exporter", "app-metrics/postfix_exporter", "app-metrics/postfix_exporter", "app-metrics/postgres_exporter", "app-metrics/postgres_exporter", "app-metrics/process-exporter", "app-metrics/process-exporter", "app-metrics/process-exporter", "app-metrics/process-exporter", "app-metrics/prom2json", "app-metrics/prom2json", "app-metrics/prometheus-bin", "app-metrics/prometheus-bin", "app-metrics/prometheus-bin", "app-metrics/prometheus", "app-metrics/prometheus", "app-metrics/prometheus", "app-metrics/pushgateway", "app-metrics/rabbitmq_exporter", "app-metrics/redis_exporter", "app-metrics/redis_exporter", "app-metrics/snmp_exporter", "app-metrics/unbound-telemetry", "app-metrics/uwsgi_exporter", "app-metrics/vault_exporter", "app-misc/abduco", "app-misc/abook", "app-misc/acdctl", "app-misc/actkbd", "app-misc/aldo", "app-misc/anki", "app-misc/asciicast-tools", "app-misc/asciinema", "app-misc/astrolog-ephemeris", "app-misc/astrolog", "app-misc/away", "app-misc/banner", "app-misc/bb", "app-misc/beancounter", "app-misc/beanstalkd", "app-misc/beanstalkd", "app-misc/beep", "app-misc/bfr", "app-misc/bgrep", "app-misc/bgrep", "app-misc/bijiben", "app-misc/binclock", "app-misc/binwalk", "app-misc/binwalk", "app-misc/binwalk", "app-misc/birthday", "app-misc/blink1", "app-misc/bottlerocket", "app-misc/boxes", "app-misc/brewtarget", "app-misc/broot", "app-misc/broot", "app-misc/broot", "app-misc/btail", "app-misc/byobu", "app-misc/byobu", "app-misc/c_rehash", "app-misc/ca-certificates", "app-misc/cadubi", "app-misc/calendar", "app-misc/carbon-c-relay", "app-misc/cbview", "app-misc/cdargs", "app-misc/cdcat", "app-misc/cdctl", "app-misc/cdircmp", "app-misc/cdspeed", "app-misc/cfiles", "app-misc/cfiles", "app-misc/chkcrontab", "app-misc/chkcrontab", "app-misc/ckb", "app-misc/ckb", "app-misc/ckb", "app-misc/ckermit", "app-misc/clockywock", "app-misc/cmatrix", "app-misc/color", "app-misc/colordiff", "app-misc/colordiff", "app-misc/conmux", "app-misc/countrycodes", "app-misc/cpipe", "app-misc/crunch", "app-misc/cstream", "app-misc/cw", "app-misc/dailystrips", "app-misc/dasel", "app-misc/datefudge", "app-misc/dateutils", "app-misc/dateutils", "app-misc/dateutils", "app-misc/dateutils", "app-misc/datovka", "app-misc/datovka", "app-misc/ddate", "app-misc/ddccontrol-db", "app-misc/ddccontrol", "app-misc/ddcui", "app-misc/ddcutil", "app-misc/delay", "app-misc/detachtty", "app-misc/detachtty", "app-misc/detox", "app-misc/detox", "app-misc/devtodo", "app-misc/dfshow", "app-misc/digitemp", "app-misc/dtach", "app-misc/dvorak7min", "app-misc/dvorakng", "app-misc/dvtm", "app-misc/dvtm", "app-misc/dvtm", "app-misc/editor-wrapper", "app-misc/egads", "app-misc/elasticsearch", "app-misc/elasticsearch", "app-misc/elasticsearch", "app-misc/elasticsearch", "app-misc/elasticsearch", "app-misc/elasticsearch", "app-misc/elasticsearch", "app-misc/emelfm2", "app-misc/empty", "app-misc/empty", "app-misc/enum", "app-misc/esekeyd", "app-misc/evtest", "app-misc/evtest", "app-misc/faq", "app-misc/fdupes", "app-misc/fdupes", "app-misc/fdutils", "app-misc/fdutils", "app-misc/fhem", "app-misc/figlet", "app-misc/figlet", "app-misc/filebus", "app-misc/flirc", "app-misc/fr24feed", "app-misc/freewvs", "app-misc/fslurp", "app-misc/fsniper", "app-misc/g15composer", "app-misc/g15daemon", "app-misc/g15daemon", "app-misc/g15daemon", "app-misc/g15macro", "app-misc/g15message", "app-misc/g15mpd", "app-misc/g15stats", "app-misc/g810-led", "app-misc/g810-led", "app-misc/gcal", "app-misc/gcal", "app-misc/gcalcli", "app-misc/geekcode", "app-misc/geneweb", "app-misc/geneweb", "app-misc/gentoo-elections", "app-misc/gentoo", "app-misc/geoclue", "app-misc/getopt", "app-misc/glastree", "app-misc/glastree", "app-misc/glcdprocdriver", "app-misc/glimpse", "app-misc/gnote", "app-misc/gnuit", "app-misc/go-jira", "app-misc/go-jira", "app-misc/go-jira", "app-misc/go-jira", "app-misc/golly", "app-misc/goobook", "app-misc/grabcartoons", "app-misc/grabcartoons", "app-misc/gramps", "app-misc/gramps", "app-misc/graphlcd-base", "app-misc/grc", "app-misc/grc", "app-misc/gtk-sunlight", "app-misc/gtypist", "app-misc/hatools", "app-misc/hddled", "app-misc/hello", "app-misc/hexcompare", "app-misc/hilite", "app-misc/hivex", "app-misc/hodie", "app-misc/i2bits", "app-misc/icdiff", "app-misc/imgurbash2", "app-misc/imgurbash2", "app-misc/imgurbash2", "app-misc/inputlircd", "app-misc/interceptty", "app-misc/irtrans-irclient", "app-misc/irtrans-irserver", "app-misc/jail", "app-misc/jot", "app-misc/joy2key", "app-misc/joymouse", "app-misc/jp", "app-misc/jpipe", "app-misc/jq", "app-misc/jq", "app-misc/kanatest", "app-misc/khal", "app-misc/khal", "app-misc/khard", "app-misc/khard", "app-misc/klavaro", "app-misc/kryoflux-dtc", "app-misc/ktoblzcheck", "app-misc/lcd4linux", "app-misc/lcdproc", "app-misc/leave", "app-misc/ledit", "app-misc/lfm", "app-misc/linux-logo", "app-misc/linux-logo", "app-misc/linux-logo", "app-misc/linuxspa", "app-misc/lirc", "app-misc/livecd-tools", "app-misc/livecd-tools", "app-misc/livecd-tools", "app-misc/lockfile-progs", "app-misc/logiops", "app-misc/lsx", "app-misc/ltunify", "app-misc/lxsplit", "app-misc/mc", "app-misc/mc", "app-misc/mc", "app-misc/mc", "app-misc/media-player-info", "app-misc/mencal", "app-misc/mepl", "app-misc/mime-types", "app-misc/mkcert", "app-misc/mmv", "app-misc/mosquitto", "app-misc/mosquitto", "app-misc/mouseremote", "app-misc/muttprint", "app-misc/mvcase", "app-misc/mx5000tools", "app-misc/neofetch", "app-misc/neofetch", "app-misc/neofetch", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/nnn", "app-misc/no-more-secrets", "app-misc/no-more-secrets", "app-misc/notary", "app-misc/note", "app-misc/nullmodem", "app-misc/nut", "app-misc/ondir", "app-misc/oneko", "app-misc/openrgb-plugin-effects", "app-misc/openrgb-plugin-skin", "app-misc/openrgb-plugin-visualmap", "app-misc/openrgb", "app-misc/openrgb", "app-misc/openrgb", "app-misc/pal", "app-misc/pax-utils", "app-misc/pax-utils", "app-misc/pax-utils", "app-misc/pdfpc", "app-misc/perltrash", "app-misc/pet", "app-misc/pet", "app-misc/pfm", "app-misc/physlock", "app-misc/pip", "app-misc/piper", "app-misc/pipeworks", "app-misc/plod", "app-misc/prog-express", "app-misc/ps3pf_utils", "app-misc/pwsafe", "app-misc/qcma", "app-misc/qcma", "app-misc/qcma", "app-misc/qlcplus", "app-misc/qlcplus", "app-misc/qlcplus", "app-misc/qlcplus", "app-misc/radeontop", "app-misc/radeontop", "app-misc/ranger", "app-misc/ranger", "app-misc/ranger", "app-misc/razertool", "app-misc/rbutil", "app-misc/rdfind", "app-misc/rdfind", "app-misc/realpath", "app-misc/recoll", "app-misc/recoll", "app-misc/recoll", "app-misc/recoll", "app-misc/regex-markup", "app-misc/regionset", "app-misc/remind", "app-misc/reptyr", "app-misc/resolve-march-native", "app-misc/resolve-march-native", "app-misc/rioutil", "app-misc/rl", "app-misc/rlwrap", "app-misc/rlwrap", "app-misc/rlwrap", "app-misc/rox-filer", "app-misc/rpick", "app-misc/rpick", "app-misc/rtlamr", "app-misc/rundeck-bin", "app-misc/rundeck-cli-bin", "app-misc/screen", "app-misc/screen", "app-misc/screenfetch", "app-misc/screenfetch", "app-misc/screenfetch", "app-misc/screenie", "app-misc/scrub", "app-misc/selecta", "app-misc/selecta", "app-misc/skim", "app-misc/sl", "app-misc/smtm", "app-misc/socnetv", "app-misc/solaar", "app-misc/solaar", "app-misc/sonypid", "app-misc/spacenavd", "app-misc/spacenavd", "app-misc/sphinx", "app-misc/sphinx", "app-misc/spire", "app-misc/spire", "app-misc/spire", "app-misc/splitvt", "app-misc/srm", "app-misc/supercat", "app-misc/supercat", "app-misc/supercat", "app-misc/symlinks", "app-misc/task", "app-misc/task", "app-misc/taskd", "app-misc/tdfsb", "app-misc/tdl", "app-misc/tek", "app-misc/terminal-colors", "app-misc/timestamp", "app-misc/timew", "app-misc/timew", "app-misc/tkpasman", "app-misc/tmate", "app-misc/tmux-mem-cpu-load", "app-misc/tmux-mem-cpu-load", "app-misc/tmux-xpanes", "app-misc/tmux-xpanes", "app-misc/tmux", "app-misc/tmux", "app-misc/tmux", "app-misc/tmux2html", "app-misc/tmuxp", "app-misc/tmuxp", "app-misc/tmuxp", "app-misc/tmuxp", "app-misc/tmuxp", "app-misc/todo", "app-misc/todo", "app-misc/toilet", "app-misc/tpconfig", "app-misc/tpipe", "app-misc/tprint", "app-misc/tracker-miners", "app-misc/tracker-miners", "app-misc/tracker", "app-misc/tracker", "app-misc/tracker", "app-misc/transfolio", "app-misc/trash-cli", "app-misc/trash-cli", "app-misc/ttyload", "app-misc/ttyload", "app-misc/ttyrec", "app-misc/ttysnoop", "app-misc/unfoo", "app-misc/uptimed", "app-misc/uptimed", "app-misc/uptimed", "app-misc/utimer", "app-misc/vcontrold", "app-misc/vcp", "app-misc/vifm", "app-misc/vifm", "app-misc/vit", "app-misc/vittk", "app-misc/vlock", "app-misc/votrify", "app-misc/vzstats", "app-misc/wcd", "app-misc/wcd", "app-misc/when", "app-misc/wildq", "app-misc/wipe", "app-misc/worker", "app-misc/xmind", "app-misc/yq", "app-misc/yq", "app-misc/yq", "app-misc/ytree", "app-misc/ytree", "app-misc/zisofs-tools", "app-misc/zygrib", "app-misc/libdatovka", "app-mobilephone/adb-sync", "app-mobilephone/anyremote", "app-mobilephone/dfu-util", "app-mobilephone/dfu-util", "app-mobilephone/gammu", "app-mobilephone/gnokii", "app-mobilephone/gnokii", "app-mobilephone/heimdall", "app-mobilephone/heimdall", "app-mobilephone/heimdall", "app-mobilephone/qtadb", "app-mobilephone/scmxx", "app-mobilephone/scrcpy", "app-mobilephone/smstools", "app-mobilephone/sobexsrv", "app-mobilephone/vmoconv", "app-office/abiword-docs", "app-office/abiword", "app-office/abiword", "app-office/auto-multiple-choice", "app-office/borg", "app-office/calcurse", "app-office/calligra", "app-office/calligraplan", "app-office/dia", "app-office/dia2code", "app-office/glabels", "app-office/gnome-todo", "app-office/gnucash", "app-office/gnucash", "app-office/gnumeric", "app-office/gnumeric", "app-office/grisbi", "app-office/grisbi", "app-office/grisbi", "app-office/gtg", "app-office/gtg", "app-office/homebank", "app-office/homebank", "app-office/impressive", "app-office/kexi", "app-office/kmymoney", "app-office/kraft", "app-office/ktimetracker", "app-office/ledger", "app-office/libalkimia", "app-office/libreoffice-bin-debug", "app-office/libreoffice-bin", "app-office/libreoffice-l10n", "app-office/libreoffice-l10n", "app-office/libreoffice-voikko", "app-office/libreoffice", "app-office/libreoffice", "app-office/libreoffice", "app-office/libreoffice", "app-office/lyx", "app-office/lyx", "app-office/lyx", "app-office/magicpoint", "app-office/mdbtools", "app-office/mdbtools", "app-office/mdbtools", "app-office/moneydance", "app-office/multitalk", "app-office/pinpoint", "app-office/plan", "app-office/planner", "app-office/projectlibre-bin", "app-office/sc", "app-office/scribus", "app-office/scribus", "app-office/skrooge", "app-office/texmacs", "app-office/texmaker", "app-office/texmaker", "app-office/texstudio", "app-office/texstudio", "app-office/texstudio", "app-office/unoconv", "app-office/upwork", "app-office/worklog-assistant-bin", "app-office/wps-office", "app-officeext/barcode", "app-officeext/ct2n", "app-officeext/dmaths", "app-officeext/languagetool", "app-officeext/ooo2gd", "app-officeext/ooofbtools", "app-officeext/ooofbtools", "app-officeext/ooofbtools", "app-officeext/sun-templates", "app-officeext/texmaths", "app-officeext/texmaths", "app-pda/barry", "app-pda/dynamite", "app-pda/gnupod", "app-pda/gtkpod", "app-pda/ideviceinstaller", "app-pda/ifuse", "app-pda/iripdb", "app-pda/jpilot", "app-pda/libimobiledevice", "app-pda/libplist", "app-pda/libusbmuxd", "app-pda/pilot-link", "app-pda/usbmuxd", "app-pda/usbmuxd", "app-portage/cfg-update", "app-portage/conf-update", "app-portage/cpuid2cpuflags", "app-portage/cpuid2cpuflags", "app-portage/diffmask", "app-portage/diffmask", "app-portage/distpatch", "app-portage/eix", "app-portage/elicense", "app-portage/elicense", "app-portage/elogv", "app-portage/elogv", "app-portage/elogviewer", "app-portage/elt-patches", "app-portage/elt-patches", "app-portage/emerge-delta-webrsync", "app-portage/epkg", "app-portage/esearch", "app-portage/esearch", "app-portage/euses", "app-portage/euses", "app-portage/fetchcommandwrapper", "app-portage/flaggie", "app-portage/flaggie", "app-portage/fquery", "app-portage/g-cpan", "app-portage/g-cpan", "app-portage/g-cpan", "app-portage/g-octave", "app-portage/g-sorcery", "app-portage/g-sorcery", "app-portage/gander", "app-portage/gander", "app-portage/gemato", "app-portage/gemato", "app-portage/genlop", "app-portage/genlop", "app-portage/gentoolkit", "app-portage/gentoolkit", "app-portage/gentoolkit", "app-portage/gentoopm", "app-portage/gentoopm", "app-portage/golop", "app-portage/golop", "app-portage/gpyutils", "app-portage/gpyutils", "app-portage/grs", "app-portage/grs", "app-portage/gs-elpa", "app-portage/gs-elpa", "app-portage/gverify", "app-portage/hackport", "app-portage/hackport", "app-portage/hackport", "app-portage/java-ebuilder", "app-portage/java-ebuilder", "app-portage/kuroneko", "app-portage/kuroneko", "app-portage/kuroneko", "app-portage/kuroneko", "app-portage/kuroo", "app-portage/kuroo", "app-portage/layman", "app-portage/layman", "app-portage/metagen", "app-portage/metagen", "app-portage/mgorny-dev-scripts", "app-portage/mgorny-dev-scripts", "app-portage/mirrorselect", "app-portage/mirrorselect", "app-portage/nattka", "app-portage/nattka", "app-portage/no-distcc-env", "app-portage/overlint", "app-portage/pfl", "app-portage/pgo", "app-portage/pgo", "app-portage/pgo", "app-portage/pkg-testing-tools", "app-portage/portage-utils", "app-portage/portage-utils", "app-portage/portage-utils", "app-portage/portage-utils", "app-portage/porticron", "app-portage/portpeek", "app-portage/portpeek", "app-portage/pram", "app-portage/prefix-toolkit", "app-portage/prefix-toolkit", "app-portage/repo-commit", "app-portage/repo-commit", "app-portage/repoman", "app-portage/repoman", "app-portage/repoman", "app-portage/repoman", "app-portage/smart-live-rebuild", "app-portage/smart-live-rebuild", "app-portage/tatt", "app-portage/tatt", "app-portage/ufed", "app-portage/ufed", "app-portage/unsymlink-lib", "app-portage/iwdevtools", "app-portage/iwdevtools", "app-portage/iwdevtools", "app-portage/iwdevtools", "app-shells/autojump", "app-shells/autojump", "app-shells/bash-completion", "app-shells/bash-completion", "app-shells/bash", "app-shells/bash", "app-shells/bash", "app-shells/bash", "app-shells/bash", "app-shells/bash", "app-shells/bash", "app-shells/bash", "app-shells/bash", "app-shells/bash", "app-shells/bash", "app-shells/bashdb", "app-shells/bashish", "app-shells/ccsh", "app-shells/ctypes-sh", "app-shells/dash", "app-shells/dash", "app-shells/dsh", "app-shells/esh", "app-shells/fish", "app-shells/fish", "app-shells/fish", "app-shells/fish", "app-shells/fish", "app-shells/fzf", "app-shells/fzf", "app-shells/fzy", "app-shells/fzy", "app-shells/gentoo-bashcomp", "app-shells/gentoo-bashcomp", "app-shells/gentoo-zsh-completions", "app-shells/gentoo-zsh-completions", "app-shells/heirloom-sh", "app-shells/hstr", "app-shells/ksh", "app-shells/ksh", "app-shells/kshdb", "app-shells/localshell", "app-shells/loksh", "app-shells/loksh", "app-shells/loksh", "app-shells/mcfly", "app-shells/mcfly", "app-shells/mksh", "app-shells/mksh", "app-shells/mpibash", "app-shells/mpibash", "app-shells/nushell", "app-shells/pdmenu", "app-shells/pdsh", "app-shells/pdsh", "app-shells/peco", "app-shells/peco", "app-shells/posh", "app-shells/powerline", "app-shells/powerline", "app-shells/psh", "app-shells/push", "app-shells/push", "app-shells/pwsh-bin", "app-shells/quoter", "app-shells/rc", "app-shells/rrs", "app-shells/rush", "app-shells/rush", "app-shells/sash", "app-shells/scsh", "app-shells/shish", "app-shells/smrsh", "app-shells/soapbox", "app-shells/squirrelsh", "app-shells/tcsh", "app-shells/tcsh", "app-shells/thefuck", "app-shells/thefuck", "app-shells/tmux-bash-completion", "app-shells/yash", "app-shells/yash", "app-shells/zsh-completions", "app-shells/zsh-completions", "app-shells/zsh-completions", "app-shells/zsh-completions", "app-shells/zsh-syntax-highlighting", "app-shells/zsh", "app-shells/zsh", "app-shells/liquidprompt", "app-text/XML-Schema-learner", "app-text/a2ps", "app-text/agrep", "app-text/aiksaurus", "app-text/aiksaurus", "app-text/an", "app-text/ansifilter", "app-text/antiword", "app-text/antixls", "app-text/apvlv", "app-text/asa", "app-text/asciidoc", "app-text/asciidoc", "app-text/asciidoc", "app-text/asciidoc", "app-text/aspell", "app-text/atril", "app-text/atril", "app-text/bact", "app-text/barcode", "app-text/bdf2psf", "app-text/bibclean", "app-text/bibclean", "app-text/bibletime", "app-text/bibletime", "app-text/bibletime", "app-text/bibutils", "app-text/binfind", "app-text/blahtexml", "app-text/blogc", "app-text/blogc", "app-text/bogosort", "app-text/build-docbook-catalog", "app-text/c2ps", "app-text/calibre", "app-text/calibre", "app-text/capyt", "app-text/catdoc", "app-text/cb2bib", "app-text/cedilla", "app-text/chasen", "app-text/cherrytree", "app-text/cherrytree", "app-text/cmark", "app-text/cmark", "app-text/cmigemo", "app-text/code2html", "app-text/convertlit", "app-text/convmv", "app-text/convmv", "app-text/convmv", "app-text/coolreader", "app-text/coolreader", "app-text/coolreader", "app-text/cpdf", "app-text/crf++", "app-text/crm114", "app-text/cuneiform", "app-text/cwtext", "app-text/dbacl", "app-text/dbacl", "app-text/dblatex", "app-text/dblatex", "app-text/delta", "app-text/dictd", "app-text/diction", "app-text/diff-pdf", "app-text/diffpdf", "app-text/ding", "app-text/ding", "app-text/discount", "app-text/discount", "app-text/djview", "app-text/djvu", "app-text/djvu", "app-text/djvu", "app-text/docbook-dsssl-stylesheets", "app-text/docbook-sgml-dtd", "app-text/docbook-sgml-dtd", "app-text/docbook-sgml-dtd", "app-text/docbook-sgml-dtd", "app-text/docbook-sgml-dtd", "app-text/docbook-sgml-dtd", "app-text/docbook-sgml-dtd", "app-text/docbook-sgml-dtd", "app-text/docbook-sgml-utils", "app-text/docbook-xml-dtd", "app-text/docbook-xml-dtd", "app-text/docbook-xml-dtd", "app-text/docbook-xml-dtd", "app-text/docbook-xml-dtd", "app-text/docbook-xml-simple-dtd", "app-text/docbook-xml-simple-dtd", "app-text/docbook-xml-simple-dtd", "app-text/docbook-xsl-ns-stylesheets", "app-text/docbook-xsl-stylesheets", "app-text/docbook2X", "app-text/docx2txt", "app-text/dos2unix", "app-text/dvipng", "app-text/dvipsk", "app-text/dvisvgm", "app-text/dvisvgm", "app-text/dvisvgm", "app-text/ebook-tools", "app-text/editorconfig-core-c", "app-text/editorconfig-core-c", "app-text/enchant", "app-text/enchant", "app-text/enchant", "app-text/enscript", "app-text/epspdf", "app-text/epstool", "app-text/evince", "app-text/evince", "app-text/expander", "app-text/extract_url", "app-text/fb2edit", "app-text/fblog", "app-text/fbpdf", "app-text/fbreader", "app-text/fictionup", "app-text/flpsed", "app-text/foliate", "app-text/foliate", "app-text/ghostscript-gpl", "app-text/ghostscript-gpl", "app-text/ghostscript-gpl", "app-text/gnome-doc-utils", "app-text/gocr", "app-text/gocr", "app-text/grip", "app-text/groonga-normalizer-mysql", "app-text/groonga", "app-text/grutatxt", "app-text/gspell", "app-text/gtkspell", "app-text/gtkspell", "app-text/gtranslator", "app-text/gv", "app-text/hd2u", "app-text/highlight", "app-text/highlight", "app-text/highlight", "app-text/hnb", "app-text/htag", "app-text/html-xml-utils", "app-text/html-xml-utils", "app-text/html2text", "app-text/html2text", "app-text/html2text", "app-text/html401", "app-text/htmlc", "app-text/htmlc", "app-text/htmldoc", "app-text/htmlinc", "app-text/htmlmin", "app-text/htmlrecode", "app-text/htmltidy", "app-text/htmltidy", "app-text/htp", "app-text/hunspell", "app-text/hyperestraier", "app-text/hyperestraier", "app-text/iso-codes", "app-text/iso-codes", "app-text/itex2mml", "app-text/jabref-bin", "app-text/jabref-bin", "app-text/jabref-bin", "app-text/jabref-bin", "app-text/jabref-bin", "app-text/jabref-bin", "app-text/jabref-bin", "app-text/jabref-bin", "app-text/jabref", "app-text/jo", "app-text/jo", "app-text/kbibtex", "app-text/kjots", "app-text/kramdown-rfc2629", "app-text/krop", "app-text/krop", "app-text/languagetool", "app-text/languagetool", "app-text/lcdf-typetools", "app-text/lesspipe", "app-text/lesspipe", "app-text/letterize", "app-text/libabw", "app-text/libebook", "app-text/libepubgen", "app-text/libetonyek", "app-text/libetonyek", "app-text/libexttextcat", "app-text/libgepub", "app-text/libgxps", "app-text/liblangtag", "app-text/libmspub", "app-text/libmspub", "app-text/libmwaw", "app-text/libmwaw", "app-text/libmwaw", "app-text/libnumbertext", "app-text/libodfgen", "app-text/libodfgen", "app-text/libpaper", "app-text/libqxp", "app-text/libspectre", "app-text/libstaroffice", "app-text/libstaroffice", "app-text/libwpd", "app-text/libwpg", "app-text/libwps", "app-text/libxmlpatch", "app-text/linuxdoc-tools", "app-text/llpp", "app-text/logmerge", "app-text/lowdown", "app-text/lv", "app-text/lv", "app-text/mandoc", "app-text/manpager", "app-text/master-pdf-editor", "app-text/mathtex", "app-text/mecab", "app-text/mpage", "app-text/msort", "app-text/multitail", "app-text/mupdf", "app-text/mythes", "app-text/namazu", "app-text/namazu", "app-text/nfoview", "app-text/nfoview", "app-text/nfoview", "app-text/nuspell", "app-text/nuspell", "app-text/nuspell", "app-text/nuspell", "app-text/nuspell", "app-text/nuspell", "app-text/o3read", "app-text/ocrad", "app-text/ocrad", "app-text/odt2txt", "app-text/openjade", "app-text/openpaperwork-core", "app-text/openpaperwork-core", "app-text/openpaperwork-gtk", "app-text/openpaperwork-gtk", "app-text/opensp", "app-text/opensp", "app-text/pandoc", "app-text/pandoc", "app-text/pandoc", "app-text/paperwork-backend", "app-text/paperwork-backend", "app-text/paperwork", "app-text/paperwork", "app-text/paps", "app-text/par", "app-text/pastebinit", "app-text/pdf2html", "app-text/pdf2oo", "app-text/pdfarranger", "app-text/pdfarranger", "app-text/pdfarranger", "app-text/pdfgrep", "app-text/pdfjam", "app-text/pdfminer", "app-text/pdfsandwich", "app-text/pdftk", "app-text/pdftk", "app-text/pelican", "app-text/pelican", "app-text/pep", "app-text/pinfo", "app-text/pinfo", "app-text/po4a", "app-text/po4a", "app-text/po4a", "app-text/podofo", "app-text/poppler-data", "app-text/poppler", "app-text/poppler", "app-text/poppler", "app-text/ps2eps", "app-text/ps2pkm", "app-text/psiconv", "app-text/pspdftool", "app-text/pspresent", "app-text/pstotext", "app-text/psutils", "app-text/pytextile", "app-text/q-text-as-data", "app-text/qpdf", "app-text/qpdf", "app-text/qpdf", "app-text/qpdf", "app-text/qpdfview", "app-text/qpdfview", "app-text/rarian", "app-text/recode", "app-text/reed", "app-text/refbase", "app-text/restview", "app-text/rman", "app-text/rnc2rng", "app-text/rnv", "app-text/robodoc", "app-text/robodoc", "app-text/ronn", "app-text/rpl", "app-text/rtf2html", "app-text/sablotron", "app-text/scdoc", "app-text/scdoc", "app-text/scdoc", "app-text/scrollkeeper-dtd", "app-text/sdcv", "app-text/sgml-common", "app-text/sgrep", "app-text/sigil", "app-text/sigil", "app-text/simple-fb2-reader", "app-text/sloccount", "app-text/spellutils", "app-text/stardict", "app-text/stardict", "app-text/sword-modules", "app-text/sword", "app-text/t1utils", "app-text/t1utils", "app-text/tabler", "app-text/talkfilters", "app-text/teckit", "app-text/teseq", "app-text/tessdata_best", "app-text/tessdata_best", "app-text/tessdata_fast", "app-text/tessdata_fast", "app-text/tessdata_legacy", "app-text/tessdata_legacy", "app-text/tesseract", "app-text/tesseract", "app-text/tesseract", "app-text/texi2html", "app-text/texlive-core", "app-text/texlive", "app-text/tidy-html5", "app-text/tidy-html5", "app-text/tidy-html5", "app-text/tkinfo", "app-text/tkman", "app-text/tofrodos", "app-text/tokyodystopia", "app-text/trang", "app-text/tree", "app-text/ttf2pk2", "app-text/ttf2pt1", "app-text/txt2man", "app-text/txt2pdbdoc", "app-text/txt2tags", "app-text/u2ps", "app-text/unac", "app-text/unpaper", "app-text/unpaper", "app-text/unrtf", "app-text/uudeview", "app-text/vgrep", "app-text/vilistextum", "app-text/wdiff", "app-text/webgen", "app-text/webgen", "app-text/wgetpaste", "app-text/wgetpaste", "app-text/wgetpaste", "app-text/wiki2beamer", "app-text/writerperfect", "app-text/wscr", "app-text/wv", "app-text/wv2", "app-text/xapers", "app-text/xapian-omega", "app-text/xapian-omega", "app-text/xapian-omega", "app-text/xapian-omega", "app-text/xapian-omega", "app-text/xchm", "app-text/xchm", "app-text/xdvik", "app-text/xhtml1", "app-text/xhtml11", "app-text/xiphos", "app-text/xlhtml", "app-text/xlsx2csv", "app-text/xml2", "app-text/xml2doc", "app-text/xmldiff", "app-text/xmlformat", "app-text/xmlstarlet", "app-text/xmlto", "app-text/xmlto", "app-text/xournal", "app-text/xournal", "app-text/xournalpp", "app-text/xournalpp", "app-text/xpdf", "app-text/yelp-tools", "app-text/yodl", "app-text/zathura-cb", "app-text/zathura-cb", "app-text/zathura-djvu", "app-text/zathura-djvu", "app-text/zathura-meta", "app-text/zathura-pdf-mupdf", "app-text/zathura-pdf-mupdf", "app-text/zathura-pdf-poppler", "app-text/zathura-pdf-poppler", "app-text/zathura-pdf-poppler", "app-text/zathura-ps", "app-text/zathura-ps", "app-text/zathura", "app-text/zathura", "app-text/zathura", "app-text/zathura", "app-text/zathura", "app-text/zotero-bin", "app-text/kchmviewer", "app-vim/Vim-Jinja2-Syntax", "app-vim/ackvim", "app-vim/airline-themes", "app-vim/airline-themes", "app-vim/airline", "app-vim/airline", "app-vim/align", "app-vim/alternate", "app-vim/ansiesc", "app-vim/ant_menu", "app-vim/autoalign", "app-vim/bash-support", "app-vim/bnf-syntax", "app-vim/brainfuck-syntax", "app-vim/breakpts", "app-vim/breakpts", "app-vim/bufexplorer", "app-vim/bufexplorer", "app-vim/bufexplorer", "app-vim/c-support", "app-vim/calendar", "app-vim/cctree", "app-vim/cecutil", "app-vim/cfengine-syntax", "app-vim/checkattach", "app-vim/closetag", "app-vim/cmdalias", "app-vim/colorschemes", "app-vim/colorsel", "app-vim/command-t", "app-vim/command-t", "app-vim/csound-syntax", "app-vim/csound-syntax", "app-vim/csscomplete", "app-vim/csv", "app-vim/ctrlp", "app-vim/ctrlp", "app-vim/ctx", "app-vim/curcmdmode", "app-vim/cvsmenu", "app-vim/dbext", "app-vim/detectindent", "app-vim/dhcpd-syntax", "app-vim/diffchar", "app-vim/diffchar", "app-vim/dirdiff", "app-vim/easy-align", "app-vim/ebnf-syntax", "app-vim/editorconfig-vim", "app-vim/emmet", "app-vim/emmet", "app-vim/enhancedcommentify", "app-vim/errsign", "app-vim/eruby-syntax", "app-vim/eselect-syntax", "app-vim/exheres-syntax", "app-vim/exheres-syntax", "app-vim/extra-syntax", "app-vim/ferret", "app-vim/ferret", "app-vim/fluxbox-syntax", "app-vim/foldutil", "app-vim/frawor", "app-vim/frawor", "app-vim/fugitive", "app-vim/fugitive", "app-vim/fugitive", "app-vim/fugitive", "app-vim/fugitive", "app-vim/fuzzyfinder", "app-vim/genindent", "app-vim/gentoo-syntax", "app-vim/gentoo-syntax", "app-vim/gentoo-syntax", "app-vim/gentoo-syntax", "app-vim/genutils", "app-vim/gist", "app-vim/git-patch-tags", "app-vim/gitgutter", "app-vim/gitgutter", "app-vim/gitgutter", "app-vim/gitlog", "app-vim/gitlog", "app-vim/gitlog", "app-vim/gitolite-syntax", "app-vim/gitolite-syntax", "app-vim/gitv", "app-vim/gitv", "app-vim/gnupg", "app-vim/greputils", "app-vim/gtk-syntax", "app-vim/gundo", "app-vim/haskellmode", "app-vim/help-extra-syntax", "app-vim/increment", "app-vim/indentpython", "app-vim/info", "app-vim/iris", "app-vim/jedi", "app-vim/json", "app-vim/l9", "app-vim/languagetool", "app-vim/lightline", "app-vim/locateopen", "app-vim/lustyexplorer", "app-vim/matrix", "app-vim/mediawiki", "app-vim/merginal", "app-vim/merginal", "app-vim/merginal", "app-vim/minibufexpl", "app-vim/molokai", "app-vim/multiplesearch", "app-vim/multvals", "app-vim/nagios-syntax", "app-vim/neocomplcache", "app-vim/nerdcommenter", "app-vim/nerdcommenter", "app-vim/nerdtree-tabs", "app-vim/nerdtree", "app-vim/nerdtree", "app-vim/nerdtree", "app-vim/nerdtree", "app-vim/nginx-syntax", "app-vim/ntp-syntax", "app-vim/omnicppcomplete", "app-vim/pathogen", "app-vim/pdv", "app-vim/perl-support", "app-vim/perl-support", "app-vim/perlomni", "app-vim/pfsyntax", "app-vim/pgn-syntax", "app-vim/phpdocs", "app-vim/project", "app-vim/puppet-syntax", "app-vim/pushpop", "app-vim/pyclewn", "app-vim/pydiction", "app-vim/pydoc", "app-vim/pytest", "app-vim/rails", "app-vim/rainbow_parentheses", "app-vim/recover", "app-vim/reload", "app-vim/repeat", "app-vim/ri-browser", "app-vim/rust-vim", "app-vim/salt-vim", "app-vim/scala-syntax", "app-vim/screen", "app-vim/searchcomplete", "app-vim/securemodelines", "app-vim/selinux-syntax", "app-vim/session", "app-vim/showmarks", "app-vim/sleuth", "app-vim/snipmate", "app-vim/splice", "app-vim/splice", "app-vim/sudoedit", "app-vim/supertab", "app-vim/surround", "app-vim/syntastic", "app-vim/syntastic", "app-vim/tagbar", "app-vim/taglist", "app-vim/tasklist", "app-vim/tcomment", "app-vim/tcomment", "app-vim/thlnk", "app-vim/tlib", "app-vim/tlib", "app-vim/tmpl", "app-vim/toggle", "app-vim/tt2-syntax", "app-vim/txtfmt", "app-vim/txtfmt", "app-vim/udev-syntax", "app-vim/undotree", "app-vim/undotree", "app-vim/unite", "app-vim/unite", "app-vim/uptime", "app-vim/vcscommand", "app-vim/vim-addon-mw-utils", "app-vim/vim-autoclose", "app-vim/vim-clang-format", "app-vim/vim-commentary", "app-vim/vim-flake8", "app-vim/vim-go", "app-vim/vim-go", "app-vim/vim-go", "app-vim/vim-hoogle", "app-vim/vim-jq", "app-vim/vim-jsonnet", "app-vim/vim-latex", "app-vim/vim-misc", "app-vim/vim-multiple-cursors", "app-vim/vim-nftables", "app-vim/vim-nftables", "app-vim/vim-r", "app-vim/vim-rest-console", "app-vim/vim-spell-cs", "app-vim/vim-spell-da", "app-vim/vim-spell-de", "app-vim/vim-spell-el", "app-vim/vim-spell-en", "app-vim/vim-spell-es", "app-vim/vim-spell-fr", "app-vim/vim-spell-he", "app-vim/vim-spell-hu", "app-vim/vim-spell-it", "app-vim/vim-spell-nl", "app-vim/vim-spell-pl", "app-vim/vim-spell-pt", "app-vim/vim-spell-ru", "app-vim/vim-tmux", "app-vim/vim2hs", "app-vim/vimagit", "app-vim/vimagit", "app-vim/vimbuddy", "app-vim/vimcdoc", "app-vim/vimcdoc", "app-vim/vimclojure", "app-vim/vimcommander", "app-vim/vimoutliner", "app-vim/vimoutliner", "app-vim/vimpython", "app-vim/vimtex", "app-vim/vimtex", "app-vim/voom", "app-vim/webapi", "app-vim/wikipedia-syntax", "app-vim/xquery-syntax", "app-vim/xsl-syntax", "app-vim/yankring", "app-vim/yankring", "app-vim/zenburn", "app-vim/zoomwin", "app-xemacs/ada", "app-xemacs/ada", "app-xemacs/apel", "app-xemacs/apel", "app-xemacs/apel", "app-xemacs/auctex", "app-xemacs/auctex", "app-xemacs/auctex", "app-xemacs/bbdb", "app-xemacs/bbdb", "app-xemacs/bbdb", "app-xemacs/build", "app-xemacs/build", "app-xemacs/build", "app-xemacs/c-support", "app-xemacs/c-support", "app-xemacs/calc", "app-xemacs/calc", "app-xemacs/calendar", "app-xemacs/calendar", "app-xemacs/calendar", "app-xemacs/cc-mode", "app-xemacs/cc-mode", "app-xemacs/cedet-common", "app-xemacs/cedet-common", "app-xemacs/clearcase", "app-xemacs/clearcase", "app-xemacs/cogre", "app-xemacs/cookie", "app-xemacs/cookie", "app-xemacs/crisp", "app-xemacs/crisp", "app-xemacs/debug", "app-xemacs/debug", "app-xemacs/debug", "app-xemacs/dictionary", "app-xemacs/dictionary", "app-xemacs/dired", "app-xemacs/dired", "app-xemacs/dired", "app-xemacs/dired", "app-xemacs/docbookide", "app-xemacs/docbookide", "app-xemacs/easypg", "app-xemacs/easypg", "app-xemacs/easypg", "app-xemacs/ebuild-mode", "app-xemacs/ebuild-mode", "app-xemacs/ebuild-mode", "app-xemacs/ecb", "app-xemacs/ecb", "app-xemacs/ecrypto", "app-xemacs/ecrypto", "app-xemacs/ecrypto", "app-xemacs/ede", "app-xemacs/edebug", "app-xemacs/edebug", "app-xemacs/edict", "app-xemacs/edict", "app-xemacs/edict", "app-xemacs/ediff", "app-xemacs/ediff", "app-xemacs/ediff", "app-xemacs/ediff", "app-xemacs/edit-utils", "app-xemacs/edit-utils", "app-xemacs/edit-utils", "app-xemacs/edit-utils", "app-xemacs/edit-utils", "app-xemacs/edt", "app-xemacs/edt", "app-xemacs/edt", "app-xemacs/efs", "app-xemacs/efs", "app-xemacs/efs", "app-xemacs/egg-its", "app-xemacs/egg-its", "app-xemacs/eieio", "app-xemacs/eieio", "app-xemacs/eieio", "app-xemacs/elib", "app-xemacs/elib", "app-xemacs/elib", "app-xemacs/emerge", "app-xemacs/emerge", "app-xemacs/erc", "app-xemacs/erc", "app-xemacs/erc", "app-xemacs/escreen", "app-xemacs/escreen", "app-xemacs/eshell", "app-xemacs/eshell", "app-xemacs/eshell", "app-xemacs/ess", "app-xemacs/eudc", "app-xemacs/eudc", "app-xemacs/eudc", "app-xemacs/eudc", "app-xemacs/footnote", "app-xemacs/footnote", "app-xemacs/forms", "app-xemacs/forms", "app-xemacs/fortran-modes", "app-xemacs/fortran-modes", "app-xemacs/frame-icon", "app-xemacs/frame-icon", "app-xemacs/fsf-compat", "app-xemacs/fsf-compat", "app-xemacs/fsf-compat", "app-xemacs/games", "app-xemacs/games", "app-xemacs/general-docs", "app-xemacs/general-docs", "app-xemacs/general-docs", "app-xemacs/general-docs", "app-xemacs/gnats", "app-xemacs/gnats", "app-xemacs/gnus", "app-xemacs/gnus", "app-xemacs/gnus", "app-xemacs/guided-tour", "app-xemacs/guided-tour", "app-xemacs/haskell-mode", "app-xemacs/haskell-mode", "app-xemacs/hm-html-menus", "app-xemacs/hm-html-menus", "app-xemacs/hm-html-menus", "app-xemacs/hm-html-menus", "app-xemacs/hyperbole", "app-xemacs/hyperbole", "app-xemacs/hyperbole", "app-xemacs/ibuffer", "app-xemacs/ibuffer", "app-xemacs/ibuffer", "app-xemacs/idlwave", "app-xemacs/idlwave", "app-xemacs/igrep", "app-xemacs/igrep", "app-xemacs/igrep", "app-xemacs/ilisp", "app-xemacs/ilisp", "app-xemacs/ilisp", "app-xemacs/jde", "app-xemacs/latin-euro-standards", "app-xemacs/latin-euro-standards", "app-xemacs/latin-euro-standards", "app-xemacs/latin-unity", "app-xemacs/latin-unity", "app-xemacs/leim", "app-xemacs/leim", "app-xemacs/leim", "app-xemacs/locale", "app-xemacs/locale", "app-xemacs/locale", "app-xemacs/lookup", "app-xemacs/lookup", "app-xemacs/mail-lib", "app-xemacs/mail-lib", "app-xemacs/mail-lib", "app-xemacs/mailcrypt", "app-xemacs/mailcrypt", "app-xemacs/mew", "app-xemacs/mew", "app-xemacs/mh-e", "app-xemacs/mh-e", "app-xemacs/mh-e", "app-xemacs/mine", "app-xemacs/mine", "app-xemacs/misc-games", "app-xemacs/misc-games", "app-xemacs/misc-games", "app-xemacs/mmm-mode", "app-xemacs/mmm-mode", "app-xemacs/mmm-mode", "app-xemacs/mmm-mode", "app-xemacs/mule-base", "app-xemacs/mule-base", "app-xemacs/mule-base", "app-xemacs/mule-ucs", "app-xemacs/mule-ucs", "app-xemacs/mule-ucs", "app-xemacs/net-utils", "app-xemacs/net-utils", "app-xemacs/net-utils", "app-xemacs/ocaml", "app-xemacs/ocaml", "app-xemacs/oo-browser", "app-xemacs/oo-browser", "app-xemacs/oo-browser", "app-xemacs/os-utils", "app-xemacs/os-utils", "app-xemacs/os-utils", "app-xemacs/pc", "app-xemacs/pc", "app-xemacs/pcl-cvs", "app-xemacs/pcl-cvs", "app-xemacs/pcl-cvs", "app-xemacs/pcomplete", "app-xemacs/pcomplete", "app-xemacs/pcomplete", "app-xemacs/perl-modes", "app-xemacs/perl-modes", "app-xemacs/perl-modes", "app-xemacs/pgg", "app-xemacs/pgg", "app-xemacs/pgg", "app-xemacs/prog-modes", "app-xemacs/prog-modes", "app-xemacs/prog-modes", "app-xemacs/prog-modes", "app-xemacs/ps-print", "app-xemacs/ps-print", "app-xemacs/ps-print", "app-xemacs/psgml-dtds", "app-xemacs/psgml-dtds", "app-xemacs/psgml", "app-xemacs/psgml", "app-xemacs/psgml", "app-xemacs/python-modes", "app-xemacs/python-modes", "app-xemacs/python-modes", "app-xemacs/re-builder", "app-xemacs/re-builder", "app-xemacs/reftex", "app-xemacs/reftex", "app-xemacs/riece", "app-xemacs/riece", "app-xemacs/rmail", "app-xemacs/rmail", "app-xemacs/ruby-modes", "app-xemacs/ruby-modes", "app-xemacs/ruby-modes", "app-xemacs/sasl", "app-xemacs/sasl", "app-xemacs/scheme", "app-xemacs/scheme", "app-xemacs/scheme", "app-xemacs/semantic", "app-xemacs/sgml", "app-xemacs/sgml", "app-xemacs/sh-script", "app-xemacs/sh-script", "app-xemacs/sh-script", "app-xemacs/sieve", "app-xemacs/sieve", "app-xemacs/skk", "app-xemacs/skk", "app-xemacs/skk", "app-xemacs/slider", "app-xemacs/slider", "app-xemacs/slider", "app-xemacs/sml-mode", "app-xemacs/sml-mode", "app-xemacs/sounds-au", "app-xemacs/sounds-au", "app-xemacs/sounds-wav", "app-xemacs/sounds-wav", "app-xemacs/speedbar", "app-xemacs/speedbar", "app-xemacs/speedbar", "app-xemacs/strokes", "app-xemacs/strokes", "app-xemacs/sun", "app-xemacs/sun", "app-xemacs/supercite", "app-xemacs/supercite", "app-xemacs/texinfo", "app-xemacs/texinfo", "app-xemacs/text-modes", "app-xemacs/text-modes", "app-xemacs/text-modes", "app-xemacs/textools", "app-xemacs/textools", "app-xemacs/time", "app-xemacs/time", "app-xemacs/time", "app-xemacs/tm", "app-xemacs/tm", "app-xemacs/tm", "app-xemacs/tooltalk", "app-xemacs/tooltalk", "app-xemacs/tpu", "app-xemacs/tpu", "app-xemacs/tramp", "app-xemacs/tramp", "app-xemacs/vc-cc", "app-xemacs/vc-cc", "app-xemacs/vc", "app-xemacs/vc", "app-xemacs/vc", "app-xemacs/vhdl", "app-xemacs/vhdl", "app-xemacs/view-process", "app-xemacs/view-process", "app-xemacs/viper", "app-xemacs/viper", "app-xemacs/viper", "app-xemacs/vm", "app-xemacs/vm", "app-xemacs/vm", "app-xemacs/w3", "app-xemacs/w3", "app-xemacs/w3", "app-xemacs/w3", "app-xemacs/x-symbol", "app-xemacs/x-symbol", "app-xemacs/x-symbol", "app-xemacs/xemacs-base", "app-xemacs/xemacs-base", "app-xemacs/xemacs-base", "app-xemacs/xemacs-base", "app-xemacs/xemacs-base", "app-xemacs/xemacs-devel", "app-xemacs/xemacs-devel", "app-xemacs/xemacs-devel", "app-xemacs/xemacs-eterm", "app-xemacs/xemacs-eterm", "app-xemacs/xemacs-eterm", "app-xemacs/xemacs-ispell", "app-xemacs/xemacs-ispell", "app-xemacs/xemacs-packages-all", "app-xemacs/xetla", "app-xemacs/xlib", "app-xemacs/xlib", "app-xemacs/xslide", "app-xemacs/xslide", "app-xemacs/xslt-process", "app-xemacs/xwem", "app-xemacs/xwem", "app-xemacs/xwem", "app-xemacs/xwem", "app-xemacs/zenirc", "app-xemacs/zenirc", "dev-ada/asis", "dev-ada/aunit", "dev-ada/aunit", "dev-ada/aws", "dev-ada/aws", "dev-ada/aws", "dev-ada/aws", "dev-ada/aws", "dev-ada/gnat-suite-bin", "dev-ada/gnat-suite-bin", "dev-ada/gnat_util", "dev-ada/gnat_util", "dev-ada/gnat_util", "dev-ada/gnatcoll-bindings", "dev-ada/gnatcoll-bindings", "dev-ada/gnatcoll-bindings", "dev-ada/gnatcoll-core", "dev-ada/gnatcoll-core", "dev-ada/gnatcoll-core", "dev-ada/gnatmem", "dev-ada/gnatmem", "dev-ada/gnatmem", "dev-ada/gnatsymbolize", "dev-ada/gnatsymbolize", "dev-ada/gnatsymbolize", "dev-ada/gprbuild", "dev-ada/gprbuild", "dev-ada/gprbuild", "dev-ada/gtkada", "dev-ada/gtkada", "dev-ada/gtkada", "dev-ada/gtkada", "dev-ada/libgpr", "dev-ada/libgpr", "dev-ada/libgpr", "dev-ada/xmlada", "dev-ada/xmlada", "dev-cpp/ETL", "dev-cpp/abseil-cpp", "dev-cpp/abseil-cpp", "dev-cpp/abseil-cpp", "dev-cpp/abseil-cpp", "dev-cpp/aixlog", "dev-cpp/aixlog", "dev-cpp/amqp-cpp", "dev-cpp/antlr-cpp", "dev-cpp/antlr-cpp", "dev-cpp/argparse", "dev-cpp/asio", "dev-cpp/asio", "dev-cpp/asio", "dev-cpp/asio", "dev-cpp/atkmm", "dev-cpp/atkmm", "dev-cpp/benchmark", "dev-cpp/benchmark", "dev-cpp/benchmark", "dev-cpp/cairomm", "dev-cpp/cairomm", "dev-cpp/catch", "dev-cpp/catch", "dev-cpp/catch", "dev-cpp/catch", "dev-cpp/catch", "dev-cpp/clucene", "dev-cpp/commoncpp2", "dev-cpp/cpp-hocon", "dev-cpp/cpp-taskflow", "dev-cpp/ctemplate", "dev-cpp/eigen", "dev-cpp/eigen", "dev-cpp/gconfmm", "dev-cpp/gflags", "dev-cpp/gflags", "dev-cpp/gflags", "dev-cpp/glibmm", "dev-cpp/glibmm", "dev-cpp/glog", "dev-cpp/glog", "dev-cpp/gstreamermm", "dev-cpp/gtest", "dev-cpp/gtest", "dev-cpp/gtkmm", "dev-cpp/gtkmm", "dev-cpp/gtkmm", "dev-cpp/gtksourceviewmm", "dev-cpp/htmlcxx", "dev-cpp/kokkos", "dev-cpp/kokkos", "dev-cpp/libcmis", "dev-cpp/libcmis", "dev-cpp/libglademm", "dev-cpp/libgnomecanvasmm", "dev-cpp/libjson-rpc-cpp", "dev-cpp/libmcpp", "dev-cpp/libodb-sqlite", "dev-cpp/libodb", "dev-cpp/libxmlpp", "dev-cpp/libxmlpp", "dev-cpp/lucene++", "dev-cpp/metslib", "dev-cpp/mm-common", "dev-cpp/ms-gsl", "dev-cpp/ms-gsl", "dev-cpp/muParser", "dev-cpp/nlohmann_json", "dev-cpp/nlohmann_json", "dev-cpp/notcurses", "dev-cpp/pangomm", "dev-cpp/pangomm", "dev-cpp/picojson", "dev-cpp/pngpp", "dev-cpp/popl", "dev-cpp/popl", "dev-cpp/prometheus-cpp", "dev-cpp/prometheus-cpp", "dev-cpp/pstreams", "dev-cpp/pystring", "dev-cpp/random123", "dev-cpp/range-v3", "dev-cpp/range-v3", "dev-cpp/robin-hood-hashing", "dev-cpp/robin-map", "dev-cpp/robin-map", "dev-cpp/rttr", "dev-cpp/sol2", "dev-cpp/sourcetrail", "dev-cpp/sparsehash", "dev-cpp/string-theory", "dev-cpp/string-theory", "dev-cpp/tbb", "dev-cpp/tbb", "dev-cpp/tbb", "dev-cpp/tclap", "dev-cpp/tree", "dev-cpp/tree", "dev-cpp/waylandpp", "dev-cpp/waylandpp", "dev-cpp/websocketpp", "dev-cpp/websocketpp", "dev-cpp/yaml-cpp", "dev-cpp/yaml-cpp", "dev-cpp/yaml-cpp", "dev-db/apgdiff", "dev-db/barman", "dev-db/bucardo", "dev-db/cdb", "dev-db/citus", "dev-db/citus", "dev-db/citus", "dev-db/citus", "dev-db/citus", "dev-db/citus", "dev-db/cockroach", "dev-db/cockroach", "dev-db/cpp-driver", "dev-db/datadraw", "dev-db/db-je", "dev-db/etcd", "dev-db/etcd", "dev-db/etcd", "dev-db/etcd", "dev-db/etcd", "dev-db/firebird", "dev-db/freetds", "dev-db/gigabase", "dev-db/go-etcd", "dev-db/gqlplus", "dev-db/henplus", "dev-db/hsqldb", "dev-db/influxdb", "dev-db/influxdb", "dev-db/influxdb", "dev-db/influxdb", "dev-db/influxdb", "dev-db/innotop", "dev-db/innotop", "dev-db/kdb", "dev-db/kyotocabinet", "dev-db/libdbi-drivers", "dev-db/libdbi", "dev-db/libiodbc", "dev-db/libiodbc", "dev-db/libiodbc", "dev-db/libodbc++", "dev-db/libzdb", "dev-db/libzdb", "dev-db/lmdb++", "dev-db/lmdb++", "dev-db/lmdb", "dev-db/lmdb", "dev-db/m17n-db", "dev-db/m17n-db", "dev-db/mariadb-connector-c", "dev-db/mariadb-connector-c", "dev-db/mariadb-connector-c", "dev-db/mariadb-connector-c", "dev-db/mariadb-connector-odbc", "dev-db/mariadb-connector-odbc", "dev-db/mariadb-connector-odbc", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mariadb", "dev-db/mongodb", "dev-db/mongodb", "dev-db/mongodb", "dev-db/mongodb", "dev-db/mongodb", "dev-db/mongodb", "dev-db/mtop", "dev-db/mycli", "dev-db/mycli", "dev-db/mycli", "dev-db/mydumper", "dev-db/mydumper", "dev-db/mydumper", "dev-db/myodbc", "dev-db/myodbc", "dev-db/myodbc", "dev-db/myodbc", "dev-db/mysql++", "dev-db/mysql++", "dev-db/mysql-cluster", "dev-db/mysql-cluster", "dev-db/mysql-cluster", "dev-db/mysql-connector-c++", "dev-db/mysql-connector-c++", "dev-db/mysql-connector-c++", "dev-db/mysql-connector-c++", "dev-db/mysql-connector-c++", "dev-db/mysql-connector-c++", "dev-db/mysql-connector-c++", "dev-db/mysql-connector-c++", "dev-db/mysql-connector-c++", "dev-db/mysql-connector-c", "dev-db/mysql-connector-c", "dev-db/mysql-connector-c", "dev-db/mysql-connector-c", "dev-db/mysql-connector-c", "dev-db/mysql-init-scripts", "dev-db/mysql-super-smack", "dev-db/mysql-workbench", "dev-db/mysql-workbench", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysql", "dev-db/mysqltuner", "dev-db/mytop", "dev-db/ocp", "dev-db/ocp", "dev-db/ocp", "dev-db/opendbx", "dev-db/opendbx", "dev-db/opendbx", "dev-db/opendbx", "dev-db/oracle-instantclient-basic", "dev-db/oracle-instantclient-jdbc", "dev-db/oracle-instantclient-odbc", "dev-db/oracle-instantclient-sqlplus", "dev-db/oracle-instantclient", "dev-db/oracle-instantclient", "dev-db/oracle-instantclient", "dev-db/oracle-instantclient", "dev-db/oracle-instantclient", "dev-db/oracle-instantclient", "dev-db/oracle-instantclient", "dev-db/percona-server", "dev-db/percona-server", "dev-db/percona-server", "dev-db/percona-toolkit", "dev-db/percona-toolkit", "dev-db/percona-toolkit", "dev-db/percona-toolkit", "dev-db/percona-toolkit", "dev-db/percona-toolkit", "dev-db/percona-toolkit", "dev-db/percona-xtrabackup-bin", "dev-db/percona-xtrabackup", "dev-db/percona-xtrabackup", "dev-db/percona-xtrabackup", "dev-db/percona-xtrabackup", "dev-db/percona-xtrabackup", "dev-db/percona-xtrabackup", "dev-db/percona-xtrabackup", "dev-db/percona-xtrabackup", "dev-db/pgFormatter", "dev-db/pg_activity", "dev-db/pg_top", "dev-db/pgadmin4", "dev-db/pgadmin4", "dev-db/pgagent", "dev-db/pgbadger", "dev-db/pgbadger", "dev-db/pgbadger", "dev-db/pgbadger", "dev-db/pgbouncer", "dev-db/pgcli", "dev-db/pgmemcache", "dev-db/pgmodeler", "dev-db/pgpool2", "dev-db/pgpool2", "dev-db/pgpool2", "dev-db/pgrouting", "dev-db/pgrouting", "dev-db/pgrouting", "dev-db/pgtap", "dev-db/pgtap", "dev-db/pgxnclient", "dev-db/pgxnclient", "dev-db/phpmyadmin", "dev-db/phpmyadmin", "dev-db/phpmyadmin", "dev-db/phpmyadmin", "dev-db/phppgadmin", "dev-db/phppgadmin", "dev-db/plr", "dev-db/plr", "dev-db/postgis", "dev-db/postgis", "dev-db/postgis", "dev-db/postgis", "dev-db/postgis", "dev-db/postgis", "dev-db/postgresql", "dev-db/postgresql", "dev-db/postgresql", "dev-db/postgresql", "dev-db/postgresql", "dev-db/postgresql", "dev-db/postgresql", "dev-db/postgresql", "dev-db/postgresql", "dev-db/postgresql", "dev-db/postgresql", "dev-db/postgresql", "dev-db/pspg", "dev-db/pspg", "dev-db/pspg", "dev-db/psqlodbc", "dev-db/psqlodbc", "dev-db/qdbm", "dev-db/qdbm", "dev-db/qt5-sqlcipher", "dev-db/redis", "dev-db/redis", "dev-db/redis", "dev-db/repmgr", "dev-db/rqlite", "dev-db/sadisplay", "dev-db/slony1", "dev-db/spatialite-tools", "dev-db/spatialite-tools", "dev-db/spatialite", "dev-db/spatialite", "dev-db/sqlcipher", "dev-db/sqlcipher", "dev-db/sqlcl-bin", "dev-db/sqldeveloper", "dev-db/sqldeveloper", "dev-db/sqlite", "dev-db/sqlite", "dev-db/sqlite", "dev-db/sqlite", "dev-db/sqlite", "dev-db/sqlite", "dev-db/sqlite", "dev-db/sqlitebrowser", "dev-db/sqlitebrowser", "dev-db/sqlitebrowser", "dev-db/sqliteman", "dev-db/sqlitestudio", "dev-db/textsearch_ja", "dev-db/timescaledb", "dev-db/timescaledb", "dev-db/timescaledb", "dev-db/timescaledb", "dev-db/timescaledb", "dev-db/timescaledb", "dev-db/tinycdb", "dev-db/tinycdb", "dev-db/tokyocabinet", "dev-db/tora", "dev-db/tora", "dev-db/unixODBC", "dev-db/vsqlite++", "dev-db/wxsqlite3", "dev-dotnet/dbus-sharp-glib", "dev-dotnet/dbus-sharp-glib", "dev-dotnet/dbus-sharp", "dev-dotnet/dbus-sharp", "dev-dotnet/dotnet-sdk-bin", "dev-dotnet/libgdiplus", "dev-dotnet/libgdiplus", "dev-dotnet/monocalendar", "dev-dotnet/ndesk-dbus-glib", "dev-dotnet/ndesk-dbus", "dev-dotnet/pe-format", "dev-dotnet/pe-format", "dev-embedded/arduino-builder", "dev-embedded/arduino-builder", "dev-embedded/arduino-builder", "dev-embedded/arduino-ctags", "dev-embedded/arduino-listserialportsc", "dev-embedded/arduino", "dev-embedded/arduino", "dev-embedded/avarice", "dev-embedded/avr-libc", "dev-embedded/avra", "dev-embedded/avrdude", "dev-embedded/avrdude", "dev-embedded/cpik", "dev-embedded/dc-tool-ip", "dev-embedded/dfu-programmer", "dev-embedded/esptool", "dev-embedded/esptool", "dev-embedded/freaklabs-boards", "dev-embedded/gnusim8085", "dev-embedded/gpsim", "dev-embedded/gputils", "dev-embedded/icdprog", "dev-embedded/include", "dev-embedded/jal", "dev-embedded/kobs-ng", "dev-embedded/libdisasm", "dev-embedded/libftd2xx", "dev-embedded/libftdi", "dev-embedded/libftdi", "dev-embedded/libftdi", "dev-embedded/libftdi", "dev-embedded/libftdi", "dev-embedded/libjaylink", "dev-embedded/libjaylink", "dev-embedded/lpc21isp", "dev-embedded/mcu8051ide", "dev-embedded/mspdebug", "dev-embedded/nodemcu-uploader", "dev-embedded/openocd", "dev-embedded/openocd", "dev-embedded/openocd", "dev-embedded/parapin", "dev-embedded/parapin", "dev-embedded/picasm", "dev-embedded/picp", "dev-embedded/picprog", "dev-embedded/pista", "dev-embedded/pk2cmd", "dev-embedded/platformio", "dev-embedded/ponyprog", "dev-embedded/powersoftplus-libftdi", "dev-embedded/rpi-eeprom", "dev-embedded/rpi-eeprom", "dev-embedded/sdcc", "dev-embedded/sdcc", "dev-embedded/sdcc", "dev-embedded/smdk-dltool", "dev-embedded/srecord", "dev-embedded/stlink", "dev-embedded/stlink", "dev-embedded/stm32flash", "dev-embedded/sunxi-tools", "dev-embedded/u-boot-tools", "dev-embedded/u-boot-tools", "dev-embedded/uisp", "dev-embedded/upslug2", "dev-embedded/urjtag", "dev-embedded/urjtag", "dev-embedded/usbprog", "dev-embedded/xa", "dev-embedded/zmac", "dev-erlang/base64url", "dev-erlang/cache_tab", "dev-erlang/cache_tab", "dev-erlang/eimp", "dev-erlang/eimp", "dev-erlang/epam", "dev-erlang/epam", "dev-erlang/epam", "dev-erlang/eredis", "dev-erlang/eredis", "dev-erlang/esip", "dev-erlang/esip", "dev-erlang/ezlib", "dev-erlang/ezlib", "dev-erlang/fast_tls", "dev-erlang/fast_tls", "dev-erlang/fast_xml", "dev-erlang/fast_xml", "dev-erlang/fast_yaml", "dev-erlang/fast_yaml", "dev-erlang/fast_yaml", "dev-erlang/goldrush", "dev-erlang/goldrush", "dev-erlang/hamcrest", "dev-erlang/iconv", "dev-erlang/idna", "dev-erlang/jiffy", "dev-erlang/jiffy", "dev-erlang/jose", "dev-erlang/jose", "dev-erlang/lager", "dev-erlang/lager", "dev-erlang/lager", "dev-erlang/luerl", "dev-erlang/luerl", "dev-erlang/meck", "dev-erlang/meck", "dev-erlang/meck", "dev-erlang/mqtree", "dev-erlang/mqtree", "dev-erlang/p1_acme", "dev-erlang/p1_acme", "dev-erlang/p1_mysql", "dev-erlang/p1_mysql", "dev-erlang/p1_oauth2", "dev-erlang/p1_oauth2", "dev-erlang/p1_pgsql", "dev-erlang/p1_pgsql", "dev-erlang/p1_pgsql", "dev-erlang/p1_utils", "dev-erlang/p1_utils", "dev-erlang/p1_xmlrpc", "dev-erlang/pkix", "dev-erlang/pkix", "dev-erlang/proper", "dev-erlang/proper", "dev-erlang/protobuffs", "dev-erlang/riak_pb", "dev-erlang/riakc", "dev-erlang/sqlite3", "dev-erlang/sqlite3", "dev-erlang/stringprep", "dev-erlang/stringprep", "dev-erlang/stun", "dev-erlang/stun", "dev-erlang/xmpp", "dev-erlang/xmpp", "dev-erlang/yconf", "dev-erlang/yconf", "dev-erlang/yconf", "dev-games/KXL", "dev-games/aseprite", "dev-games/aseprite", "dev-games/cardpics", "dev-games/cegui", "dev-games/clanlib", "dev-games/clanlib", "dev-games/clanlib", "dev-games/clanlib", "dev-games/flatzebra", "dev-games/freecell-solver", "dev-games/goatee", "dev-games/guichan", "dev-games/hawknl", "dev-games/hdl_dump", "dev-games/higan-ananke", "dev-games/irrlicht-headers", "dev-games/irrlicht", "dev-games/libmaitretarot", "dev-games/libmt_client", "dev-games/libnw", "dev-games/libsmacker", "dev-games/mercator", "dev-games/mygui", "dev-games/mygui", "dev-games/newton", "dev-games/ode", "dev-games/ode", "dev-games/ode", "dev-games/ogre", "dev-games/ogre", "dev-games/ogre", "dev-games/ois", "dev-games/ois", "dev-games/ois", "dev-games/openscenegraph-openmw", "dev-games/openscenegraph-openmw", "dev-games/openscenegraph-qt", "dev-games/openscenegraph", "dev-games/openscenegraph", "dev-games/paklib", "dev-games/physfs", "dev-games/physfs", "dev-games/physfs", "dev-games/poker-eval", "dev-games/ps2-packer", "dev-games/quake4-sdk", "dev-games/recastnavigation", "dev-games/simgear", "dev-games/simgear", "dev-games/t4k-common", "dev-games/tiled", "dev-games/tiled", "dev-games/tiled", "dev-games/wfmath", "dev-games/freesolid", "dev-go/act", "dev-go/blackfriday", "dev-go/blackfriday", "dev-go/blackfriday", "dev-go/coveraggregator", "dev-go/delve", "dev-go/fuzzy", "dev-go/fuzzy", "dev-go/get-ego-vendor", "dev-go/go-bindata-assetfs", "dev-go/go-bindata", "dev-go/go-colortext", "dev-go/go-eapache-queue", "dev-go/go-eapache-queue", "dev-go/go-license-detector", "dev-go/go-licenses", "dev-go/go-licenses", "dev-go/go-md2man", "dev-go/go-snappy", "dev-go/go-snappy", "dev-go/go-snappy", "dev-go/go-spew", "dev-go/go-spew", "dev-go/go-sqlite3", "dev-go/go-sqlite3", "dev-go/go-text", "dev-go/go-text", "dev-go/go-tools", "dev-go/go-tour", "dev-go/godebug-pretty", "dev-go/gogo-protobuf", "dev-go/golicense", "dev-go/golint", "dev-go/gom", "dev-go/gopls", "dev-go/goversion", "dev-go/gox", "dev-go/licenseclassifier", "dev-go/licenseclassifier", "dev-go/qr", "dev-go/sanitized-anchor-name", "dev-go/sanitized-anchor-name", "dev-go/sanitized-anchor-name", "dev-go/twofactor", "dev-haskell/abstract-deque-tests", "dev-haskell/abstract-deque", "dev-haskell/abstract-par", "dev-haskell/ac-ppm", "dev-haskell/adjunctions", "dev-haskell/aeson-compat", "dev-haskell/aeson-diff", "dev-haskell/aeson-pretty", "dev-haskell/aeson-qq", "dev-haskell/aeson", "dev-haskell/alex-tools", "dev-haskell/alex", "dev-haskell/alsa-core", "dev-haskell/alsa-mixer", "dev-haskell/alut", "dev-haskell/annotated-wl-pprint", "dev-haskell/ansi-terminal", "dev-haskell/ansi-wl-pprint", "dev-haskell/appar", "dev-haskell/argparser", "dev-haskell/arithmoi", "dev-haskell/arrows", "dev-haskell/ascii-progress", "dev-haskell/asn1-encoding", "dev-haskell/asn1-parse", "dev-haskell/asn1-types", "dev-haskell/async", "dev-haskell/atomic-primops", "dev-haskell/attoparsec-conduit", "dev-haskell/attoparsec-enumerator", "dev-haskell/attoparsec-iso8601", "dev-haskell/attoparsec", "dev-haskell/authenticate-oauth", "dev-haskell/authenticate", "dev-haskell/auto-update", "dev-haskell/aws", "dev-haskell/base-compat-batteries", "dev-haskell/base-compat", "dev-haskell/base-noprelude", "dev-haskell/base-orphans", "dev-haskell/base-prelude", "dev-haskell/base-unicode-symbols", "dev-haskell/base16-bytestring", "dev-haskell/base64-bytestring", "dev-haskell/basement", "dev-haskell/basic-prelude", "dev-haskell/bencode", "dev-haskell/bifunctors", "dev-haskell/binary-instances", "dev-haskell/binary-orphans", "dev-haskell/binary-tagged", "dev-haskell/binary", "dev-haskell/biocore", "dev-haskell/biofasta", "dev-haskell/biosff", "dev-haskell/bitarray", "dev-haskell/bits-atomic", "dev-haskell/bitwise", "dev-haskell/blaze-builder-conduit", "dev-haskell/blaze-builder", "dev-haskell/blaze-html", "dev-haskell/blaze-markup", "dev-haskell/blaze-textual", "dev-haskell/bloomfilter", "dev-haskell/boolean", "dev-haskell/boundedchan", "dev-haskell/boxes", "dev-haskell/bsb-http-chunked", "dev-haskell/byteable", "dev-haskell/bytedump", "dev-haskell/byteorder", "dev-haskell/bytes", "dev-haskell/bytestring-builder", "dev-haskell/bytestring-handle", "dev-haskell/bytestring-mmap", "dev-haskell/bytestring-show", "dev-haskell/bzlib", "dev-haskell/c2hs", "dev-haskell/c2hs", "dev-haskell/cabal-doctest", "dev-haskell/cabal-install", "dev-haskell/cabal", "dev-haskell/cairo", "dev-haskell/cairo", "dev-haskell/call-stack", "dev-haskell/call-stack", "dev-haskell/casa-client", "dev-haskell/casa-types", "dev-haskell/case-insensitive", "dev-haskell/cassava", "dev-haskell/cereal-vector", "dev-haskell/cereal", "dev-haskell/cgi", "dev-haskell/charset", "dev-haskell/chaselev-deque", "dev-haskell/chasingbottoms", "dev-haskell/chell", "dev-haskell/chimera", "dev-haskell/chunked-data", "dev-haskell/cipher-aes", "dev-haskell/cipher-aes128", "dev-haskell/cipher-camellia", "dev-haskell/cipher-des", "dev-haskell/cipher-rc4", "dev-haskell/citeproc", "dev-haskell/classy-prelude", "dev-haskell/clientsession", "dev-haskell/clock", "dev-haskell/cmark-gfm", "dev-haskell/cmark", "dev-haskell/cmdargs", "dev-haskell/code-page", "dev-haskell/colour", "dev-haskell/commonmark-extensions", "dev-haskell/commonmark-pandoc", "dev-haskell/commonmark", "dev-haskell/comonad-transformers", "dev-haskell/comonad", "dev-haskell/comonads-fd", "dev-haskell/concurrent-extra", "dev-haskell/concurrent-output", "dev-haskell/conduit-combinators", "dev-haskell/conduit-extra", "dev-haskell/conduit", "dev-haskell/configfile", "dev-haskell/configurator", "dev-haskell/connection", "dev-haskell/constraints", "dev-haskell/contravariant-extras", "dev-haskell/contravariant", "dev-haskell/control-monad-loop", "dev-haskell/convertible", "dev-haskell/cookie", "dev-haskell/cpphs", "dev-haskell/cprng-aes", "dev-haskell/cpu", "dev-haskell/criterion-measurement", "dev-haskell/criterion", "dev-haskell/crypto-api-tests", "dev-haskell/crypto-api", "dev-haskell/crypto-cipher-tests", "dev-haskell/crypto-cipher-types", "dev-haskell/crypto-numbers", "dev-haskell/crypto-pubkey-types", "dev-haskell/crypto-pubkey", "dev-haskell/crypto-random-api", "dev-haskell/crypto-random", "dev-haskell/crypto", "dev-haskell/cryptohash-conduit", "dev-haskell/cryptohash-cryptoapi", "dev-haskell/cryptohash-md5", "dev-haskell/cryptohash-sha1", "dev-haskell/cryptohash-sha256", "dev-haskell/cryptohash", "dev-haskell/cryptonite-conduit", "dev-haskell/cryptonite", "dev-haskell/css-text", "dev-haskell/curl", "dev-haskell/data-accessor", "dev-haskell/data-binary-ieee754", "dev-haskell/data-default-class", "dev-haskell/data-default-instances-base", "dev-haskell/data-default-instances-containers", "dev-haskell/data-default-instances-dlist", "dev-haskell/data-default-instances-old-locale", "dev-haskell/data-default", "dev-haskell/data-endian", "dev-haskell/data-hash", "dev-haskell/data-ordlist", "dev-haskell/dataenc", "dev-haskell/date-cache", "dev-haskell/dav", "dev-haskell/dbus", "dev-haskell/dec", "dev-haskell/deepseq-generics", "dev-haskell/dense-linear-algebra", "dev-haskell/deriving-compat", "dev-haskell/dictionary-sharing", "dev-haskell/diff", "dev-haskell/digest", "dev-haskell/disk-free-space", "dev-haskell/distributive", "dev-haskell/djinn-ghc", "dev-haskell/djinn-lib", "dev-haskell/dlist-instances", "dev-haskell/dlist", "dev-haskell/dns", "dev-haskell/doclayout", "dev-haskell/doctemplates", "dev-haskell/doctemplates", "dev-haskell/doctest", "dev-haskell/double-conversion", "dev-haskell/drbg", "dev-haskell/easy-file", "dev-haskell/echo", "dev-haskell/ed25519", "dev-haskell/edisonapi", "dev-haskell/edisoncore", "dev-haskell/edit-distance-vector", "dev-haskell/edit-distance", "dev-haskell/editline", "dev-haskell/either", "dev-haskell/ekg-core", "dev-haskell/ekg-json", "dev-haskell/ekg", "dev-haskell/email-validate", "dev-haskell/emojis", "dev-haskell/enclosed-exceptions", "dev-haskell/entropy", "dev-haskell/enumerator", "dev-haskell/equivalence", "dev-haskell/erf", "dev-haskell/errorcall-eq-instance", "dev-haskell/errors", "dev-haskell/esqueleto", "dev-haskell/exact-pi", "dev-haskell/exceptions", "dev-haskell/executable-path", "dev-haskell/extensible-exceptions", "dev-haskell/extra", "dev-haskell/fail", "dev-haskell/failure", "dev-haskell/fast-logger", "dev-haskell/fclabels", "dev-haskell/fdo-notify", "dev-haskell/feed", "dev-haskell/fgl-arbitrary", "dev-haskell/fgl", "dev-haskell/file-embed", "dev-haskell/file-location", "dev-haskell/filelock", "dev-haskell/filemanip", "dev-haskell/filepath-bytestring", "dev-haskell/filepattern", "dev-haskell/filestore", "dev-haskell/findbin", "dev-haskell/fingertree", "dev-haskell/fixed", "dev-haskell/fmlist", "dev-haskell/foldl", "dev-haskell/foundation", "dev-haskell/free", "dev-haskell/fsnotify", "dev-haskell/generic-deriving", "dev-haskell/generics-sop", "dev-haskell/geniplate-mirror", "dev-haskell/genvalidity-hspec", "dev-haskell/genvalidity-property", "dev-haskell/genvalidity", "dev-haskell/getopt-generics", "dev-haskell/ghc-lib-parser-ex", "dev-haskell/ghc-lib-parser", "dev-haskell/ghc-paths", "dev-haskell/gio", "dev-haskell/git-lfs", "dev-haskell/git", "dev-haskell/githash", "dev-haskell/gitrev", "dev-haskell/glib", "dev-haskell/glob", "dev-haskell/gluraw", "dev-haskell/glut", "dev-haskell/gnuidn", "dev-haskell/gnutls", "dev-haskell/graphviz", "dev-haskell/groupoids", "dev-haskell/gsasl", "dev-haskell/gtk", "dev-haskell/gtk2hs-buildtools", "dev-haskell/gtk3", "dev-haskell/hackage-security", "dev-haskell/hackage-security", "dev-haskell/haddock-api", "dev-haskell/haddock-api", "dev-haskell/haddock-library", "dev-haskell/haddock-library", "dev-haskell/haddock", "dev-haskell/haddock", "dev-haskell/hakyll", "dev-haskell/half", "dev-haskell/hamlet", "dev-haskell/happstack-server", "dev-haskell/happy", "dev-haskell/harp", "dev-haskell/hashable-time", "dev-haskell/hashable", "dev-haskell/hashtables", "dev-haskell/haskeline", "dev-haskell/haskell-lexer", "dev-haskell/haskell-src-exts-util", "dev-haskell/haskell-src-exts", "dev-haskell/haskell-src-exts", "dev-haskell/haskell-src-meta", "dev-haskell/haskell-src", "dev-haskell/haxml", "dev-haskell/hcg-minus", "dev-haskell/hcodecs", "dev-haskell/hdbc-mysql", "dev-haskell/hdbc-odbc", "dev-haskell/hdbc-postgresql", "dev-haskell/hdbc-sqlite3", "dev-haskell/hdbc", "dev-haskell/heaps", "dev-haskell/hedgehog", "dev-haskell/hex", "dev-haskell/hexpat", "dev-haskell/hi-file-parser", "dev-haskell/highlighting-kate", "dev-haskell/hinotify", "dev-haskell/hit", "dev-haskell/hjsmin", "dev-haskell/hlint", "dev-haskell/hoauth2", "dev-haskell/hostname", "dev-haskell/hourglass", "dev-haskell/hpack", "dev-haskell/hps", "dev-haskell/hs-bibutils", "dev-haskell/hs3", "dev-haskell/hsb2hs", "dev-haskell/hscolour", "dev-haskell/hslogger", "dev-haskell/hslua-module-path", "dev-haskell/hslua-module-system", "dev-haskell/hslua-module-text", "dev-haskell/hslua-module-text", "dev-haskell/hslua", "dev-haskell/hslua", "dev-haskell/hslua", "dev-haskell/hsopenssl", "dev-haskell/hspec-contrib", "dev-haskell/hspec-core", "dev-haskell/hspec-discover", "dev-haskell/hspec-expectations", "dev-haskell/hspec-meta", "dev-haskell/hspec-smallcheck", "dev-haskell/hspec", "dev-haskell/hsql-mysql", "dev-haskell/hsql-mysql", "dev-haskell/hsql-odbc", "dev-haskell/hsql-sqlite3", "dev-haskell/hsql", "dev-haskell/hstringtemplate", "dev-haskell/hsyaml-aeson", "dev-haskell/hsyaml", "dev-haskell/htf", "dev-haskell/html-conduit", "dev-haskell/html", "dev-haskell/http-api-data", "dev-haskell/http-attoparsec", "dev-haskell/http-client-conduit", "dev-haskell/http-client-multipart", "dev-haskell/http-client-restricted", "dev-haskell/http-client-tls", "dev-haskell/http-client", "dev-haskell/http-common", "dev-haskell/http-conduit", "dev-haskell/http-date", "dev-haskell/http-download", "dev-haskell/http-reverse-proxy", "dev-haskell/http-streams", "dev-haskell/http-types", "dev-haskell/http", "dev-haskell/http2", "dev-haskell/httpd-shed", "dev-haskell/hunit", "dev-haskell/hunit", "dev-haskell/hunit", "dev-haskell/hxt-charproperties", "dev-haskell/hxt-regex-xmlschema", "dev-haskell/hxt-unicode", "dev-haskell/hxt", "dev-haskell/icalendar", "dev-haskell/iconv", "dev-haskell/idiii", "dev-haskell/idna", "dev-haskell/ieee754", "dev-haskell/ifelse", "dev-haskell/indexed-traversable", "dev-haskell/indexed-traversable", "dev-haskell/infer-license", "dev-haskell/inspection-testing", "dev-haskell/integer-logarithms", "dev-haskell/integer-roots", "dev-haskell/interpolate", "dev-haskell/invariant", "dev-haskell/io-streams-haproxy", "dev-haskell/io-streams", "dev-haskell/iproute", "dev-haskell/ipynb", "dev-haskell/iwlib", "dev-haskell/jira-wiki-markup", "dev-haskell/jira-wiki-markup", "dev-haskell/js-flot", "dev-haskell/js-jquery", "dev-haskell/json", "dev-haskell/juicypixels", "dev-haskell/kan-extensions", "dev-haskell/keys", "dev-haskell/language-bash", "dev-haskell/language-c", "dev-haskell/language-c", "dev-haskell/language-c", "dev-haskell/language-css", "dev-haskell/language-dot", "dev-haskell/language-ecmascript", "dev-haskell/language-glsl", "dev-haskell/language-haskell-extract", "dev-haskell/language-javascript", "dev-haskell/language-lua", "dev-haskell/language-python", "dev-haskell/lazysmallcheck", "dev-haskell/lcs", "dev-haskell/leancheck", "dev-haskell/lens-aeson", "dev-haskell/lens-family-core", "dev-haskell/lens-family-th", "dev-haskell/lens-family", "dev-haskell/lens-simple", "dev-haskell/lens", "dev-haskell/lhs2tex", "dev-haskell/libmpd", "dev-haskell/libxml-sax", "dev-haskell/libxml", "dev-haskell/libyaml", "dev-haskell/lifted-async", "dev-haskell/lifted-base", "dev-haskell/linear", "dev-haskell/linear", "dev-haskell/list", "dev-haskell/listlike", "dev-haskell/logging-facade", "dev-haskell/logict-state", "dev-haskell/logict", "dev-haskell/lrucache", "dev-haskell/lukko", "dev-haskell/maccatcher", "dev-haskell/magic", "dev-haskell/markdown-unlit", "dev-haskell/math-functions", "dev-haskell/megaparsec", "dev-haskell/memory", "dev-haskell/memotrie", "dev-haskell/mersenne-random-pure64", "dev-haskell/microlens-aeson", "dev-haskell/microlens-mtl", "dev-haskell/microlens-th", "dev-haskell/microlens", "dev-haskell/microstache", "dev-haskell/mime-mail", "dev-haskell/mime-types", "dev-haskell/mime", "dev-haskell/minisat", "dev-haskell/mintty", "dev-haskell/missingh", "dev-haskell/mmap", "dev-haskell/mmorph", "dev-haskell/mockery", "dev-haskell/mod", "dev-haskell/monad-control", "dev-haskell/monad-journal", "dev-haskell/monad-logger", "dev-haskell/monad-loops", "dev-haskell/monad-par-extras", "dev-haskell/monad-par", "dev-haskell/monad-unlift", "dev-haskell/monadcatchio-mtl", "dev-haskell/monadcatchio-transformers", "dev-haskell/monadlib", "dev-haskell/monadplus", "dev-haskell/monadrandom", "dev-haskell/monads-tf", "dev-haskell/mono-traversable-instances", "dev-haskell/mono-traversable", "dev-haskell/mountpoints", "dev-haskell/mtl-compat", "dev-haskell/mtl", "dev-haskell/multipart", "dev-haskell/murmur-hash", "dev-haskell/mustache", "dev-haskell/mutable-containers", "dev-haskell/mwc-random", "dev-haskell/mysql-simple", "dev-haskell/mysql", "dev-haskell/nanospec", "dev-haskell/nats", "dev-haskell/neat-interpolation", "dev-haskell/netlink", "dev-haskell/network-bsd", "dev-haskell/network-byte-order", "dev-haskell/network-conduit", "dev-haskell/network-data", "dev-haskell/network-info", "dev-haskell/network-multicast", "dev-haskell/network-uri", "dev-haskell/network-uri", "dev-haskell/network", "dev-haskell/network", "dev-haskell/network", "dev-haskell/network", "dev-haskell/network", "dev-haskell/network", "dev-haskell/newtype-generics", "dev-haskell/newtype", "dev-haskell/nonce", "dev-haskell/nonce", "dev-haskell/numinstances", "dev-haskell/numtype-dk", "dev-haskell/objectname", "dev-haskell/old-locale", "dev-haskell/old-time", "dev-haskell/only", "dev-haskell/open-browser", "dev-haskell/openal", "dev-haskell/opengl", "dev-haskell/openglraw", "dev-haskell/openssl-streams", "dev-haskell/options", "dev-haskell/optparse-applicative", "dev-haskell/optparse-simple", "dev-haskell/pandoc-citeproc", "dev-haskell/pandoc-types", "dev-haskell/pandoc-types", "dev-haskell/pango", "dev-haskell/pantry", "dev-haskell/parallel-io", "dev-haskell/parallel", "dev-haskell/parsec-numbers", "dev-haskell/parsec", "dev-haskell/parsec1", "dev-haskell/parser-combinators", "dev-haskell/parsers", "dev-haskell/path-io", "dev-haskell/path-pieces", "dev-haskell/path", "dev-haskell/patience", "dev-haskell/pcap", "dev-haskell/pcre-light", "dev-haskell/pem", "dev-haskell/persistent-mysql", "dev-haskell/persistent-postgresql", "dev-haskell/persistent-qq", "dev-haskell/persistent-sqlite", "dev-haskell/persistent-template", "dev-haskell/persistent-test", "dev-haskell/persistent", "dev-haskell/pgp-wordlist", "dev-haskell/pid1", "dev-haskell/pipes", "dev-haskell/pointed", "dev-haskell/polyparse", "dev-haskell/postgresql-libpq", "dev-haskell/postgresql-simple", "dev-haskell/pqueue", "dev-haskell/prelude-extras", "dev-haskell/preprocessor-tools", "dev-haskell/pretty-hex", "dev-haskell/pretty-show", "dev-haskell/prettyclass", "dev-haskell/prettyprinter-ansi-terminal", "dev-haskell/prettyprinter", "dev-haskell/primitive-addr", "dev-haskell/primitive", "dev-haskell/process-extras", "dev-haskell/profunctor-extras", "dev-haskell/profunctors", "dev-haskell/project-template", "dev-haskell/psqueue", "dev-haskell/psqueues", "dev-haskell/publicsuffixlist", "dev-haskell/punycode", "dev-haskell/puremd5", "dev-haskell/pwstore-fast", "dev-haskell/quickcheck-classes-base", "dev-haskell/quickcheck-classes", "dev-haskell/quickcheck-instances", "dev-haskell/quickcheck-io", "dev-haskell/quickcheck-unicode", "dev-haskell/quickcheck", "dev-haskell/random", "dev-haskell/ranges", "dev-haskell/raw-strings-qq", "dev-haskell/readable", "dev-haskell/readargs", "dev-haskell/readline", "dev-haskell/rebase", "dev-haskell/recaptcha", "dev-haskell/reducers", "dev-haskell/refact", "dev-haskell/reflection", "dev-haskell/regex-applicative-text", "dev-haskell/regex-applicative", "dev-haskell/regex-base", "dev-haskell/regex-compat-tdfa", "dev-haskell/regex-compat", "dev-haskell/regex-pcre-builtin", "dev-haskell/regex-pcre", "dev-haskell/regex-posix", "dev-haskell/regex-tdfa", "dev-haskell/rerebase", "dev-haskell/resolv", "dev-haskell/resource-pool", "dev-haskell/resourcet", "dev-haskell/retry", "dev-haskell/rfc5051", "dev-haskell/rfc5051", "dev-haskell/riff", "dev-haskell/rio-orphans", "dev-haskell/rio-prettyprint", "dev-haskell/rio", "dev-haskell/rsa", "dev-haskell/safe-exceptions", "dev-haskell/safe", "dev-haskell/safesemaphore", "dev-haskell/sandi", "dev-haskell/say", "dev-haskell/scientific", "dev-haskell/securemem", "dev-haskell/selective", "dev-haskell/semigroupoid-extras", "dev-haskell/semigroupoids", "dev-haskell/semigroups", "dev-haskell/semirings", "dev-haskell/sendfile", "dev-haskell/setenv", "dev-haskell/setlocale", "dev-haskell/sha", "dev-haskell/shakespeare-css", "dev-haskell/shakespeare-i18n", "dev-haskell/shakespeare-js", "dev-haskell/shakespeare-text", "dev-haskell/shakespeare", "dev-haskell/shell-escape", "dev-haskell/shelly", "dev-haskell/silently", "dev-haskell/simple-reflect", "dev-haskell/simple-sendfile", "dev-haskell/singleton-bool", "dev-haskell/size-based", "dev-haskell/skein", "dev-haskell/skylighting-core", "dev-haskell/skylighting-core", "dev-haskell/skylighting", "dev-haskell/skylighting", "dev-haskell/smallcheck", "dev-haskell/snap-core", "dev-haskell/snap-server", "dev-haskell/socks", "dev-haskell/sop-core", "dev-haskell/split", "dev-haskell/splitmix", "dev-haskell/stack-bin", "dev-haskell/stack", "dev-haskell/statevar", "dev-haskell/statistics", "dev-haskell/stm-chans", "dev-haskell/stm", "dev-haskell/stmonadtrans", "dev-haskell/store-core", "dev-haskell/store", "dev-haskell/stream", "dev-haskell/streaming-commons", "dev-haskell/strict", "dev-haskell/string-qq", "dev-haskell/stringable", "dev-haskell/stringbuilder", "dev-haskell/stringprep", "dev-haskell/stringsearch", "dev-haskell/syb-with-class", "dev-haskell/syb", "dev-haskell/system-fileio", "dev-haskell/system-filepath", "dev-haskell/system-posix-redirect", "dev-haskell/tagged", "dev-haskell/tagshare", "dev-haskell/tagsoup", "dev-haskell/tagstream-conduit", "dev-haskell/tar-conduit", "dev-haskell/tar", "dev-haskell/tasty-ant-xml", "dev-haskell/tasty-expected-failure", "dev-haskell/tasty-golden", "dev-haskell/tasty-hedgehog", "dev-haskell/tasty-hunit", "dev-haskell/tasty-kat", "dev-haskell/tasty-lua", "dev-haskell/tasty-quickcheck", "dev-haskell/tasty-rerun", "dev-haskell/tasty-smallcheck", "dev-haskell/tasty-th", "dev-haskell/tasty", "dev-haskell/template-haskell-compat-v0208", "dev-haskell/temporary-rc", "dev-haskell/temporary", "dev-haskell/tensor", "dev-haskell/terminal-size", "dev-haskell/terminfo", "dev-haskell/test-framework-hunit", "dev-haskell/test-framework-leancheck", "dev-haskell/test-framework-quickcheck2", "dev-haskell/test-framework-th", "dev-haskell/test-framework", "dev-haskell/testing-feat", "dev-haskell/testing-type-modifiers", "dev-haskell/texmath", "dev-haskell/text-binary", "dev-haskell/text-conversions", "dev-haskell/text-icu", "dev-haskell/text-metrics", "dev-haskell/text-short", "dev-haskell/text-show", "dev-haskell/text-stream-decode", "dev-haskell/text", "dev-haskell/text", "dev-haskell/text", "dev-haskell/tf-random", "dev-haskell/th-abstraction", "dev-haskell/th-expand-syns", "dev-haskell/th-lift-instances", "dev-haskell/th-lift", "dev-haskell/th-orphans", "dev-haskell/th-reify-many", "dev-haskell/th-utilities", "dev-haskell/threads", "dev-haskell/thyme", "dev-haskell/time-compat", "dev-haskell/time-locale-compat", "dev-haskell/time-manager", "dev-haskell/timeit", "dev-haskell/timezone-olson", "dev-haskell/timezone-series", "dev-haskell/tls-session-manager", "dev-haskell/tls", "dev-haskell/top", "dev-haskell/torrent", "dev-haskell/transformers-base", "dev-haskell/transformers-compat", "dev-haskell/transformers", "dev-haskell/tree-diff", "dev-haskell/trifecta", "dev-haskell/type-equality", "dev-haskell/typed-process", "dev-haskell/unbounded-delays", "dev-haskell/unexceptionalio", "dev-haskell/unicode-transforms", "dev-haskell/uniplate", "dev-haskell/uniqueid", "dev-haskell/unix-compat", "dev-haskell/unix-time", "dev-haskell/unixutils", "dev-haskell/unliftio-core", "dev-haskell/unliftio", "dev-haskell/unordered-containers", "dev-haskell/uri-bytestring-aeson", "dev-haskell/uri-bytestring", "dev-haskell/uri-encode", "dev-haskell/uri", "dev-haskell/url", "dev-haskell/utf8-light", "dev-haskell/utf8-string", "dev-haskell/uuagc-cabal", "dev-haskell/uuagc", "dev-haskell/uuid-types", "dev-haskell/uuid", "dev-haskell/uulib", "dev-haskell/validity", "dev-haskell/vault", "dev-haskell/vector-algorithms", "dev-haskell/vector-binary-instances", "dev-haskell/vector-builder", "dev-haskell/vector-instances", "dev-haskell/vector-space", "dev-haskell/vector-th-unbox", "dev-haskell/vector", "dev-haskell/void", "dev-haskell/wai-app-static", "dev-haskell/wai-conduit", "dev-haskell/wai-extra", "dev-haskell/wai-logger", "dev-haskell/wai-test", "dev-haskell/wai", "dev-haskell/warp-tls", "dev-haskell/warp", "dev-haskell/wavy", "dev-haskell/wcwidth", "dev-haskell/weigh", "dev-haskell/with-location", "dev-haskell/wl-pprint-annotated", "dev-haskell/wl-pprint-text", "dev-haskell/wl-pprint", "dev-haskell/word8", "dev-haskell/wreq", "dev-haskell/wx", "dev-haskell/wxc", "dev-haskell/wxcore", "dev-haskell/wxdirect", "dev-haskell/x11-xft", "dev-haskell/x11", "dev-haskell/x509-store", "dev-haskell/x509-system", "dev-haskell/x509-validation", "dev-haskell/x509", "dev-haskell/xhtml", "dev-haskell/xml-conduit", "dev-haskell/xml-hamlet", "dev-haskell/xml-types", "dev-haskell/xml", "dev-haskell/xmlgen", "dev-haskell/xss-sanitize", "dev-haskell/yaml", "dev-haskell/yesod-auth-hashdb", "dev-haskell/yesod-auth", "dev-haskell/yesod-auth", "dev-haskell/yesod-core", "dev-haskell/yesod-default", "dev-haskell/yesod-form", "dev-haskell/yesod-json", "dev-haskell/yesod-persistent", "dev-haskell/yesod-static", "dev-haskell/yesod-test", "dev-haskell/yesod", "dev-haskell/zip-archive", "dev-haskell/zlib-bindings", "dev-haskell/zlib-conduit", "dev-haskell/zlib-enum", "dev-haskell/zlib", "dev-java/absolutelayout", "dev-java/airline", "dev-java/android-util", "dev-java/animal-sniffer-annotations", "dev-java/ant-antlr", "dev-java/ant-apache-bcel", "dev-java/ant-apache-bsf", "dev-java/ant-apache-log4j", "dev-java/ant-apache-oro", "dev-java/ant-apache-regexp", "dev-java/ant-apache-resolver", "dev-java/ant-apache-xalan2", "dev-java/ant-commons-logging", "dev-java/ant-commons-net", "dev-java/ant-contrib", "dev-java/ant-contrib", "dev-java/ant-core", "dev-java/ant-eclipse-ecj", "dev-java/ant-eclipse-ecj", "dev-java/ant-eclipse-ecj", "dev-java/ant-eclipse-ecj", "dev-java/ant-eclipse-ecj", "dev-java/ant-ivy", "dev-java/ant-ivy", "dev-java/ant-jai", "dev-java/ant-javamail", "dev-java/ant-jdepend", "dev-java/ant-jmf", "dev-java/ant-jsch", "dev-java/ant-junit", "dev-java/ant-junit4", "dev-java/ant-junitlauncher", "dev-java/ant-swing", "dev-java/ant-testutil", "dev-java/ant-xz", "dev-java/ant", "dev-java/antlr", "dev-java/antlr", "dev-java/antlr", "dev-java/antlr", "dev-java/antlr", "dev-java/aopalliance", "dev-java/apache-rat-core", "dev-java/apache-rat-tasks", "dev-java/appframework", "dev-java/apple-java-extensions-bin", "dev-java/args4j", "dev-java/args4j", "dev-java/asm-analysis", "dev-java/asm-analysis", "dev-java/asm-commons", "dev-java/asm-commons", "dev-java/asm-tree", "dev-java/asm-tree", "dev-java/asm-util", "dev-java/asm-util", "dev-java/asm", "dev-java/asm", "dev-java/asm", "dev-java/aspectj", "dev-java/assertj-core", "dev-java/avalon-framework", "dev-java/avalon-logkit", "dev-java/backport-util-concurrent", "dev-java/batik", "dev-java/bcel", "dev-java/bcel", "dev-java/bcmail", "dev-java/bcmail", "dev-java/bcpg", "dev-java/bcpg", "dev-java/bcpg", "dev-java/bcpkix", "dev-java/bcpkix", "dev-java/bcprov", "dev-java/bcprov", "dev-java/bcprov", "dev-java/bcprov", "dev-java/bcprov", "dev-java/bcprov", "dev-java/bcutil", "dev-java/beansbinding", "dev-java/blowfishj", "dev-java/bnd-junit", "dev-java/bnd-junit", "dev-java/bndlib", "dev-java/boot-bin", "dev-java/boot-bin", "dev-java/brotli-dec", "dev-java/browserlauncher2", "dev-java/bsf", "dev-java/bsh", "dev-java/btf", "dev-java/byaccj", "dev-java/c3p0", "dev-java/cdi-api", "dev-java/cdi-api", "dev-java/cglib", "dev-java/cofoja", "dev-java/cofoja", "dev-java/colt", "dev-java/commons-beanutils", "dev-java/commons-beanutils", "dev-java/commons-chain", "dev-java/commons-cli", "dev-java/commons-codec", "dev-java/commons-collections", "dev-java/commons-collections", "dev-java/commons-compress", "dev-java/commons-csv", "dev-java/commons-daemon", "dev-java/commons-daemon", "dev-java/commons-dbcp", "dev-java/commons-dbutils", "dev-java/commons-digester", "dev-java/commons-digester", "dev-java/commons-digester", "dev-java/commons-discovery", "dev-java/commons-email", "dev-java/commons-email", "dev-java/commons-graph", "dev-java/commons-httpclient", "dev-java/commons-httpclient", "dev-java/commons-imaging", "dev-java/commons-io", "dev-java/commons-jexl", "dev-java/commons-jexl", "dev-java/commons-jxpath", "dev-java/commons-jxpath", "dev-java/commons-lang", "dev-java/commons-lang", "dev-java/commons-launcher", "dev-java/commons-logging", "dev-java/commons-math", "dev-java/commons-net", "dev-java/commons-pool", "dev-java/commons-primitives", "dev-java/commons-text", "dev-java/commons-validator", "dev-java/commons-vfs", "dev-java/commons-vfs", "dev-java/constantine", "dev-java/core-specs-alpha", "dev-java/core-specs-alpha", "dev-java/core-specs-alpha", "dev-java/cortado", "dev-java/cpptasks", "dev-java/cssparser", "dev-java/cssparser", "dev-java/dict4j", "dev-java/disruptor", "dev-java/dnsjava", "dev-java/dom4j", "dev-java/dom4j", "dev-java/dom4j", "dev-java/dynalang", "dev-java/easymock", "dev-java/ecj-gcj", "dev-java/eclipse-ecj", "dev-java/eclipse-ecj", "dev-java/eclipse-ecj", "dev-java/eclipse-ecj", "dev-java/eclipse-ecj", "dev-java/eclipsito", "dev-java/ecs", "dev-java/edtftpj", "dev-java/emma", "dev-java/error-prone-annotations", "dev-java/fastutil", "dev-java/fec", "dev-java/felix-bundlerepository", "dev-java/felix-gogo-command", "dev-java/felix-gogo-runtime", "dev-java/felix-shell", "dev-java/felix-utils", "dev-java/fontbox", "dev-java/fontbox", "dev-java/fontbox", "dev-java/fop", "dev-java/forehead", "dev-java/freehep-graphics2d", "dev-java/freehep-graphicsbase", "dev-java/freehep-graphicsio-emf", "dev-java/freehep-graphicsio-svg", "dev-java/freehep-graphicsio-tests", "dev-java/freehep-graphicsio", "dev-java/freehep-io", "dev-java/gcj-jdk", "dev-java/geoip-java", "dev-java/gin", "dev-java/glassfish-deployment-api", "dev-java/glassfish-ejb-api", "dev-java/glassfish-interceptor-api", "dev-java/glassfish-jms-api", "dev-java/glassfish-persistence", "dev-java/glassfish-servlet-api", "dev-java/glassfish-transaction-api", "dev-java/glassfish-xmlrpc-api", "dev-java/glazedlists", "dev-java/gnu-classpath", "dev-java/gnu-crypto", "dev-java/gnu-hylafax", "dev-java/gnu-jaf", "dev-java/gnu-jaf", "dev-java/gnu-regexp", "dev-java/gradle-bin", "dev-java/gradle-bin", "dev-java/gradle-bin", "dev-java/gson", "dev-java/guava", "dev-java/guice", "dev-java/gwt", "dev-java/hamcrest-core", "dev-java/hamcrest-core", "dev-java/hamcrest-generator", "dev-java/hamcrest-library", "dev-java/hawtjni-runtime", "dev-java/headius-options", "dev-java/hessian", "dev-java/hoteqn", "dev-java/htmlcleaner", "dev-java/htmlparser-org", "dev-java/htmlparser", "dev-java/httpcore", "dev-java/icedtea-bin", "dev-java/icedtea-sound", "dev-java/icedtea-web", "dev-java/icedtea", "dev-java/icedtea", "dev-java/icu4j", "dev-java/icu4j", "dev-java/icu4j", "dev-java/invokebinder", "dev-java/iso-relax", "dev-java/istack-commons-runtime", "dev-java/istack-commons-soimp", "dev-java/j2objc-annotations", "dev-java/jackcess", "dev-java/jackrabbit-webdav", "dev-java/jackrabbit-webdav", "dev-java/jackson-annotations", "dev-java/jackson", "dev-java/jacl", "dev-java/jacoco", "dev-java/jade", "dev-java/jai-imageio-core", "dev-java/jai-imageio-jpeg2000", "dev-java/jakarta-activation-api", "dev-java/jakarta-activation-api", "dev-java/jakarta-activation", "dev-java/jakarta-oro", "dev-java/jakarta-regexp", "dev-java/jakarta-regexp", "dev-java/jakarta-regexp", "dev-java/jakartaee-migration", "dev-java/jal", "dev-java/jama", "dev-java/jamon", "dev-java/jamvm", "dev-java/janino", "dev-java/jansi-native", "dev-java/jansi", "dev-java/japitools", "dev-java/jargs", "dev-java/jarjar", "dev-java/java-apicheck", "dev-java/java-config", "dev-java/java-config", "dev-java/java-dep-check", "dev-java/java-diff-utils", "dev-java/java-getopt", "dev-java/java-service-wrapper", "dev-java/javacc", "dev-java/javacsv", "dev-java/javacup", "dev-java/javahelp", "dev-java/javassist", "dev-java/javassist", "dev-java/javatoolkit", "dev-java/javax-inject", "dev-java/javax-inject", "dev-java/jaxb-api", "dev-java/jaxen", "dev-java/jaxen", "dev-java/jazzy", "dev-java/jbig2-imageio", "dev-java/jbitcollider-core", "dev-java/jboss-marshalling-river", "dev-java/jboss-marshalling-serial", "dev-java/jboss-marshalling", "dev-java/jboss-modules", "dev-java/jcalendar", "dev-java/jchardet", "dev-java/jchart2d", "dev-java/jcifs", "dev-java/jcifs", "dev-java/jcip-annotations", "dev-java/jclasslib", "dev-java/jcommander", "dev-java/jcommon", "dev-java/jdbc-mssqlserver", "dev-java/jdbc-mysql", "dev-java/jdbc-postgresql", "dev-java/jdepend", "dev-java/jdom", "dev-java/jdom", "dev-java/jdynamite", "dev-java/jempbox", "dev-java/jempbox", "dev-java/jetty-alpn-api", "dev-java/jetty-npn-api", "dev-java/jexcelapi", "dev-java/jffi", "dev-java/jflex", "dev-java/jflex", "dev-java/jformatstring", "dev-java/jfreechart", "dev-java/jfreesvg", "dev-java/jfreesvg", "dev-java/jgoodies-common", "dev-java/jgoodies-looks", "dev-java/jgoodies-looks", "dev-java/jgraph", "dev-java/jgrapht", "dev-java/jibx", "dev-java/jibx", "dev-java/jide-oss", "dev-java/jide-oss", "dev-java/jlex", "dev-java/jlfgr", "dev-java/jline", "dev-java/jline", "dev-java/jmdns", "dev-java/jmh-core", "dev-java/jmh-core", "dev-java/jmi-interface", "dev-java/jmi-interface", "dev-java/jmock", "dev-java/jmock", "dev-java/jna", "dev-java/jnlp-api", "dev-java/jnr-a64asm", "dev-java/jnr-constants", "dev-java/jnr-enxio", "dev-java/jnr-ffi", "dev-java/jnr-netdb", "dev-java/jnr-posix", "dev-java/jnr-unixsocket", "dev-java/jnr-x86asm", "dev-java/joda-convert", "dev-java/joda-time", "dev-java/jopt-simple", "dev-java/jopt-simple", "dev-java/jrexx", "dev-java/jrobin", "dev-java/jrrd", "dev-java/jsch-agent-proxy", "dev-java/jsch", "dev-java/json-simple", "dev-java/json", "dev-java/json", "dev-java/jsoup", "dev-java/jspeex", "dev-java/jsr181", "dev-java/jsr223", "dev-java/jsr225", "dev-java/jsr250", "dev-java/jsr305", "dev-java/jsr305", "dev-java/jsr311-api", "dev-java/jsr322", "dev-java/jsr67", "dev-java/jss", "dev-java/jssc", "dev-java/jta", "dev-java/jtds", "dev-java/jtidy", "dev-java/jtreemap", "dev-java/jts-core", "dev-java/juel", "dev-java/jump", "dev-java/jung", "dev-java/junit-clptr", "dev-java/junit", "dev-java/junit", "dev-java/junitparams", "dev-java/junitperf", "dev-java/jupidator", "dev-java/jutils", "dev-java/jvyaml", "dev-java/jython", "dev-java/jzlib", "dev-java/kunststoff", "dev-java/kxml", "dev-java/laf-plugin", "dev-java/laf-plugin", "dev-java/leiningen-bin", "dev-java/leiningen-bin", "dev-java/leiningen-bin", "dev-java/leiningen-bin", "dev-java/libg", "dev-java/libreadline-java", "dev-java/log4j", "dev-java/lucene", "dev-java/lucene", "dev-java/lzma", "dev-java/lzmajio", "dev-java/lzmajio", "dev-java/maven-bin", "dev-java/maven-bin", "dev-java/maven-hawtjni-plugin", "dev-java/mchange-commons", "dev-java/mersennetwister", "dev-java/metadata-extractor", "dev-java/metainf-services", "dev-java/microba", "dev-java/miglayout", "dev-java/miglayout", "dev-java/milton-api", "dev-java/milton-mail-api", "dev-java/mimepull", "dev-java/mina-core", "dev-java/mina-core", "dev-java/mockito", "dev-java/mojarra", "dev-java/moshi", "dev-java/myfaces-api", "dev-java/myfaces-builder-annotations", "dev-java/nachocalendar", "dev-java/nanoxml", "dev-java/netty-buffer", "dev-java/netty-buffer", "dev-java/netty-common", "dev-java/netty-common", "dev-java/netty-tcnative", "dev-java/netty-tcnative", "dev-java/netty-transport", "dev-java/netty-transport", "dev-java/neuroph", "dev-java/objenesis-test", "dev-java/objenesis", "dev-java/offo-hyphenation", "dev-java/ognl", "dev-java/okio", "dev-java/opencsv", "dev-java/openjdk-bin", "dev-java/openjdk-bin", "dev-java/openjdk-bin", "dev-java/openjdk-bin", "dev-java/openjdk-jre-bin", "dev-java/openjdk-jre-bin", "dev-java/openjdk-jre-bin", "dev-java/openjdk-jre-bin", "dev-java/openjdk", "dev-java/openjdk", "dev-java/openjdk", "dev-java/openjdk", "dev-java/openjfx", "dev-java/openjfx", "dev-java/oracle-javamail", "dev-java/osgi-annotation-versioning", "dev-java/osgi-compendium", "dev-java/osgi-core-api", "dev-java/osgi-enterprise-api", "dev-java/osgi-foundation", "dev-java/osgi-obr", "dev-java/pat", "dev-java/pdf-renderer", "dev-java/pdfbox", "dev-java/piccolo", "dev-java/piccolo2d", "dev-java/piccolo2d", "dev-java/picocli", "dev-java/plexus-classworlds", "dev-java/poi", "dev-java/portletapi", "dev-java/portletapi", "dev-java/protobuf-java", "dev-java/protobuf-java", "dev-java/protobuf-java", "dev-java/protobuf-java", "dev-java/protobuf-java", "dev-java/protobuf-java", "dev-java/protobuf-java", "dev-java/qdox", "dev-java/qdox", "dev-java/randomized-runner", "dev-java/rat", "dev-java/reflectasm", "dev-java/reflectasm", "dev-java/reflections", "dev-java/relaxng-datatype", "dev-java/resin-servlet-api", "dev-java/resin-servlet-api", "dev-java/resin-servlet-api", "dev-java/rhino", "dev-java/rngom", "dev-java/rome", "dev-java/rundoc", "dev-java/rxtx", "dev-java/sablecc-anttask", "dev-java/sablecc", "dev-java/sac", "dev-java/sac", "dev-java/sax", "dev-java/sax", "dev-java/saxon", "dev-java/saxon", "dev-java/saxpath", "dev-java/sbt-bin", "dev-java/sbt-bin", "dev-java/sbt", "dev-java/sbt", "dev-java/shared-objects", "dev-java/simplyhtml", "dev-java/sjsxp", "dev-java/slf4j-api", "dev-java/slf4j-log4j12", "dev-java/slf4j-nop", "dev-java/slf4j-simple", "dev-java/snakeyaml", "dev-java/snappy", "dev-java/snappy", "dev-java/snip", "dev-java/sparsebitset", "dev-java/spec-alpha", "dev-java/spec-alpha", "dev-java/spec-alpha", "dev-java/spice-jndikit", "dev-java/spin", "dev-java/stringtemplate", "dev-java/stringtemplate", "dev-java/sun-jaf", "dev-java/sun-jai-bin", "dev-java/sun-jms", "dev-java/super-csv", "dev-java/swing-layout", "dev-java/swingx-beaninfo", "dev-java/swingx-ws", "dev-java/swingx-ws", "dev-java/swingx", "dev-java/swt", "dev-java/swt", "dev-java/swt", "dev-java/tablelayout", "dev-java/telnetd", "dev-java/testng", "dev-java/texhyphj", "dev-java/tijmp", "dev-java/tomcat-jstl-compat", "dev-java/tomcat-jstl-el", "dev-java/tomcat-jstl-impl", "dev-java/tomcat-jstl-spec", "dev-java/tomcat-native", "dev-java/tomcat-servlet-api", "dev-java/tomcat-servlet-api", "dev-java/tomcat-servlet-api", "dev-java/tomcat-servlet-api", "dev-java/tomcat-servlet-api", "dev-java/tomcat-servlet-api", "dev-java/tomcat-servlet-api", "dev-java/tomcat-servlet-api", "dev-java/tomcat-servlet-api", "dev-java/tomcat-servlet-api", "dev-java/toolbar", "dev-java/touchgraph-graphlayout", "dev-java/treelayout", "dev-java/trident", "dev-java/trident", "dev-java/trove", "dev-java/trove", "dev-java/txw2-runtime", "dev-java/typesafe-config", "dev-java/typesafe-config", "dev-java/unkrig-nullanalysis", "dev-java/upnplib", "dev-java/validation-api", "dev-java/validation-api", "dev-java/vecmath", "dev-java/velocity", "dev-java/vldocking", "dev-java/ws-commons-util", "dev-java/wsdl4j", "dev-java/xalan-serializer", "dev-java/xalan", "dev-java/xerces", "dev-java/xerces", "dev-java/xerial-core", "dev-java/xjavac", "dev-java/xml-commons-external", "dev-java/xml-commons-external", "dev-java/xml-commons-resolver", "dev-java/xml-security", "dev-java/xml-writer", "dev-java/xmldb", "dev-java/xmlgraphics-commons", "dev-java/xmlunit", "dev-java/xmpcore", "dev-java/xom", "dev-java/xp", "dev-java/xpp2", "dev-java/xpp3", "dev-java/xsdlib", "dev-java/xsom", "dev-java/xz-java", "dev-java/yanfs", "dev-java/zstd-jni", "dev-lang/R", "dev-lang/R", "dev-lang/R", "dev-lang/abs", "dev-lang/bas", "dev-lang/bashforth", "dev-lang/bff", "dev-lang/bff", "dev-lang/c-intercal", "dev-lang/cfortran", "dev-lang/cfortran", "dev-lang/cll1h", "dev-lang/clojure", "dev-lang/clojure", "dev-lang/clojure", "dev-lang/clojure", "dev-lang/closure-compiler-bin", "dev-lang/coffee-script", "dev-lang/crystal", "dev-lang/crystal", "dev-lang/cxprolog", "dev-lang/duktape", "dev-lang/duktape", "dev-lang/duktape", "dev-lang/elixir", "dev-lang/elixir", "dev-lang/elixir", "dev-lang/erlang", "dev-lang/erlang", "dev-lang/esco", "dev-lang/execline", "dev-lang/execline", "dev-lang/execline", "dev-lang/execline", "dev-lang/execline", "dev-lang/execline", "dev-lang/execline", "dev-lang/f2c", "dev-lang/ferite", "dev-lang/fpc", "dev-lang/fpc", "dev-lang/gdl", "dev-lang/gforth", "dev-lang/ghc", "dev-lang/ghc", "dev-lang/ghc", "dev-lang/ghc", "dev-lang/ghc", "dev-lang/gnat-gpl", "dev-lang/gnat-gpl", "dev-lang/gnat-gpl", "dev-lang/gnat-gpl", "dev-lang/gnat-gpl", "dev-lang/gnat-gpl", "dev-lang/gnuprologjava", "dev-lang/go-bootstrap", "dev-lang/go", "dev-lang/go", "dev-lang/gprolog", "dev-lang/gprolog", "dev-lang/hy", "dev-lang/icon", "dev-lang/icon", "dev-lang/icon", "dev-lang/icon", "dev-lang/inform", "dev-lang/interprolog", "dev-lang/ispc", "dev-lang/ispc", "dev-lang/janet", "dev-lang/janet", "dev-lang/jerryscript", "dev-lang/jimtcl", "dev-lang/jsonnet", "dev-lang/jsonnet", "dev-lang/jsonnet", "dev-lang/jsonnet", "dev-lang/julia-bin", "dev-lang/julia-bin", "dev-lang/julia-bin", "dev-lang/julia-bin", "dev-lang/julia", "dev-lang/julia", "dev-lang/jwasm", "dev-lang/lazarus", "dev-lang/lazarus", "dev-lang/lfe", "dev-lang/lfe", "dev-lang/lfe", "dev-lang/lisaac", "dev-lang/logtalk", "dev-lang/logtalk", "dev-lang/lua", "dev-lang/lua", "dev-lang/lua", "dev-lang/luajit", "dev-lang/luajit", "dev-lang/maude", "dev-lang/maude", "dev-lang/mercury-extras", "dev-lang/mercury", "dev-lang/micropython", "dev-lang/mlton", "dev-lang/mmix", "dev-lang/moarvm", "dev-lang/moarvm", "dev-lang/moarvm", "dev-lang/mono-basic", "dev-lang/mono", "dev-lang/mozart-stdlib", "dev-lang/mozart", "dev-lang/mujs", "dev-lang/mujs", "dev-lang/mujs", "dev-lang/nasm", "dev-lang/nim", "dev-lang/nqp", "dev-lang/nqp", "dev-lang/nqp", "dev-lang/nwcc", "dev-lang/ocaml", "dev-lang/ocaml", "dev-lang/ocaml", "dev-lang/ocaml", "dev-lang/ocaml", "dev-lang/ocaml", "dev-lang/open-cobol", "dev-lang/orc", "dev-lang/parrot", "dev-lang/pcc", "dev-lang/perl", "dev-lang/perl", "dev-lang/perl", "dev-lang/perl", "dev-lang/php", "dev-lang/php", "dev-lang/php", "dev-lang/php", "dev-lang/php", "dev-lang/php", "dev-lang/php", "dev-lang/php", "dev-lang/polyml", "dev-lang/python-exec-conf", "dev-lang/python-exec", "dev-lang/python-exec", "dev-lang/python-exec", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/python", "dev-lang/qu-prolog", "dev-lang/rakudo", "dev-lang/rakudo", "dev-lang/regina-rexx", "dev-lang/ruby", "dev-lang/ruby", "dev-lang/ruby", "dev-lang/ruby", "dev-lang/ruby", "dev-lang/rust-bin", "dev-lang/rust-bin", "dev-lang/rust-bin", "dev-lang/rust", "dev-lang/rust", "dev-lang/rust", "dev-lang/sassc", "dev-lang/scala-bin", "dev-lang/scala", "dev-lang/scala", "dev-lang/smlnj", "dev-lang/snobol", "dev-lang/spark", "dev-lang/spidermonkey", "dev-lang/spidermonkey", "dev-lang/spidermonkey", "dev-lang/spidermonkey", "dev-lang/spidermonkey", "dev-lang/spidermonkey", "dev-lang/spidermonkey", "dev-lang/spidermonkey", "dev-lang/squirrel", "dev-lang/srf", "dev-lang/starlark-rust", "dev-lang/swi-prolog", "dev-lang/swi-prolog", "dev-lang/swi-prolog", "dev-lang/swi-prolog", "dev-lang/swig", "dev-lang/swig", "dev-lang/swig", "dev-lang/tcc", "dev-lang/tcc", "dev-lang/tcl", "dev-lang/tcl", "dev-lang/tcl", "dev-lang/tcl", "dev-lang/teyjus", "dev-lang/teyjus", "dev-lang/tk", "dev-lang/tk", "dev-lang/tk", "dev-lang/tk", "dev-lang/tk", "dev-lang/tk", "dev-lang/tuprolog", "dev-lang/tuprolog", "dev-lang/typescript", "dev-lang/vala", "dev-lang/vala", "dev-lang/vala", "dev-lang/vala", "dev-lang/vala", "dev-lang/vala", "dev-lang/vala", "dev-lang/vala", "dev-lang/whitespace", "dev-lang/xsb", "dev-lang/xsb", "dev-lang/yap", "dev-lang/yasm", "dev-lang/zig", "dev-lang/zig", "dev-lang/zig", "dev-libs/9libs", "dev-libs/Ice", "dev-libs/OpenNI", "dev-libs/OpenNI", "dev-libs/OpenNI2", "dev-libs/OpenNI2", "dev-libs/amdgpu-pro-opencl", "dev-libs/aml", "dev-libs/aml", "dev-libs/angelscript", "dev-libs/angelscript", "dev-libs/antlr-c", "dev-libs/appstream-glib", "dev-libs/appstream", "dev-libs/apr-util", "dev-libs/apr", "dev-libs/apr", "dev-libs/apr", "dev-libs/argtable", "dev-libs/atcore", "dev-libs/atf", "dev-libs/atk", "dev-libs/avro-c", "dev-libs/aws-c-cal", "dev-libs/aws-c-common", "dev-libs/aws-c-common", "dev-libs/aws-c-event-stream", "dev-libs/aws-c-event-stream", "dev-libs/aws-c-io", "dev-libs/aws-c-io", "dev-libs/aws-checksums", "dev-libs/aws-sdk-cpp", "dev-libs/aws-sdk-cpp", "dev-libs/bareos-fastlzlib", "dev-libs/bareos-fastlzlib", "dev-libs/bcm2835", "dev-libs/bcm2835", "dev-libs/bemenu", "dev-libs/bemenu", "dev-libs/bemenu", "dev-libs/bglibs", "dev-libs/bglibs", "dev-libs/bitset", "dev-libs/boehm-gc", "dev-libs/boost-mpl-cartesian_product", "dev-libs/boost", "dev-libs/boost", "dev-libs/botan", "dev-libs/botan", "dev-libs/boxfort", "dev-libs/boxfort", "dev-libs/busybee", "dev-libs/c-blosc", "dev-libs/c-capnproto", "dev-libs/cJSON", "dev-libs/cJSON", "dev-libs/caliper", "dev-libs/capnproto", "dev-libs/capnproto", "dev-libs/capstone", "dev-libs/cdk", "dev-libs/cdk", "dev-libs/cereal", "dev-libs/cereal", "dev-libs/cgilib", "dev-libs/cgreen", "dev-libs/check", "dev-libs/chmlib", "dev-libs/cl", "dev-libs/cl", "dev-libs/cl", "dev-libs/clhpp", "dev-libs/clhpp", "dev-libs/clipper", "dev-libs/cloog", "dev-libs/cloog", "dev-libs/collada-dom", "dev-libs/collada-dom", "dev-libs/concurrencykit", "dev-libs/confuse", "dev-libs/console_bridge", "dev-libs/console_bridge", "dev-libs/cppcodec", "dev-libs/cppcodec", "dev-libs/crc32c", "dev-libs/criterion", "dev-libs/criterion", "dev-libs/crossguid", "dev-libs/crypto++", "dev-libs/crypto++", "dev-libs/crypto++", "dev-libs/cudnn", "dev-libs/cudnn", "dev-libs/cvector", "dev-libs/cxxopts", "dev-libs/cxxtools", "dev-libs/cxxtools", "dev-libs/cyberjack", "dev-libs/cyrus-sasl", "dev-libs/d0_blind_id", "dev-libs/darts", "dev-libs/darts", "dev-libs/darts", "dev-libs/date", "dev-libs/dbus-c++", "dev-libs/dbus-glib", "dev-libs/dbus-glib", "dev-libs/device-atlas-api-c", "dev-libs/dietlibc", "dev-libs/dietlibc", "dev-libs/ding-libs", "dev-libs/ding-libs", "dev-libs/distorm3", "dev-libs/dmalloc", "dev-libs/dmalloc", "dev-libs/dotconf", "dev-libs/double-conversion", "dev-libs/dqlite", "dev-libs/dqlite", "dev-libs/eb", "dev-libs/editline", "dev-libs/eekboard", "dev-libs/efl", "dev-libs/elfutils", "dev-libs/ell", "dev-libs/ell", "dev-libs/ell", "dev-libs/ell", "dev-libs/ell", "dev-libs/eventlog", "dev-libs/expat", "dev-libs/faxpp", "dev-libs/fcgi", "dev-libs/fddl", "dev-libs/ferrisloki", "dev-libs/ffcall", "dev-libs/flatbuffers", "dev-libs/flatbuffers", "dev-libs/folks", "dev-libs/folks", "dev-libs/foma", "dev-libs/freexl", "dev-libs/freexl", "dev-libs/fribidi", "dev-libs/fstrm", "dev-libs/fstrm", "dev-libs/gdl", "dev-libs/gdl", "dev-libs/geoip", "dev-libs/gf-complete", "dev-libs/gf2x", "dev-libs/girara", "dev-libs/girara", "dev-libs/gjs", "dev-libs/gjs", "dev-libs/gjs", "dev-libs/gjs", "dev-libs/glib", "dev-libs/glib", "dev-libs/glib", "dev-libs/gmime", "dev-libs/gmime", "dev-libs/gmp", "dev-libs/gnulib", "dev-libs/gnulib", "dev-libs/go-fuse", "dev-libs/go-fuse", "dev-libs/go-fuse", "dev-libs/gobject-introspection-common", "dev-libs/gobject-introspection", "dev-libs/gom", "dev-libs/gost-engine", "dev-libs/gost-engine", "dev-libs/granite", "dev-libs/granite", "dev-libs/granite", "dev-libs/grantlee", "dev-libs/gtx", "dev-libs/gumbo", "dev-libs/hidapi", "dev-libs/hiredis", "dev-libs/hiredis", "dev-libs/http-fetcher", "dev-libs/hyperscan", "dev-libs/hyphen", "dev-libs/icu-layoutex", "dev-libs/icu-le-hb", "dev-libs/icu", "dev-libs/icu", "dev-libs/igraph", "dev-libs/igraph", "dev-libs/igraph", "dev-libs/iksemel", "dev-libs/imath", "dev-libs/imath", "dev-libs/inih", "dev-libs/iniparser", "dev-libs/iniparser", "dev-libs/injeqt", "dev-libs/input-pad", "dev-libs/intel-neo", "dev-libs/intel-neo", "dev-libs/intel-neo", "dev-libs/intel-neo", "dev-libs/intel-neo", "dev-libs/intel-neo", "dev-libs/intel-neo", "dev-libs/intel-neo", "dev-libs/isl", "dev-libs/ivykis", "dev-libs/jansson", "dev-libs/jemalloc", "dev-libs/jemalloc", "dev-libs/jerasure", "dev-libs/json-c", "dev-libs/json-c", "dev-libs/json-glib", "dev-libs/json-glib", "dev-libs/jsoncpp", "dev-libs/jsoncpp", "dev-libs/jsonrpc-glib", "dev-libs/jthread", "dev-libs/judy", "dev-libs/judy", "dev-libs/kasync", "dev-libs/kdiagram", "dev-libs/keybinder", "dev-libs/keystone", "dev-libs/keystone", "dev-libs/kopeninghours", "dev-libs/kopeninghours", "dev-libs/kosmindoormap", "dev-libs/kosmindoormap", "dev-libs/kpathsea", "dev-libs/kpeoplevcard", "dev-libs/kproperty", "dev-libs/kpublictransport", "dev-libs/kpublictransport", "dev-libs/kqoauth", "dev-libs/kreport", "dev-libs/kuserfeedback", "dev-libs/leatherman", "dev-libs/leatherman", "dev-libs/level-zero", "dev-libs/level-zero", "dev-libs/level-zero", "dev-libs/leveldb", "dev-libs/leveldb", "dev-libs/libIDL", "dev-libs/libaio", "dev-libs/libaio", "dev-libs/libappindicator", "dev-libs/libappindicator", "dev-libs/libarcus", "dev-libs/libassuan", "dev-libs/libassuan", "dev-libs/libassuan", "dev-libs/libatasmart", "dev-libs/libatomic_ops", "dev-libs/libax25", "dev-libs/libb64", "dev-libs/libb64", "dev-libs/libbase58", "dev-libs/libbpf", "dev-libs/libbpf", "dev-libs/libbpf", "dev-libs/libbpf", "dev-libs/libbpf", "dev-libs/libbpf", "dev-libs/libbpf", "dev-libs/libbpf", "dev-libs/libbpf", "dev-libs/libbpf", "dev-libs/libbrahe", "dev-libs/libbsd", "dev-libs/libbson", "dev-libs/libbson", "dev-libs/libbson", "dev-libs/libbulletml", "dev-libs/libburn", "dev-libs/libbytesize", "dev-libs/libbytesize", "dev-libs/libcbor", "dev-libs/libcdada", "dev-libs/libcdio-paranoia", "dev-libs/libcdio", "dev-libs/libcdio", "dev-libs/libcec", "dev-libs/libcec", "dev-libs/libcec", "dev-libs/libcgroup", "dev-libs/libcharon", "dev-libs/libclc", "dev-libs/libclc", "dev-libs/libclthreads", "dev-libs/libconfig", "dev-libs/libconfig", "dev-libs/libcoyotl", "dev-libs/libcroco", "dev-libs/libcss", "dev-libs/libdaemon", "dev-libs/libdazzle", "dev-libs/libdbh", "dev-libs/libdbh", "dev-libs/libdbusmenu-qt", "dev-libs/libdbusmenu", "dev-libs/libdispatch", "dev-libs/libdivecomputer", "dev-libs/libdivecomputer", "dev-libs/libdivsufsort", "dev-libs/libdnet", "dev-libs/libdnsres", "dev-libs/libdshconfig", "dev-libs/libdynd", "dev-libs/libe", "dev-libs/libebml", "dev-libs/libedit", "dev-libs/libee", "dev-libs/libelf", "dev-libs/liberasurecode", "dev-libs/libestr", "dev-libs/libev", "dev-libs/libevdev", "dev-libs/libevdev", "dev-libs/libevent", "dev-libs/libevent", "dev-libs/libevent", "dev-libs/libevent", "dev-libs/libevocosm", "dev-libs/libezV24", "dev-libs/libf2c", "dev-libs/libfastjson", "dev-libs/libfastjson", "dev-libs/libffi-compat", "dev-libs/libffi-compat", "dev-libs/libffi", "dev-libs/libffi", "dev-libs/libfido2", "dev-libs/libfido2", "dev-libs/libfilezilla", "dev-libs/libfilezilla", "dev-libs/libfilezilla", "dev-libs/libfilezilla", "dev-libs/libflatarray", "dev-libs/libfmt", "dev-libs/libfmt", "dev-libs/libfmt", "dev-libs/libfmt", "dev-libs/libfmt", "dev-libs/libfstrcmp", "dev-libs/libfstrcmp", "dev-libs/libg15", "dev-libs/libg15", "dev-libs/libg15render", "dev-libs/libgamin", "dev-libs/libgaminggear", "dev-libs/libgcrypt-compat", "dev-libs/libgcrypt", "dev-libs/libgcrypt", "dev-libs/libgcrypt", "dev-libs/libgcrypt", "dev-libs/libgcrypt", "dev-libs/libgcrypt", "dev-libs/libgcrypt", "dev-libs/libgdata", "dev-libs/libgee", "dev-libs/libgit2-glib", "dev-libs/libgit2", "dev-libs/libgit2", "dev-libs/libgit2", "dev-libs/libgnome-games-support", "dev-libs/libgnt", "dev-libs/libgnt", "dev-libs/libgpg-error", "dev-libs/libgpg-error", "dev-libs/libgpg-error", "dev-libs/libgpiod", "dev-libs/libgpiod", "dev-libs/libgudev", "dev-libs/libgudev", "dev-libs/libgudev", "dev-libs/libgudev", "dev-libs/libgusb", "dev-libs/libgweather", "dev-libs/libhid", "dev-libs/libical", "dev-libs/libiconv", "dev-libs/libiconv", "dev-libs/libindicate", "dev-libs/libindicator", "dev-libs/libindicator", "dev-libs/libinput", "dev-libs/libinput", "dev-libs/libintl", "dev-libs/libisoburn", "dev-libs/libisofs", "dev-libs/libite", "dev-libs/libixion", "dev-libs/libixion", "dev-libs/libjcat", "dev-libs/libkpass", "dev-libs/libksba", "dev-libs/libksba", "dev-libs/libksba", "dev-libs/liblinear", "dev-libs/liblinear", "dev-libs/liblist", "dev-libs/liblogging", "dev-libs/liblognorm", "dev-libs/liblouis", "dev-libs/liblouis", "dev-libs/libltdl", "dev-libs/liblzw", "dev-libs/liblzw", "dev-libs/libmaa", "dev-libs/libmanette", "dev-libs/libmateweather", "dev-libs/libmaxminddb", "dev-libs/libmaxminddb", "dev-libs/libmaxminddb", "dev-libs/libmba", "dev-libs/libmcrypt", "dev-libs/libmelf", "dev-libs/libmemcached", "dev-libs/libmemcached", "dev-libs/libmirage", "dev-libs/libmirage", "dev-libs/libmix", "dev-libs/libmodbus", "dev-libs/libmoe", "dev-libs/libmowgli", "dev-libs/libmowgli", "dev-libs/libmowgli", "dev-libs/libmowgli", "dev-libs/libmpack", "dev-libs/libmspack", "dev-libs/libmspack", "dev-libs/libnatspec", "dev-libs/libnest2d", "dev-libs/libnfc", "dev-libs/libnfc", "dev-libs/libnl", "dev-libs/libnl", "dev-libs/libnl", "dev-libs/libnl", "dev-libs/libnsfb", "dev-libs/libnsutils", "dev-libs/libofx", "dev-libs/libofx", "dev-libs/liboil", "dev-libs/liborcus", "dev-libs/liborcus", "dev-libs/libotf", "dev-libs/libowfat", "dev-libs/libowfat", "dev-libs/libp11", "dev-libs/libp11", "dev-libs/libparserutils", "dev-libs/libpcre-debian", "dev-libs/libpcre", "dev-libs/libpcre", "dev-libs/libpcre2", "dev-libs/libpcre2", "dev-libs/libpeas", "dev-libs/libpfm", "dev-libs/libpfm", "dev-libs/libpipeline", "dev-libs/libplatform", "dev-libs/libplatform", "dev-libs/libpo6", "dev-libs/libpqxx", "dev-libs/libpqxx", "dev-libs/libpqxx", "dev-libs/libpqxx", "dev-libs/libprelude", "dev-libs/libpreludedb", "dev-libs/libpthread-stubs", "dev-libs/libpwquality", "dev-libs/libpwquality", "dev-libs/libpy", "dev-libs/libqtxdg", "dev-libs/libqtxdg", "dev-libs/libratbag", "dev-libs/libratbag", "dev-libs/librdkafka", "dev-libs/librdkafka", "dev-libs/librdkafka", "dev-libs/librdkafka", "dev-libs/librdkafka", "dev-libs/librdkafka", "dev-libs/librdkafka", "dev-libs/librelp", "dev-libs/librep", "dev-libs/libreport", "dev-libs/libreport", "dev-libs/libreport", "dev-libs/libretls", "dev-libs/librevenge", "dev-libs/librevenge", "dev-libs/libsass", "dev-libs/libsass", "dev-libs/libsavitar", "dev-libs/libsecp256k1", "dev-libs/libsecp256k1", "dev-libs/libserdes", "dev-libs/libserialport", "dev-libs/libserialport", "dev-libs/libsigc++", "dev-libs/libsigc++", "dev-libs/libsigsegv", "dev-libs/libsigsegv", "dev-libs/libslz", "dev-libs/libslz", "dev-libs/libsodium", "dev-libs/libsodium", "dev-libs/libsodium", "dev-libs/libspnav", "dev-libs/libspnav", "dev-libs/libspt", "dev-libs/libstrl", "dev-libs/libstroke", "dev-libs/libstrophe", "dev-libs/libstrophe", "dev-libs/libstrophe", "dev-libs/libstrophe", "dev-libs/libtar", "dev-libs/libtasn1", "dev-libs/libtasn1", "dev-libs/libtecla", "dev-libs/libtermkey", "dev-libs/libtermkey", "dev-libs/libthreadar", "dev-libs/libtimezonemap", "dev-libs/libtomcrypt", "dev-libs/libtomfloat", "dev-libs/libtommath", "dev-libs/libtompoly", "dev-libs/libtpms", "dev-libs/libtpms", "dev-libs/libtreadstone", "dev-libs/libtsm", "dev-libs/libtubo", "dev-libs/libucl", "dev-libs/libucl", "dev-libs/libudfread", "dev-libs/libudfread", "dev-libs/libudfread", "dev-libs/libudfread", "dev-libs/libuev", "dev-libs/libugpio", "dev-libs/libunibreak", "dev-libs/libuninum", "dev-libs/libunique", "dev-libs/libunique", "dev-libs/libunistring", "dev-libs/libusb-compat", "dev-libs/libusb", "dev-libs/libusbhp", "dev-libs/libutf8proc", "dev-libs/libutf8proc", "dev-libs/libuv", "dev-libs/libuv", "dev-libs/libuv", "dev-libs/libvarlink", "dev-libs/libvarlink", "dev-libs/libvarlink", "dev-libs/libverto", "dev-libs/libverto", "dev-libs/libvformat", "dev-libs/libvoikko", "dev-libs/libvterm-neovim", "dev-libs/libvterm-neovim", "dev-libs/libvterm", "dev-libs/libvterm", "dev-libs/libvterm", "dev-libs/libvterm", "dev-libs/libwacom", "dev-libs/libwapcaplet", "dev-libs/libwbxml", "dev-libs/libx86", "dev-libs/libx86emu", "dev-libs/libxdg-basedir", "dev-libs/libxdg-basedir", "dev-libs/libxdiff", "dev-libs/libxls", "dev-libs/libxml2", "dev-libs/libxml2", "dev-libs/libxml2", "dev-libs/libxml2", "dev-libs/libxml2", "dev-libs/libxmlb", "dev-libs/libxmlb", "dev-libs/libxmlb", "dev-libs/libxslt", "dev-libs/libyaml", "dev-libs/libyaml", "dev-libs/libzia", "dev-libs/libzia", "dev-libs/libzia", "dev-libs/libzip", "dev-libs/libzip", "dev-libs/light", "dev-libs/link-grammar", "dev-libs/link-grammar", "dev-libs/link-grammar", "dev-libs/lockdev", "dev-libs/log4cplus", "dev-libs/log4cplus", "dev-libs/log4cplus", "dev-libs/log4cpp", "dev-libs/log4cxx", "dev-libs/log4sh", "dev-libs/luise", "dev-libs/lzo", "dev-libs/m17n-lib", "dev-libs/m17n-lib", "dev-libs/maloc", "dev-libs/marisa", "dev-libs/marisa", "dev-libs/marisa", "dev-libs/mathjax", "dev-libs/mathjax", "dev-libs/mathjax", "dev-libs/mimetic", "dev-libs/miniz", "dev-libs/miniz", "dev-libs/mm", "dev-libs/mmtf-cpp", "dev-libs/mongo-c-driver", "dev-libs/mongo-c-driver", "dev-libs/mongo-c-driver", "dev-libs/mpc", "dev-libs/mpfr", "dev-libs/msgpack", "dev-libs/mxml", "dev-libs/nanomsg", "dev-libs/ncnn", "dev-libs/nettle", "dev-libs/nettle", "dev-libs/newt", "dev-libs/nmeap", "dev-libs/npth", "dev-libs/nsgenbind", "dev-libs/nspr", "dev-libs/nspr", "dev-libs/nspr", "dev-libs/nss-pem", "dev-libs/nss-pem", "dev-libs/nss", "dev-libs/nss", "dev-libs/nss", "dev-libs/nss", "dev-libs/nsync", "dev-libs/nsync", "dev-libs/ntl", "dev-libs/ntl", "dev-libs/ocl-icd", "dev-libs/ocl-icd", "dev-libs/onigmo", "dev-libs/onigmo", "dev-libs/oniguruma", "dev-libs/oniguruma", "dev-libs/opencl-clang", "dev-libs/opencl-clang", "dev-libs/opencl-clang", "dev-libs/opencl-clang", "dev-libs/opencl-icd-loader", "dev-libs/opencl-icd-loader", "dev-libs/opencryptoki", "dev-libs/openct", "dev-libs/openobex", "dev-libs/opensc", "dev-libs/opensc", "dev-libs/openspecfun", "dev-libs/openssl-compat", "dev-libs/openssl-compat", "dev-libs/openssl", "dev-libs/openssl", "dev-libs/openssl", "dev-libs/openssl", "dev-libs/ossp-uuid", "dev-libs/pakchois", "dev-libs/papi", "dev-libs/pcc-libs", "dev-libs/pcl", "dev-libs/pegtl", "dev-libs/pegtl", "dev-libs/pigpio", "dev-libs/pkcs11-helper", "dev-libs/pkcs11-helper", "dev-libs/plasma-wayland-protocols", "dev-libs/pmdk", "dev-libs/poco", "dev-libs/poco", "dev-libs/popt", "dev-libs/ppl", "dev-libs/processor-trace", "dev-libs/protobuf-c", "dev-libs/protobuf-c", "dev-libs/protobuf", "dev-libs/protobuf", "dev-libs/protobuf", "dev-libs/protobuf", "dev-libs/protobuf", "dev-libs/protobuf", "dev-libs/protobuf", "dev-libs/pslib", "dev-libs/ptexenc", "dev-libs/pthreads4w", "dev-libs/pugixml", "dev-libs/pugixml", "dev-libs/qcustomplot", "dev-libs/qoauth", "dev-libs/qqwing", "dev-libs/qqwing", "dev-libs/qrosscore", "dev-libs/qrosscore", "dev-libs/qtcompress", "dev-libs/qtkeychain", "dev-libs/quazip", "dev-libs/raft", "dev-libs/raft", "dev-libs/rapidjson", "dev-libs/rapidjson", "dev-libs/rapidjson", "dev-libs/rapidxml", "dev-libs/rasqal", "dev-libs/rccl", "dev-libs/re2", "dev-libs/re2", "dev-libs/redland-bindings", "dev-libs/redland", "dev-libs/rinutils", "dev-libs/rlog", "dev-libs/rocclr", "dev-libs/rocclr", "dev-libs/rocclr", "dev-libs/rocclr", "dev-libs/rocclr", "dev-libs/rocclr", "dev-libs/rocclr", "dev-libs/rocksdb", "dev-libs/rocksdb", "dev-libs/rocksdb", "dev-libs/rocm-comgr", "dev-libs/rocm-comgr", "dev-libs/rocm-comgr", "dev-libs/rocm-comgr", "dev-libs/rocm-comgr", "dev-libs/rocm-comgr", "dev-libs/rocm-device-libs", "dev-libs/rocm-device-libs", "dev-libs/rocm-device-libs", "dev-libs/rocm-device-libs", "dev-libs/rocm-device-libs", "dev-libs/rocm-device-libs", "dev-libs/rocm-device-libs", "dev-libs/rocm-device-libs", "dev-libs/rocm-device-libs", "dev-libs/rocm-hostcall", "dev-libs/rocm-opencl-runtime", "dev-libs/rocm-opencl-runtime", "dev-libs/rocm-opencl-runtime", "dev-libs/rocm-opencl-runtime", "dev-libs/rocm-opencl-runtime", "dev-libs/rocm-opencl-runtime", "dev-libs/rocr-runtime", "dev-libs/rocr-runtime", "dev-libs/rocr-runtime", "dev-libs/rocr-runtime", "dev-libs/rocr-runtime", "dev-libs/rocr-runtime", "dev-libs/rocr-runtime", "dev-libs/rocr-runtime", "dev-libs/roct-thunk-interface", "dev-libs/roct-thunk-interface", "dev-libs/roct-thunk-interface", "dev-libs/roct-thunk-interface", "dev-libs/roct-thunk-interface", "dev-libs/rremove", "dev-libs/s2n", "dev-libs/s2n", "dev-libs/satyr", "dev-libs/satyr", "dev-libs/sdformat", "dev-libs/sdformat", "dev-libs/sdformat", "dev-libs/serd", "dev-libs/serdisplib", "dev-libs/shhopt", "dev-libs/simdjson", "dev-libs/simdjson", "dev-libs/simdjson", "dev-libs/sink", "dev-libs/skalibs", "dev-libs/skalibs", "dev-libs/skalibs", "dev-libs/skalibs", "dev-libs/skalibs", "dev-libs/skalibs", "dev-libs/skalibs", "dev-libs/skalibs", "dev-libs/smack", "dev-libs/snowball-stemmer", "dev-libs/snowball-stemmer", "dev-libs/softhsm", "dev-libs/sord", "dev-libs/sord", "dev-libs/spdlog", "dev-libs/spdlog", "dev-libs/spdlog", "dev-libs/spdlog", "dev-libs/spdlog", "dev-libs/spsdeclib", "dev-libs/squareball", "dev-libs/squareball", "dev-libs/starpu", "dev-libs/starpu", "dev-libs/stb", "dev-libs/stfl", "dev-libs/stp", "dev-libs/template-glib", "dev-libs/tinyxml", "dev-libs/tinyxml2", "dev-libs/tinyxml2", "dev-libs/tinyxml2", "dev-libs/tntnet", "dev-libs/tomsfastmath", "dev-libs/totem-pl-parser", "dev-libs/tre", "dev-libs/tree-sitter", "dev-libs/tree-sitter", "dev-libs/trio", "dev-libs/tvision", "dev-libs/tvmet", "dev-libs/ucl", "dev-libs/ucommon", "dev-libs/udis86", "dev-libs/unibilium", "dev-libs/unibilium", "dev-libs/unittest++", "dev-libs/univalue", "dev-libs/univalue", "dev-libs/urdfdom", "dev-libs/urdfdom", "dev-libs/urdfdom_headers", "dev-libs/urdfdom_headers", "dev-libs/uriparser", "dev-libs/userspace-rcu", "dev-libs/userspace-rcu", "dev-libs/utfcpp", "dev-libs/utfcpp", "dev-libs/utfcpp", "dev-libs/utfcpp", "dev-libs/uthash", "dev-libs/uulib", "dev-libs/vala-common", "dev-libs/vala-common", "dev-libs/vala-common", "dev-libs/vc-intrinsics", "dev-libs/vc", "dev-libs/vc", "dev-libs/voikko-fi", "dev-libs/volume_key", "dev-libs/wayland-protocols", "dev-libs/wayland-protocols", "dev-libs/wayland", "dev-libs/wayland", "dev-libs/weston", "dev-libs/weston", "dev-libs/weston", "dev-libs/xalan-c", "dev-libs/xapian-bindings", "dev-libs/xapian", "dev-libs/xapian", "dev-libs/xapian", "dev-libs/xbyak", "dev-libs/xerces-c", "dev-libs/xerces-c", "dev-libs/xmlrpc-c", "dev-libs/xmlsec", "dev-libs/xmlsec", "dev-libs/xmlsec", "dev-libs/xxhash", "dev-libs/xxhash", "dev-libs/yajl", "dev-libs/yaz", "dev-libs/yaz", "dev-libs/zlog", "dev-libs/zlog", "dev-libs/zthread", "dev-libs/zziplib", "dev-libs/icinga-php-library", "dev-libs/icinga-php-thirdparty", "dev-libs/metee", "dev-lisp/abcl", "dev-lisp/alexandria", "dev-lisp/asdf", "dev-lisp/asdf", "dev-lisp/asdf", "dev-lisp/asdf", "dev-lisp/c2ffi", "dev-lisp/cl-ppcre-unicode", "dev-lisp/cl-ppcre-unicode", "dev-lisp/cl-ppcre", "dev-lisp/cl-ppcre", "dev-lisp/cl-unicode", "dev-lisp/clisp", "dev-lisp/clozurecl", "dev-lisp/clozurecl", "dev-lisp/clozurecl", "dev-lisp/clx", "dev-lisp/cmucl", "dev-lisp/ecls", "dev-lisp/ecls", "dev-lisp/ecls", "dev-lisp/ecls", "dev-lisp/flexi-streams", "dev-lisp/flexi-streams", "dev-lisp/gcl", "dev-lisp/gcl", "dev-lisp/gcl", "dev-lisp/hyperspec", "dev-lisp/roswell", "dev-lisp/sbcl", "dev-lisp/sbcl", "dev-lisp/sbcl", "dev-lisp/sbcl", "dev-lisp/sbcl", "dev-lisp/trivial-gray-streams", "dev-lisp/trivial-gray-streams", "dev-lisp/uiop", "dev-lisp/uiop", "dev-lisp/uiop", "dev-lua/LuaBitOp", "dev-lua/LuaBitOp", "dev-lua/busted-htest", "dev-lua/busted", "dev-lua/dkjson", "dev-lua/inifile", "dev-lua/lanes", "dev-lua/ldoc", "dev-lua/lgi", "dev-lua/lpeg", "dev-lua/lua-argparse", "dev-lua/lua-bit32", "dev-lua/lua-cjson", "dev-lua/lua-openssl", "dev-lua/lua-openssl", "dev-lua/lua-term", "dev-lua/lua-utf8", "dev-lua/lua-zlib", "dev-lua/lua_cliargs", "dev-lua/luacheck", "dev-lua/luacov", "dev-lua/luadbi", "dev-lua/luaevent", "dev-lua/luaexpat", "dev-lua/luafilesystem", "dev-lua/luajson", "dev-lua/lualdap", "dev-lua/luaossl", "dev-lua/luaposix", "dev-lua/luarocks", "dev-lua/luasec", "dev-lua/luasec", "dev-lua/luasocket", "dev-lua/luassert", "dev-lua/luasystem", "dev-lua/lutok", "dev-lua/luv", "dev-lua/md5", "dev-lua/mediator_lua", "dev-lua/messagepack", "dev-lua/mpack", "dev-lua/penlight", "dev-lua/penlight", "dev-lua/say", "dev-lua/toluapp", "dev-ml/alcotest", "dev-ml/alcotest", "dev-ml/astring", "dev-ml/async", "dev-ml/async_extra", "dev-ml/async_kernel", "dev-ml/async_rpc_kernel", "dev-ml/async_ssl", "dev-ml/async_unix", "dev-ml/base", "dev-ml/base", "dev-ml/base_bigstring", "dev-ml/base_quickcheck", "dev-ml/bigarray-compat", "dev-ml/bin_prot", "dev-ml/biniou", "dev-ml/bos", "dev-ml/bos", "dev-ml/cairo2", "dev-ml/cairo2", "dev-ml/calendar", "dev-ml/calendars", "dev-ml/camlbz2", "dev-ml/camldbm", "dev-ml/camldbm", "dev-ml/camlidl", "dev-ml/camlp4", "dev-ml/camlp4", "dev-ml/camlp4", "dev-ml/camlp4", "dev-ml/camlp4", "dev-ml/camlp5", "dev-ml/camlp5", "dev-ml/camlp5", "dev-ml/camlp5", "dev-ml/camlp5", "dev-ml/camlp5", "dev-ml/camlpdf", "dev-ml/camlzip", "dev-ml/camomile", "dev-ml/cinaps", "dev-ml/cinaps", "dev-ml/cinaps", "dev-ml/cmdliner", "dev-ml/core", "dev-ml/core_bench", "dev-ml/core_kernel", "dev-ml/cppo", "dev-ml/cryptokit", "dev-ml/csexp", "dev-ml/csexp", "dev-ml/cudf", "dev-ml/dose3", "dev-ml/dose3", "dev-ml/dose3", "dev-ml/dune-configurator", "dev-ml/dune-configurator", "dev-ml/dune-configurator", "dev-ml/dune-private-libs", "dev-ml/dune-private-libs", "dev-ml/dune-private-libs", "dev-ml/dune", "dev-ml/dune", "dev-ml/dune", "dev-ml/dune", "dev-ml/dune", "dev-ml/dune", "dev-ml/duration", "dev-ml/easy-format", "dev-ml/extlib", "dev-ml/extlib", "dev-ml/facile", "dev-ml/fieldslib", "dev-ml/findlib", "dev-ml/findlib", "dev-ml/fmt", "dev-ml/fpath", "dev-ml/fpath", "dev-ml/graphics", "dev-ml/graphics", "dev-ml/gsl-ocaml", "dev-ml/integers", "dev-ml/jane-street-headers", "dev-ml/jingoo", "dev-ml/jsonm", "dev-ml/jst-config", "dev-ml/lablgl", "dev-ml/lablgtk-sourceview", "dev-ml/lablgtk", "dev-ml/lablgtk", "dev-ml/labltk", "dev-ml/labltk", "dev-ml/labltk", "dev-ml/llvm-ocaml", "dev-ml/llvm-ocaml", "dev-ml/llvm-ocaml", "dev-ml/llvm-ocaml", "dev-ml/llvm-ocaml", "dev-ml/llvm-ocaml", "dev-ml/llvm-ocaml", "dev-ml/llvm-ocaml", "dev-ml/logs", "dev-ml/lwt", "dev-ml/lwt_ssl", "dev-ml/markup", "dev-ml/markup", "dev-ml/mccs", "dev-ml/mccs", "dev-ml/menhir", "dev-ml/menhir", "dev-ml/merlin-extend", "dev-ml/merlin-extend", "dev-ml/merlin", "dev-ml/merlin", "dev-ml/mirage-clock", "dev-ml/mmap", "dev-ml/mtime", "dev-ml/mtime", "dev-ml/num", "dev-ml/num", "dev-ml/ocaml-augeas", "dev-ml/ocaml-autoconf", "dev-ml/ocaml-base64", "dev-ml/ocaml-compiler-libs", "dev-ml/ocaml-ctypes", "dev-ml/ocaml-ctypes", "dev-ml/ocaml-doc", "dev-ml/ocaml-doc", "dev-ml/ocaml-expat", "dev-ml/ocaml-fileutils", "dev-ml/ocaml-fileutils", "dev-ml/ocaml-gettext-camomile", "dev-ml/ocaml-gettext-stub", "dev-ml/ocaml-gettext", "dev-ml/ocaml-gettext", "dev-ml/ocaml-hashcons", "dev-ml/ocaml-migrate-parsetree", "dev-ml/ocaml-migrate-parsetree", "dev-ml/ocaml-migrate-parsetree", "dev-ml/ocaml-sqlite3", "dev-ml/ocaml-ssl", "dev-ml/ocaml-ssl", "dev-ml/ocamlbuild", "dev-ml/ocamlbuild", "dev-ml/ocamlgraph", "dev-ml/ocamlgraph", "dev-ml/ocamlnet", "dev-ml/ocamlnet", "dev-ml/ocamlsdl", "dev-ml/ocamlweb", "dev-ml/ocplib-endian", "dev-ml/ocplib-simplex", "dev-ml/octavius", "dev-ml/ocurl", "dev-ml/opam-client", "dev-ml/opam-client", "dev-ml/opam-client", "dev-ml/opam-core", "dev-ml/opam-core", "dev-ml/opam-file-format", "dev-ml/opam-file-format", "dev-ml/opam-file-format", "dev-ml/opam-format", "dev-ml/opam-format", "dev-ml/opam-format", "dev-ml/opam-installer", "dev-ml/opam-installer", "dev-ml/opam-installer", "dev-ml/opam-installer", "dev-ml/opam-repository", "dev-ml/opam-repository", "dev-ml/opam-repository", "dev-ml/opam-solver", "dev-ml/opam-solver", "dev-ml/opam-solver", "dev-ml/opam-state", "dev-ml/opam-state", "dev-ml/opam-state", "dev-ml/opam", "dev-ml/opam", "dev-ml/ounit2", "dev-ml/ounit2", "dev-ml/parmap", "dev-ml/parmap", "dev-ml/parmap", "dev-ml/parsexp", "dev-ml/patience_diff", "dev-ml/pcre-ocaml", "dev-ml/ppx_assert", "dev-ml/ppx_base", "dev-ml/ppx_bench", "dev-ml/ppx_bin_prot", "dev-ml/ppx_cold", "dev-ml/ppx_compare", "dev-ml/ppx_custom_printf", "dev-ml/ppx_derivers", "dev-ml/ppx_deriving", "dev-ml/ppx_deriving", "dev-ml/ppx_enumerate", "dev-ml/ppx_expect", "dev-ml/ppx_expect", "dev-ml/ppx_fail", "dev-ml/ppx_fields_conv", "dev-ml/ppx_fixed_literal", "dev-ml/ppx_hash", "dev-ml/ppx_here", "dev-ml/ppx_inline_test", "dev-ml/ppx_jane", "dev-ml/ppx_js_style", "dev-ml/ppx_let", "dev-ml/ppx_metaquot", "dev-ml/ppx_module_timer", "dev-ml/ppx_optcomp", "dev-ml/ppx_optional", "dev-ml/ppx_pipebang", "dev-ml/ppx_sexp_conv", "dev-ml/ppx_sexp_conv", "dev-ml/ppx_sexp_conv", "dev-ml/ppx_sexp_message", "dev-ml/ppx_sexp_value", "dev-ml/ppx_stable", "dev-ml/ppx_string", "dev-ml/ppx_tools", "dev-ml/ppx_tools", "dev-ml/ppx_tools_versioned", "dev-ml/ppx_typerep_conv", "dev-ml/ppx_typerep_conv", "dev-ml/ppx_variants_conv", "dev-ml/ppxfind", "dev-ml/ppxlib", "dev-ml/ppxlib", "dev-ml/ppxlib", "dev-ml/ppxlib", "dev-ml/ppxlib", "dev-ml/protocol_version_header", "dev-ml/re", "dev-ml/react", "dev-ml/reactiveData", "dev-ml/result", "dev-ml/rresult", "dev-ml/rresult", "dev-ml/seq", "dev-ml/seq", "dev-ml/sexplib", "dev-ml/sexplib0", "dev-ml/spawn", "dev-ml/splittable_random", "dev-ml/stdio", "dev-ml/stdlib-shims", "dev-ml/stdlib-shims", "dev-ml/textutils", "dev-ml/time_now", "dev-ml/timezone", "dev-ml/topkg", "dev-ml/typerep", "dev-ml/uchar", "dev-ml/unidecode", "dev-ml/uucp", "dev-ml/uuidm", "dev-ml/uunf", "dev-ml/uutf", "dev-ml/uutf", "dev-ml/variantslib", "dev-ml/xml-light", "dev-ml/yojson", "dev-ml/zarith", "dev-ml/zarith", "dev-perl/Ace", "dev-perl/Acme-Damn", "dev-perl/Algorithm-Annotate", "dev-perl/Algorithm-C3", "dev-perl/Algorithm-ClusterPoints", "dev-perl/Algorithm-Dependency", "dev-perl/Algorithm-Diff", "dev-perl/Algorithm-Diff", "dev-perl/Algorithm-Munkres", "dev-perl/Alien-Base-ModuleBuild", "dev-perl/Alien-Build", "dev-perl/Alien-Build", "dev-perl/Alien-GMP", "dev-perl/Alien-Gnuplot", "dev-perl/Alien-HDF4", "dev-perl/Alien-LibGumbo", "dev-perl/Alien-Libxml2", "dev-perl/Alien-Libxml2", "dev-perl/Alien-SDL", "dev-perl/Alien-wxWidgets", "dev-perl/Any-Moose", "dev-perl/AnyEvent-AIO", "dev-perl/AnyEvent-CacheDNS", "dev-perl/AnyEvent-HTTP", "dev-perl/AnyEvent-HTTPD", "dev-perl/AnyEvent-I3", "dev-perl/AnyEvent", "dev-perl/Apache-AuthCookie", "dev-perl/Apache-CGI-Builder", "dev-perl/Apache-DBI", "dev-perl/Apache-LogFormat-Compiler", "dev-perl/Apache-Reload", "dev-perl/Apache-Session", "dev-perl/Apache-Session", "dev-perl/Apache-SizeLimit", "dev-perl/Apache-SizeLimit", "dev-perl/Apache-Test", "dev-perl/Apache2-AuthenNTLM", "dev-perl/App-CLI", "dev-perl/App-Cmd", "dev-perl/App-Cmd", "dev-perl/App-FatPacker", "dev-perl/App-Nopaste", "dev-perl/App-cpanminus", "dev-perl/App-cpanminus", "dev-perl/App-perlbrew", "dev-perl/App-pwhich", "dev-perl/AppConfig", "dev-perl/Archive-Any", "dev-perl/Archive-Extract", "dev-perl/Archive-Extract", "dev-perl/Archive-Tar-Stream", "dev-perl/Archive-Tar-Wrapper", "dev-perl/Archive-Zip", "dev-perl/Array-Compare", "dev-perl/Array-Compare", "dev-perl/Array-RefElem", "dev-perl/Array-Window", "dev-perl/Astro-FITS-Header", "dev-perl/Astro-FITS-Header", "dev-perl/AtExit", "dev-perl/Audio-CD-disc-cover", "dev-perl/Audio-DSP", "dev-perl/Audio-FLAC-Header", "dev-perl/Audio-Mixer", "dev-perl/Audio-Musepack", "dev-perl/Audio-Scan", "dev-perl/Audio-WMA", "dev-perl/Audio-Wav", "dev-perl/Authen-DigestMD5", "dev-perl/Authen-Htpasswd", "dev-perl/Authen-Libwrap", "dev-perl/Authen-NTLM", "dev-perl/Authen-OATH", "dev-perl/Authen-PAM", "dev-perl/Authen-Radius", "dev-perl/Authen-Radius", "dev-perl/Authen-SASL-SASLprep", "dev-perl/Authen-SASL", "dev-perl/Authen-SCRAM", "dev-perl/Authen-Simple-Passwd", "dev-perl/Authen-Simple", "dev-perl/AutoXS-Header", "dev-perl/B-COW", "dev-perl/B-Debug", "dev-perl/B-Flags", "dev-perl/B-Hooks-EndOfScope", "dev-perl/B-Hooks-OP-Check", "dev-perl/B-Hooks-Parser", "dev-perl/B-Keywords", "dev-perl/B-Keywords", "dev-perl/B-OPCheck", "dev-perl/B-Utils", "dev-perl/BDB", "dev-perl/BSD-Resource", "dev-perl/BSON", "dev-perl/BZ-Client", "dev-perl/BZ-Client", "dev-perl/Benchmark-Timer", "dev-perl/BerkeleyDB", "dev-perl/Bio-ASN1-EntrezGene", "dev-perl/Bio-ASN1-EntrezGene", "dev-perl/Bio-DB-HTS", "dev-perl/Bio-Das", "dev-perl/Bio-Graphics", "dev-perl/Bio-SamTools", "dev-perl/Bit-Vector-Minimal", "dev-perl/Bit-Vector", "dev-perl/Boulder", "dev-perl/Browser-Open", "dev-perl/Business-FedEx-DirectConnect", "dev-perl/Business-Hours", "dev-perl/Business-ISBN-Data", "dev-perl/Business-ISBN-Data", "dev-perl/Business-ISBN", "dev-perl/Business-ISMN", "dev-perl/Business-ISMN", "dev-perl/Business-ISSN", "dev-perl/Business-Tax-VAT-Validation", "dev-perl/Business-Tax-VAT-Validation", "dev-perl/Business-UPS", "dev-perl/Business-UPS", "dev-perl/Bytes-Random-Secure", "dev-perl/CBOR-XS", "dev-perl/CBOR-XS", "dev-perl/CDB_File", "dev-perl/CDB_File", "dev-perl/CDDB-File", "dev-perl/CDDB", "dev-perl/CDDB_get", "dev-perl/CGI-Ajax", "dev-perl/CGI-Application-Dispatch", "dev-perl/CGI-Application-Plugin-Redirect", "dev-perl/CGI-Application-Server", "dev-perl/CGI-Application", "dev-perl/CGI-Builder", "dev-perl/CGI-Compile", "dev-perl/CGI-Compile", "dev-perl/CGI-Emulate-PSGI", "dev-perl/CGI-Fast", "dev-perl/CGI-FastTemplate", "dev-perl/CGI-FormBuilder", "dev-perl/CGI-PSGI", "dev-perl/CGI-Session", "dev-perl/CGI-Simple", "dev-perl/CGI", "dev-perl/CGI", "dev-perl/CHI", "dev-perl/CPAN-Changes", "dev-perl/CPAN-Checksums", "dev-perl/CPAN-DistnameInfo", "dev-perl/CPAN-Meta-Check", "dev-perl/CPAN-Mini-Inject", "dev-perl/CPAN-Mini", "dev-perl/CPAN-Perl-Releases", "dev-perl/CPAN-Perl-Releases", "dev-perl/CPAN-Perl-Releases", "dev-perl/CPAN-Uploader", "dev-perl/CQL-Parser", "dev-perl/CSS-Minifier-XS", "dev-perl/CSS-Minifier-XS", "dev-perl/CSS-Minifier", "dev-perl/CSS-Packer", "dev-perl/CSS-Packer", "dev-perl/CSS-Squish", "dev-perl/CSS-Tiny", "dev-perl/Cache-Cache", "dev-perl/Cache-FastMmap", "dev-perl/Cache-FastMmap", "dev-perl/Cache-Memcached-Fast", "dev-perl/Cache-Memcached-Fast", "dev-perl/Cache-Memcached", "dev-perl/Cache-Simple-TimedExpiry", "dev-perl/Cache", "dev-perl/Cairo-GObject", "dev-perl/Cairo", "dev-perl/Cairo", "dev-perl/Calendar-Simple", "dev-perl/Calendar-Simple", "dev-perl/Canary-Stability", "dev-perl/Capture-Tiny", "dev-perl/Carp-Always", "dev-perl/Carp-Assert-More", "dev-perl/Carp-Assert", "dev-perl/Carp-Clan", "dev-perl/Chart-Math-Axis", "dev-perl/Chart", "dev-perl/Chatbot-Eliza", "dev-perl/Cisco-IPPhone", "dev-perl/Cisco-Reconfig", "dev-perl/Class-Accessor-Chained", "dev-perl/Class-Accessor-Grouped", "dev-perl/Class-Accessor-Lite", "dev-perl/Class-Accessor", "dev-perl/Class-Adapter", "dev-perl/Class-Autouse", "dev-perl/Class-Base", "dev-perl/Class-C3-Componentised", "dev-perl/Class-C3-XS", "dev-perl/Class-C3", "dev-perl/Class-C3", "dev-perl/Class-Container", "dev-perl/Class-DBI-AbstractSearch", "dev-perl/Class-DBI-Plugin-DeepAbstractSearch", "dev-perl/Class-DBI-Plugin", "dev-perl/Class-DBI-mysql", "dev-perl/Class-DBI", "dev-perl/Class-Data-Accessor", "dev-perl/Class-Data-Inheritable", "dev-perl/Class-Default", "dev-perl/Class-ErrorHandler", "dev-perl/Class-Factory-Util", "dev-perl/Class-ISA", "dev-perl/Class-InsideOut", "dev-perl/Class-Inspector", "dev-perl/Class-Load-XS", "dev-perl/Class-Load", "dev-perl/Class-Loader", "dev-perl/Class-MakeMethods", "dev-perl/Class-Member", "dev-perl/Class-Method-Modifiers", "dev-perl/Class-MethodMaker", "dev-perl/Class-Mix", "dev-perl/Class-Refresh", "dev-perl/Class-ReturnValue", "dev-perl/Class-Singleton", "dev-perl/Class-Singleton", "dev-perl/Class-Spiffy", "dev-perl/Class-Std-Fast", "dev-perl/Class-Std", "dev-perl/Class-Tiny", "dev-perl/Class-Tiny", "dev-perl/Class-Trigger", "dev-perl/Class-Unload", "dev-perl/Class-Virtual", "dev-perl/Class-WhiteHole", "dev-perl/Class-XPath", "dev-perl/Class-XSAccessor", "dev-perl/Clipboard", "dev-perl/Clipboard", "dev-perl/Clone-Choose", "dev-perl/Clone-PP", "dev-perl/Clone-PP", "dev-perl/Clone", "dev-perl/Clone", "dev-perl/Color-Calc", "dev-perl/Color-Library", "dev-perl/Color-Library", "dev-perl/Compiler-Lexer", "dev-perl/Compress-Bzip2", "dev-perl/Compress-Bzip2", "dev-perl/Compress-LZF", "dev-perl/Conf-Libconfig", "dev-perl/Config-Any", "dev-perl/Config-ApacheFormat", "dev-perl/Config-ApacheFormat", "dev-perl/Config-Auto", "dev-perl/Config-AutoConf", "dev-perl/Config-AutoConf", "dev-perl/Config-Crontab", "dev-perl/Config-General", "dev-perl/Config-Grammar", "dev-perl/Config-Grammar", "dev-perl/Config-INI", "dev-perl/Config-IniFiles", "dev-perl/Config-IniFiles", "dev-perl/Config-JSON", "dev-perl/Config-MVP-Reader-INI", "dev-perl/Config-MVP-Slicer", "dev-perl/Config-MVP", "dev-perl/Config-MVP", "dev-perl/Config-Properties", "dev-perl/Config-Simple", "dev-perl/Config-Tiny", "dev-perl/ConfigReader", "dev-perl/Const-Fast", "dev-perl/Context-Preserve", "dev-perl/Contextual-Return", "dev-perl/Convert-ASCII-Armour", "dev-perl/Convert-ASN1", "dev-perl/Convert-BER", "dev-perl/Convert-Base32", "dev-perl/Convert-BinHex", "dev-perl/Convert-Binary-C", "dev-perl/Convert-Color", "dev-perl/Convert-PEM", "dev-perl/Convert-PEM", "dev-perl/Convert-TNEF", "dev-perl/Convert-UU", "dev-perl/Convert-UUlib", "dev-perl/Convert-UUlib", "dev-perl/Cookie-Baker-XS", "dev-perl/Cookie-Baker-XS", "dev-perl/Cookie-Baker", "dev-perl/Cookie-Baker", "dev-perl/Coro", "dev-perl/Coro", "dev-perl/Cpanel-JSON-XS", "dev-perl/Cpanel-JSON-XS", "dev-perl/Cpanel-JSON-XS", "dev-perl/Crypt-Blowfish", "dev-perl/Crypt-CAST5_PP", "dev-perl/Crypt-CBC", "dev-perl/Crypt-CBC", "dev-perl/Crypt-CBC", "dev-perl/Crypt-CipherSaber", "dev-perl/Crypt-Cracklib", "dev-perl/Crypt-Cracklib", "dev-perl/Crypt-Curve25519", "dev-perl/Crypt-Curve25519", "dev-perl/Crypt-DES", "dev-perl/Crypt-DES", "dev-perl/Crypt-DES_EDE3", "dev-perl/Crypt-DES_EDE3", "dev-perl/Crypt-DH-GMP", "dev-perl/Crypt-DH", "dev-perl/Crypt-DH", "dev-perl/Crypt-DSA", "dev-perl/Crypt-DSA", "dev-perl/Crypt-ECB", "dev-perl/Crypt-Eksblowfish", "dev-perl/Crypt-IDEA", "dev-perl/Crypt-OpenPGP", "dev-perl/Crypt-OpenSSL-Bignum", "dev-perl/Crypt-OpenSSL-DSA", "dev-perl/Crypt-OpenSSL-EC", "dev-perl/Crypt-OpenSSL-ECDSA", "dev-perl/Crypt-OpenSSL-ECDSA", "dev-perl/Crypt-OpenSSL-Guess", "dev-perl/Crypt-OpenSSL-Guess", "dev-perl/Crypt-OpenSSL-RSA", "dev-perl/Crypt-OpenSSL-RSA", "dev-perl/Crypt-OpenSSL-Random", "dev-perl/Crypt-OpenSSL-Random", "dev-perl/Crypt-PBKDF2", "dev-perl/Crypt-PWSafe3", "dev-perl/Crypt-PasswdMD5", "dev-perl/Crypt-Primes", "dev-perl/Crypt-RC4", "dev-perl/Crypt-RIPEMD160", "dev-perl/Crypt-RSA", "dev-perl/Crypt-RSA", "dev-perl/Crypt-Random-Seed", "dev-perl/Crypt-Random-Source", "dev-perl/Crypt-Random-TESHA2", "dev-perl/Crypt-Random", "dev-perl/Crypt-Rijndael", "dev-perl/Crypt-SMIME", "dev-perl/Crypt-SSLeay", "dev-perl/Crypt-Simple", "dev-perl/Crypt-SmbHash", "dev-perl/Crypt-Twofish", "dev-perl/Crypt-Twofish", "dev-perl/Crypt-URandom", "dev-perl/Crypt-X509", "dev-perl/Crypt-X509", "dev-perl/CryptX", "dev-perl/Curses-UI", "dev-perl/Curses", "dev-perl/Curses", "dev-perl/CursesWidgets", "dev-perl/Cwd-Guard", "dev-perl/DBD-MariaDB", "dev-perl/DBD-Pg", "dev-perl/DBD-SQLite", "dev-perl/DBD-mysql", "dev-perl/DBI-Shell", "dev-perl/DBI-Shell", "dev-perl/DBI", "dev-perl/DBICx-TestDatabase", "dev-perl/DBIx-Class-DynamicDefault", "dev-perl/DBIx-Class-InflateColumn-Boolean", "dev-perl/DBIx-Class-InflateColumn-IP", "dev-perl/DBIx-Class-InflateColumn-Object-Enum", "dev-perl/DBIx-Class-UserStamp", "dev-perl/DBIx-Class", "dev-perl/DBIx-ContextualFetch", "dev-perl/DBIx-DBSchema", "dev-perl/DBIx-Migration", "dev-perl/DBIx-Safe", "dev-perl/DBIx-SearchBuilder", "dev-perl/DBIx-Simple", "dev-perl/DB_File-Lock", "dev-perl/Daemon-Generic", "dev-perl/Danga-Socket", "dev-perl/Danga-Socket", "dev-perl/Data-AMF", "dev-perl/Data-Buffer", "dev-perl/Data-Compare", "dev-perl/Data-Compare", "dev-perl/Data-Diver", "dev-perl/Data-Dump-Streamer", "dev-perl/Data-Dump", "dev-perl/Data-DumpXML", "dev-perl/Data-Dumper-Concise", "dev-perl/Data-Float", "dev-perl/Data-FormValidator", "dev-perl/Data-GUID", "dev-perl/Data-HexDump", "dev-perl/Data-HexDump", "dev-perl/Data-Hexify", "dev-perl/Data-Hierarchy", "dev-perl/Data-ICal", "dev-perl/Data-IEEE754", "dev-perl/Data-ObjectDriver", "dev-perl/Data-OptList", "dev-perl/Data-Page-Pageset", "dev-perl/Data-Page", "dev-perl/Data-Password-passwdqc", "dev-perl/Data-Password", "dev-perl/Data-Perl", "dev-perl/Data-Perl", "dev-perl/Data-Printer", "dev-perl/Data-Printer", "dev-perl/Data-Random", "dev-perl/Data-Random", "dev-perl/Data-Section", "dev-perl/Data-Serializer", "dev-perl/Data-ShowTable", "dev-perl/Data-Stag", "dev-perl/Data-Stream-Bulk", "dev-perl/Data-Structure-Util", "dev-perl/Data-Types", "dev-perl/Data-URIEncode", "dev-perl/Data-UUID", "dev-perl/Data-UUID", "dev-perl/Data-Uniqid", "dev-perl/Data-Utilities", "dev-perl/Data-Validate-Domain", "dev-perl/Data-Validate-IP", "dev-perl/Data-Validate-IP", "dev-perl/Data-Visitor", "dev-perl/Date-Calc", "dev-perl/Date-Extract", "dev-perl/Date-ICal", "dev-perl/Date-Leapyear", "dev-perl/Date-Manip", "dev-perl/Date-Pcalc", "dev-perl/Date-Simple", "dev-perl/DateTime-Calendar-Julian", "dev-perl/DateTime-Calendar-Julian", "dev-perl/DateTime-Event-ICal", "dev-perl/DateTime-Event-Recurrence", "dev-perl/DateTime-Format-Builder", "dev-perl/DateTime-Format-Builder", "dev-perl/DateTime-Format-DateParse", "dev-perl/DateTime-Format-Flexible", "dev-perl/DateTime-Format-HTTP", "dev-perl/DateTime-Format-Human-Duration", "dev-perl/DateTime-Format-ICal", "dev-perl/DateTime-Format-ISO8601", "dev-perl/DateTime-Format-ISO8601", "dev-perl/DateTime-Format-ISO8601", "dev-perl/DateTime-Format-Mail", "dev-perl/DateTime-Format-Natural", "dev-perl/DateTime-Format-Natural", "dev-perl/DateTime-Format-SQLite", "dev-perl/DateTime-Format-Strptime", "dev-perl/DateTime-Format-Strptime", "dev-perl/DateTime-Format-Strptime", "dev-perl/DateTime-Format-W3CDTF", "dev-perl/DateTime-Format-W3CDTF", "dev-perl/DateTime-HiRes", "dev-perl/DateTime-HiRes", "dev-perl/DateTime-Locale", "dev-perl/DateTime-Locale", "dev-perl/DateTime-Locale", "dev-perl/DateTime-Set", "dev-perl/DateTime-Set", "dev-perl/DateTime-TimeZone", "dev-perl/DateTime-TimeZone", "dev-perl/DateTime-Tiny", "dev-perl/DateTime", "dev-perl/DateTimeX-Easy", "dev-perl/Debug-Client", "dev-perl/Deliantra", "dev-perl/DelimMatch", "dev-perl/Devel-ArgNames", "dev-perl/Devel-CallChecker", "dev-perl/Devel-Caller", "dev-perl/Devel-CheckBin", "dev-perl/Devel-CheckCompiler", "dev-perl/Devel-CheckLib", "dev-perl/Devel-CheckLib", "dev-perl/Devel-CheckOS", "dev-perl/Devel-CheckOS", "dev-perl/Devel-Cover", "dev-perl/Devel-Cycle", "dev-perl/Devel-Declare", "dev-perl/Devel-Dumpvar", "dev-perl/Devel-FindPerl", "dev-perl/Devel-GlobalDestruction", "dev-perl/Devel-GlobalPhase", "dev-perl/Devel-Hide", "dev-perl/Devel-Leak", "dev-perl/Devel-LexAlias", "dev-perl/Devel-NYTProf", "dev-perl/Devel-OverloadInfo", "dev-perl/Devel-OverrideGlobalRequire", "dev-perl/Devel-PatchPerl", "dev-perl/Devel-REPL", "dev-perl/Devel-Refactor", "dev-perl/Devel-SimpleTrace", "dev-perl/Devel-Size", "dev-perl/Devel-Size", "dev-perl/Devel-SmallProf", "dev-perl/Devel-StackTrace-AsHTML", "dev-perl/Devel-StackTrace", "dev-perl/Devel-StackTrace", "dev-perl/Devel-Symdump", "dev-perl/Device-SerialPort", "dev-perl/Digest-BubbleBabble", "dev-perl/Digest-CRC", "dev-perl/Digest-CRC", "dev-perl/Digest-GOST", "dev-perl/Digest-HMAC", "dev-perl/Digest-HMAC", "dev-perl/Digest-JHash", "dev-perl/Digest-MD2", "dev-perl/Digest-MD4", "dev-perl/Digest-MD5-File", "dev-perl/Digest-Nilsimsa", "dev-perl/Digest-Perl-MD5", "dev-perl/Digest-SHA1", "dev-perl/Digest-SHA3", "dev-perl/Dist-CheckConflicts", "dev-perl/Dist-Metadata", "dev-perl/Dist-Milla", "dev-perl/Dist-Zilla-Config-Slicer", "dev-perl/Dist-Zilla-Plugin-AuthorsFromGit", "dev-perl/Dist-Zilla-Plugin-CheckChangesHasContent", "dev-perl/Dist-Zilla-Plugin-CheckExtraTests", "dev-perl/Dist-Zilla-Plugin-Config-Git", "dev-perl/Dist-Zilla-Plugin-ContributorsFile", "dev-perl/Dist-Zilla-Plugin-CopyFilesFromBuild", "dev-perl/Dist-Zilla-Plugin-CopyFilesFromRelease", "dev-perl/Dist-Zilla-Plugin-Git-Contributors", "dev-perl/Dist-Zilla-Plugin-Git-Contributors", "dev-perl/Dist-Zilla-Plugin-Git", "dev-perl/Dist-Zilla-Plugin-GithubMeta", "dev-perl/Dist-Zilla-Plugin-LicenseFromModule", "dev-perl/Dist-Zilla-Plugin-MakeMaker-Awesome", "dev-perl/Dist-Zilla-Plugin-Meta-Contributors", "dev-perl/Dist-Zilla-Plugin-MetaProvides-Package", "dev-perl/Dist-Zilla-Plugin-MetaProvides", "dev-perl/Dist-Zilla-Plugin-ModuleBuildTiny", "dev-perl/Dist-Zilla-Plugin-NameFromDirectory", "dev-perl/Dist-Zilla-Plugin-NextVersion-Semantic", "dev-perl/Dist-Zilla-Plugin-NextVersion-Semantic", "dev-perl/Dist-Zilla-Plugin-OSPrereqs", "dev-perl/Dist-Zilla-Plugin-OurPkgVersion", "dev-perl/Dist-Zilla-Plugin-PodWeaver", "dev-perl/Dist-Zilla-Plugin-Prereqs-FromCPANfile", "dev-perl/Dist-Zilla-Plugin-RPM", "dev-perl/Dist-Zilla-Plugin-ReadmeAnyFromPod", "dev-perl/Dist-Zilla-Plugin-ReadmeFromPod", "dev-perl/Dist-Zilla-Plugin-ReversionOnRelease", "dev-perl/Dist-Zilla-Plugin-Run", "dev-perl/Dist-Zilla-Plugin-StaticInstall", "dev-perl/Dist-Zilla-Plugin-SurgicalPodWeaver", "dev-perl/Dist-Zilla-Plugin-Test-CPAN-Changes", "dev-perl/Dist-Zilla-Plugin-Test-Compile", "dev-perl/Dist-Zilla-Plugin-Test-MinimumVersion", "dev-perl/Dist-Zilla-Plugin-Test-Perl-Critic", "dev-perl/Dist-Zilla-Plugin-VersionFromMainModule", "dev-perl/Dist-Zilla-Role-FileWatcher", "dev-perl/Dist-Zilla-Role-ModuleMetadata", "dev-perl/Dist-Zilla-Role-PluginBundle-PluginRemover", "dev-perl/Dist-Zilla", "dev-perl/Dist-Zilla", "dev-perl/Dumbbench", "dev-perl/Dumbbench", "dev-perl/DynaLoader-Functions", "dev-perl/EV", "dev-perl/EV", "dev-perl/Emacs-PDE", "dev-perl/Email-Abstract", "dev-perl/Email-Address-List", "dev-perl/Email-Address-XS", "dev-perl/Email-Address-XS", "dev-perl/Email-Address", "dev-perl/Email-Date-Format", "dev-perl/Email-Date", "dev-perl/Email-Filter", "dev-perl/Email-Find", "dev-perl/Email-FolderType", "dev-perl/Email-LocalDelivery", "dev-perl/Email-MIME-Attachment-Stripper", "dev-perl/Email-MIME-ContentType", "dev-perl/Email-MIME-Encodings", "dev-perl/Email-MIME", "dev-perl/Email-MIME", "dev-perl/Email-MessageID", "dev-perl/Email-Reply", "dev-perl/Email-Send-Gmail", "dev-perl/Email-Send", "dev-perl/Email-Sender", "dev-perl/Email-Simple", "dev-perl/Email-Simple", "dev-perl/Email-Valid", "dev-perl/Encode-Detect", "dev-perl/Encode-EUCJPASCII", "dev-perl/Encode-HanConvert", "dev-perl/Encode-HanExtra", "dev-perl/Encode-IMAPUTF7", "dev-perl/Encode-JIS2K", "dev-perl/Encode-Locale", "dev-perl/Encode-compat", "dev-perl/Error", "dev-perl/Error", "dev-perl/Eval-Closure", "dev-perl/Eval-LineNumbers", "dev-perl/Event-ExecFlow", "dev-perl/Event-RPC", "dev-perl/Event-RPC", "dev-perl/Event", "dev-perl/Exception-Base", "dev-perl/Exception-Class", "dev-perl/Exception-Died", "dev-perl/Exception-System", "dev-perl/Exception-Warning", "dev-perl/Expect", "dev-perl/Exporter-Cluster", "dev-perl/Exporter-Lite", "dev-perl/Exporter-Tiny", "dev-perl/Exporter-Tiny", "dev-perl/ExtUtils-AutoInstall", "dev-perl/ExtUtils-CChecker", "dev-perl/ExtUtils-Config", "dev-perl/ExtUtils-CppGuess", "dev-perl/ExtUtils-CppGuess", "dev-perl/ExtUtils-Depends", "dev-perl/ExtUtils-F77", "dev-perl/ExtUtils-HasCompiler", "dev-perl/ExtUtils-Helpers", "dev-perl/ExtUtils-InstallPaths", "dev-perl/ExtUtils-InstallPaths", "dev-perl/ExtUtils-LibBuilder", "dev-perl/ExtUtils-PkgConfig", "dev-perl/ExtUtils-Typemaps-Default", "dev-perl/ExtUtils-XSBuilder", "dev-perl/ExtUtils-XSpp", "dev-perl/FCGI-ProcManager", "dev-perl/FCGI", "dev-perl/FCGI", "dev-perl/FFI-CheckLib", "dev-perl/FLV-AudioExtractor", "dev-perl/Fatal-Exception", "dev-perl/Feed-Find", "dev-perl/Festival-Client-Async", "dev-perl/File-BOM", "dev-perl/File-BaseDir", "dev-perl/File-BaseDir", "dev-perl/File-Copy-Link", "dev-perl/File-Copy-Recursive-Reduced", "dev-perl/File-Copy-Recursive", "dev-perl/File-Copy-Recursive", "dev-perl/File-DesktopEntry", "dev-perl/File-Find-Rule-Perl", "dev-perl/File-Find-Rule", "dev-perl/File-Flat", "dev-perl/File-Flat", "dev-perl/File-Flock", "dev-perl/File-Grep", "dev-perl/File-HomeDir", "dev-perl/File-HomeDir", "dev-perl/File-KeePass", "dev-perl/File-LibMagic", "dev-perl/File-LibMagic", "dev-perl/File-Listing", "dev-perl/File-MMagic", "dev-perl/File-Map", "dev-perl/File-MimeInfo", "dev-perl/File-MimeInfo", "dev-perl/File-MimeInfo", "dev-perl/File-NCopy", "dev-perl/File-NFSLock", "dev-perl/File-NFSLock", "dev-perl/File-Next", "dev-perl/File-Path-Expand", "dev-perl/File-ReadBackwards", "dev-perl/File-ReadBackwards", "dev-perl/File-Remove", "dev-perl/File-RsyncP", "dev-perl/File-RsyncP", "dev-perl/File-Scan-ClamAV", "dev-perl/File-SearchPath", "dev-perl/File-Share", "dev-perl/File-ShareDir-Install", "dev-perl/File-ShareDir-Install", "dev-perl/File-ShareDir-ProjectDistDir", "dev-perl/File-ShareDir", "dev-perl/File-ShareDir", "dev-perl/File-ShareDir", "dev-perl/File-Slurp-Tiny", "dev-perl/File-Slurp", "dev-perl/File-Slurp", "dev-perl/File-Slurper", "dev-perl/File-Sort", "dev-perl/File-Spec-Native", "dev-perl/File-Stat-Bits", "dev-perl/File-Sync", "dev-perl/File-Tail", "dev-perl/File-Tempdir", "dev-perl/File-Type", "dev-perl/File-Which", "dev-perl/File-chdir", "dev-perl/File-chmod", "dev-perl/File-pushd", "dev-perl/File-pushd", "dev-perl/FileHandle-Unget", "dev-perl/FileHandle-Unget", "dev-perl/Filesys-Df", "dev-perl/Filesys-DiskSpace", "dev-perl/Filesys-Notify-Simple", "dev-perl/Filesys-Notify-Simple", "dev-perl/Filesys-SmbClient", "dev-perl/Filesys-Statvfs", "dev-perl/Filter", "dev-perl/Filter", "dev-perl/Finance-Quote", "dev-perl/Finance-Quote", "dev-perl/Finance-YahooQuote", "dev-perl/Finance-YahooQuote", "dev-perl/Font-AFM", "dev-perl/Font-TTF", "dev-perl/Format-Human-Bytes", "dev-perl/FreezeThaw", "dev-perl/Frontier-RPC", "dev-perl/Fuse", "dev-perl/GD-Barcode", "dev-perl/GD-Graph3d", "dev-perl/GD-SVG", "dev-perl/GD", "dev-perl/GDGraph", "dev-perl/GDTextUtil", "dev-perl/GSSAPI", "dev-perl/Gearman-Client-Async", "dev-perl/Gearman-Server", "dev-perl/Gearman", "dev-perl/Gearman", "dev-perl/Gentoo-App-Pram", "dev-perl/Gentoo-App-Pram", "dev-perl/Gentoo-PerlMod-Version", "dev-perl/Geo-IP", "dev-perl/GeoIP2", "dev-perl/Geography-Countries", "dev-perl/Getopt-ArgvFile", "dev-perl/Getopt-GUI-Long", "dev-perl/Getopt-Long-Descriptive", "dev-perl/Getopt-Long-Descriptive", "dev-perl/Getopt-Mixed", "dev-perl/Getopt-Tabular", "dev-perl/Git-Wrapper", "dev-perl/Git-Wrapper", "dev-perl/Glib-Object-Introspection", "dev-perl/Glib-Object-Introspection", "dev-perl/GnuPG-Interface", "dev-perl/GnuPG-Interface", "dev-perl/Goo-Canvas", "dev-perl/GooCanvas2-CairoTypes", "dev-perl/GooCanvas2", "dev-perl/Google-Ads-AdWords-Client", "dev-perl/Google-Ads-AdWords-Client", "dev-perl/Graph-Easy", "dev-perl/Graph", "dev-perl/Graph", "dev-perl/GraphViz", "dev-perl/Graphics-ColorNames-WWW", "dev-perl/Graphics-ColorNames-WWW", "dev-perl/Graphics-ColorNames", "dev-perl/Graphics-ColorNames", "dev-perl/Graphics-ColorObject", "dev-perl/Growl-GNTP", "dev-perl/Gtk2-Ex-PodViewer", "dev-perl/Gtk2-Ex-PrintDialog", "dev-perl/Gtk2-Ex-Simple-List", "dev-perl/Gtk2-ImageView", "dev-perl/Gtk2-Notify", "dev-perl/Gtk2-SourceView2", "dev-perl/Gtk2-SourceView2", "dev-perl/Gtk2-Unique", "dev-perl/Gtk2-Unique", "dev-perl/Gtk2", "dev-perl/Gtk2", "dev-perl/Gtk3-ImageView", "dev-perl/Gtk3-SimpleList", "dev-perl/Gtk3-SimpleList", "dev-perl/Gtk3", "dev-perl/Gtk3", "dev-perl/Guard", "dev-perl/HTML-Clean", "dev-perl/HTML-Clean", "dev-perl/HTML-Element-Extended", "dev-perl/HTML-FillInForm", "dev-perl/HTML-Form", "dev-perl/HTML-Form", "dev-perl/HTML-FormatText-WithLinks-AndTables", "dev-perl/HTML-FormatText-WithLinks", "dev-perl/HTML-Formatter", "dev-perl/HTML-FromText", "dev-perl/HTML-Gumbo", "dev-perl/HTML-HTMLDoc", "dev-perl/HTML-HTMLDoc", "dev-perl/HTML-Highlight", "dev-perl/HTML-LinkExtractor", "dev-perl/HTML-Mason-PSGIHandler", "dev-perl/HTML-Mason", "dev-perl/HTML-Mason", "dev-perl/HTML-Object", "dev-perl/HTML-Object", "dev-perl/HTML-Packer", "dev-perl/HTML-Packer", "dev-perl/HTML-Parser", "dev-perl/HTML-Parser", "dev-perl/HTML-Quoted", "dev-perl/HTML-RewriteAttributes", "dev-perl/HTML-Scrubber", "dev-perl/HTML-Scrubber", "dev-perl/HTML-SimpleParse", "dev-perl/HTML-Strip", "dev-perl/HTML-StripScripts-Parser", "dev-perl/HTML-StripScripts", "dev-perl/HTML-Table", "dev-perl/HTML-TableContentParser", "dev-perl/HTML-TableContentParser", "dev-perl/HTML-TableExtract", "dev-perl/HTML-TableParser", "dev-perl/HTML-TableParser", "dev-perl/HTML-TagFilter", "dev-perl/HTML-Tagset", "dev-perl/HTML-Template-Expr", "dev-perl/HTML-Template-JIT", "dev-perl/HTML-Template-Pro", "dev-perl/HTML-Template", "dev-perl/HTML-TokeParser-Simple", "dev-perl/HTML-Tree", "dev-perl/HTTP-Body", "dev-perl/HTTP-BrowserDetect", "dev-perl/HTTP-BrowserDetect", "dev-perl/HTTP-Cache-Transparent", "dev-perl/HTTP-CookieJar", "dev-perl/HTTP-CookieJar", "dev-perl/HTTP-Cookies", "dev-perl/HTTP-Cookies", "dev-perl/HTTP-DAV", "dev-perl/HTTP-DAV", "dev-perl/HTTP-Daemon", "dev-perl/HTTP-Daemon", "dev-perl/HTTP-Date", "dev-perl/HTTP-Date", "dev-perl/HTTP-Entity-Parser", "dev-perl/HTTP-Entity-Parser", "dev-perl/HTTP-Exception", "dev-perl/HTTP-Headers-Fast", "dev-perl/HTTP-Message", "dev-perl/HTTP-MultiPartParser", "dev-perl/HTTP-Negotiate", "dev-perl/HTTP-Request-AsCGI", "dev-perl/HTTP-Response-Encoding", "dev-perl/HTTP-Server-Simple-Mason", "dev-perl/HTTP-Server-Simple-PSGI", "dev-perl/HTTP-Server-Simple-Static", "dev-perl/HTTP-Server-Simple", "dev-perl/Hash-FieldHash", "dev-perl/Hash-Merge-Simple", "dev-perl/Hash-Merge", "dev-perl/Hash-Merge", "dev-perl/Hash-MoreUtils", "dev-perl/Hash-MoreUtils", "dev-perl/Hash-MultiValue", "dev-perl/Hash-NoRef", "dev-perl/Heap", "dev-perl/Hook-LexWrap", "dev-perl/IMAP-Admin", "dev-perl/IMAP-BodyStructure", "dev-perl/IO-AIO", "dev-perl/IO-AIO", "dev-perl/IO-All", "dev-perl/IO-BufferedSelect", "dev-perl/IO-Capture", "dev-perl/IO-CaptureOutput", "dev-perl/IO-CaptureOutput", "dev-perl/IO-Compress-Brotli", "dev-perl/IO-Digest", "dev-perl/IO-Event", "dev-perl/IO-HTML", "dev-perl/IO-HTML", "dev-perl/IO-Handle-Util", "dev-perl/IO-Handle-Util", "dev-perl/IO-Interactive", "dev-perl/IO-Interactive", "dev-perl/IO-Interface", "dev-perl/IO-LockedFile", "dev-perl/IO-Multiplex", "dev-perl/IO-Pager", "dev-perl/IO-Pager", "dev-perl/IO-Pipely", "dev-perl/IO-Prompt", "dev-perl/IO-SessionData", "dev-perl/IO-Socket-INET6", "dev-perl/IO-Socket-Multicast", "dev-perl/IO-Socket-PortState", "dev-perl/IO-Socket-SSL", "dev-perl/IO-Socket-SSL", "dev-perl/IO-Socket-Timeout", "dev-perl/IO-String", "dev-perl/IO-Stty", "dev-perl/IO-Stty", "dev-perl/IO-Tee", "dev-perl/IO-Tee", "dev-perl/IO-TieCombine", "dev-perl/IO-Tty", "dev-perl/IO-Tty", "dev-perl/IO-Util", "dev-perl/IO-stringy", "dev-perl/IO-stringy", "dev-perl/IP-Anonymous", "dev-perl/IPC-Run", "dev-perl/IPC-Run", "dev-perl/IPC-Run3", "dev-perl/IPC-ShareLite", "dev-perl/IPC-Shareable", "dev-perl/IPC-Shareable", "dev-perl/IPC-Signal", "dev-perl/IPC-System-Simple", "dev-perl/IPC-System-Simple", "dev-perl/Ima-DBI", "dev-perl/Image-Imlib2", "dev-perl/Image-Info", "dev-perl/Image-Info", "dev-perl/Image-Sane", "dev-perl/Image-Sane", "dev-perl/Image-Scale", "dev-perl/Image-Scale", "dev-perl/Image-Size", "dev-perl/Import-Into", "dev-perl/Importer", "dev-perl/Importer", "dev-perl/Inline-C", "dev-perl/Inline-C", "dev-perl/Inline-Files", "dev-perl/Inline-Files", "dev-perl/Inline-Python", "dev-perl/Inline", "dev-perl/Inline", "dev-perl/JSON-Any", "dev-perl/JSON-MaybeXS", "dev-perl/JSON-MaybeXS", "dev-perl/JSON-Parse", "dev-perl/JSON-Parse", "dev-perl/JSON-RPC", "dev-perl/JSON-XS-VersionOneAndTwo", "dev-perl/JSON-XS", "dev-perl/JSON-XS", "dev-perl/JSON", "dev-perl/JSON", "dev-perl/JavaScript-Minifier-XS", "dev-perl/JavaScript-Minifier-XS", "dev-perl/JavaScript-Minifier", "dev-perl/JavaScript-Minifier", "dev-perl/JavaScript-Packer", "dev-perl/JavaScript-Packer", "dev-perl/JavaScript-SpiderMonkey", "dev-perl/Jcode", "dev-perl/LWP-Authen-Wsse", "dev-perl/LWP-MediaTypes", "dev-perl/LWP-MediaTypes", "dev-perl/LWP-Online", "dev-perl/LWP-Protocol-http10", "dev-perl/LWP-Protocol-https", "dev-perl/LWP-Protocol-https", "dev-perl/LWP-UserAgent-Cached", "dev-perl/LWP-UserAgent-Cached", "dev-perl/LWP-UserAgent-Determined", "dev-perl/LWPx-ParanoidAgent", "dev-perl/LaTeX-Driver", "dev-perl/LaTeX-Driver", "dev-perl/LaTeX-Encode", "dev-perl/LaTeX-Table", "dev-perl/Lab-Measurement", "dev-perl/Lab-Measurement", "dev-perl/Lab-Measurement", "dev-perl/Lab-Measurement", "dev-perl/Lab-VXI11", "dev-perl/Lab-VXI11", "dev-perl/Lab-Zhinst", "dev-perl/Lab-Zhinst", "dev-perl/Lchown", "dev-perl/Lexical-Persistence", "dev-perl/Lexical-SealRequireHints", "dev-perl/Lingua-EN-Inflect", "dev-perl/Lingua-EN-Inflect", "dev-perl/Lingua-EN-NameCase", "dev-perl/Lingua-EN-NameCase", "dev-perl/Lingua-EN-NameParse", "dev-perl/Lingua-EN-NameParse", "dev-perl/Lingua-EN-Numbers-Ordinate", "dev-perl/Lingua-EN-Numbers-Ordinate", "dev-perl/Lingua-PT-Stemmer", "dev-perl/Lingua-Preferred", "dev-perl/Lingua-Stem-Fr", "dev-perl/Lingua-Stem-It", "dev-perl/Lingua-Stem-Ru", "dev-perl/Lingua-Stem-Snowball-Da", "dev-perl/Lingua-Stem", "dev-perl/Lingua-Stem", "dev-perl/Lingua-Translit", "dev-perl/Linux-DesktopFiles", "dev-perl/Linux-Distribution", "dev-perl/Linux-Inotify2", "dev-perl/Linux-Inotify2", "dev-perl/Linux-Pid", "dev-perl/Linux-PipeMagic", "dev-perl/Linux-Smaps", "dev-perl/Lirc-Client", "dev-perl/List-AllUtils", "dev-perl/List-AllUtils", "dev-perl/List-MoreUtils-XS", "dev-perl/List-MoreUtils-XS", "dev-perl/List-MoreUtils", "dev-perl/List-MoreUtils", "dev-perl/List-SomeUtils-XS", "dev-perl/List-SomeUtils-XS", "dev-perl/List-SomeUtils", "dev-perl/List-SomeUtils", "dev-perl/List-UtilsBy", "dev-perl/List-UtilsBy", "dev-perl/Locale-Codes", "dev-perl/Locale-Codes", "dev-perl/Locale-Maketext-Fuzzy", "dev-perl/Locale-Maketext-Lexicon", "dev-perl/Locale-Msgfmt", "dev-perl/Locale-PO", "dev-perl/Locale-gettext", "dev-perl/LockFile-Simple", "dev-perl/Log-Agent", "dev-perl/Log-Agent", "dev-perl/Log-Any", "dev-perl/Log-Any", "dev-perl/Log-Dispatch-Array", "dev-perl/Log-Dispatch", "dev-perl/Log-Dispatch", "dev-perl/Log-Dispatchouli", "dev-perl/Log-Dispatchouli", "dev-perl/Log-Log4perl", "dev-perl/Log-Log4perl", "dev-perl/Log-Message-Simple", "dev-perl/Log-Message", "dev-perl/Log-Report-Optional", "dev-perl/Log-Report-Optional", "dev-perl/Log-Report", "dev-perl/Log-Report", "dev-perl/Log-TraceMessages", "dev-perl/MARC-Charset", "dev-perl/MARC-File-XML", "dev-perl/MARC-Record", "dev-perl/MCE", "dev-perl/MCE", "dev-perl/MD5", "dev-perl/MIME-Base32", "dev-perl/MIME-Charset", "dev-perl/MIME-EncWords", "dev-perl/MIME-Lite-HTML", "dev-perl/MIME-Lite", "dev-perl/MIME-Lite", "dev-perl/MIME-Types", "dev-perl/MIME-Types", "dev-perl/MIME-tools", "dev-perl/MLDBM-Sync", "dev-perl/MLDBM", "dev-perl/MP3-Info", "dev-perl/MP3-Tag", "dev-perl/MP4-Info", "dev-perl/MRO-Compat", "dev-perl/Mac-Pasteboard", "dev-perl/Mail-Audit", "dev-perl/Mail-AuthenticationResults", "dev-perl/Mail-Box-IMAP4", "dev-perl/Mail-Box-IMAP4", "dev-perl/Mail-Box-POP3", "dev-perl/Mail-Box-POP3", "dev-perl/Mail-Box", "dev-perl/Mail-Box", "dev-perl/Mail-Builder-Simple", "dev-perl/Mail-Builder", "dev-perl/Mail-DKIM", "dev-perl/Mail-DKIM", "dev-perl/Mail-DMARC", "dev-perl/Mail-DMARC", "dev-perl/Mail-DomainKeys", "dev-perl/Mail-IMAPClient", "dev-perl/Mail-IMAPClient", "dev-perl/Mail-ListDetector", "dev-perl/Mail-Mbox-MessageParser", "dev-perl/Mail-Mbox-MessageParser", "dev-perl/Mail-Message", "dev-perl/Mail-Message", "dev-perl/Mail-POP3Client", "dev-perl/Mail-Procmail", "dev-perl/Mail-SPF", "dev-perl/Mail-SRS", "dev-perl/Mail-Sender", "dev-perl/Mail-Sendmail", "dev-perl/Mail-Transport", "dev-perl/Mail-Transport", "dev-perl/MailTools", "dev-perl/MailTools", "dev-perl/Math-Base-Convert", "dev-perl/Math-Base36", "dev-perl/Math-Bezier", "dev-perl/Math-BigInt-GMP", "dev-perl/Math-BigInt-GMP", "dev-perl/Math-BigInt-Lite", "dev-perl/Math-BigInt-Lite", "dev-perl/Math-CDF", "dev-perl/Math-Calc-Units", "dev-perl/Math-Derivative", "dev-perl/Math-FFT", "dev-perl/Math-FFT", "dev-perl/Math-Factor-XS", "dev-perl/Math-GMP", "dev-perl/Math-GMP", "dev-perl/Math-Int128", "dev-perl/Math-Int64", "dev-perl/Math-Libm", "dev-perl/Math-ModInt", "dev-perl/Math-ModInt", "dev-perl/Math-NumSeq", "dev-perl/Math-NumSeq", "dev-perl/Math-NumberCruncher", "dev-perl/Math-Pari", "dev-perl/Math-PlanePath", "dev-perl/Math-PlanePath", "dev-perl/Math-Prime-XS", "dev-perl/Math-Random-ISAAC-XS", "dev-perl/Math-Random-ISAAC", "dev-perl/Math-Random-MT", "dev-perl/Math-Random-Secure", "dev-perl/Math-Random", "dev-perl/Math-Round", "dev-perl/Math-Spline", "dev-perl/Math-Utils", "dev-perl/Math-Utils", "dev-perl/Math-Vec", "dev-perl/Math-VecStat", "dev-perl/MaxMind-DB-Common", "dev-perl/MaxMind-DB-Reader-XS", "dev-perl/MaxMind-DB-Reader", "dev-perl/MediaWiki-API", "dev-perl/MediaWiki-API", "dev-perl/Mixin-Linewise", "dev-perl/Mixin-Linewise", "dev-perl/Mo", "dev-perl/Mock-Config", "dev-perl/Modem-Vgetty", "dev-perl/Modern-Perl", "dev-perl/Modern-Perl", "dev-perl/Module-Build-Tiny", "dev-perl/Module-Build-WithXSpp", "dev-perl/Module-Build-XSUtil", "dev-perl/Module-Build-XSUtil", "dev-perl/Module-Build", "dev-perl/Module-Build", "dev-perl/Module-CPANfile", "dev-perl/Module-Compile", "dev-perl/Module-Compile", "dev-perl/Module-Find", "dev-perl/Module-Find", "dev-perl/Module-Implementation", "dev-perl/Module-Info", "dev-perl/Module-Install-AuthorTests", "dev-perl/Module-Install", "dev-perl/Module-Install", "dev-perl/Module-Locate", "dev-perl/Module-Manifest", "dev-perl/Module-Manifest", "dev-perl/Module-Path", "dev-perl/Module-Pluggable", "dev-perl/Module-Refresh", "dev-perl/Module-Runtime-Conflicts", "dev-perl/Module-Runtime", "dev-perl/Module-ScanDeps", "dev-perl/Module-ScanDeps", "dev-perl/Module-Signature", "dev-perl/Module-Signature", "dev-perl/Module-Starter", "dev-perl/Module-Starter", "dev-perl/Module-Util", "dev-perl/Module-Versions-Report", "dev-perl/MogileFS-Client-Async", "dev-perl/MogileFS-Client-Async", "dev-perl/MogileFS-Client", "dev-perl/MogileFS-Network", "dev-perl/MogileFS-Server", "dev-perl/MogileFS-Utils", "dev-perl/Mojolicious", "dev-perl/Mojolicious", "dev-perl/Mojolicious", "dev-perl/Mon", "dev-perl/MongoDB", "dev-perl/Monitoring-Plugin", "dev-perl/Moo", "dev-perl/Moo", "dev-perl/MooX-HandlesVia", "dev-perl/MooX-HandlesVia", "dev-perl/MooX-StrictConstructor", "dev-perl/MooX-StrictConstructor", "dev-perl/MooX-Types-MooseLike-Numeric", "dev-perl/MooX-Types-MooseLike", "dev-perl/MooX-late", "dev-perl/MooX-late", "dev-perl/Moose-Autobox", "dev-perl/Moose", "dev-perl/Moose", "dev-perl/Moose", "dev-perl/MooseX-Aliases", "dev-perl/MooseX-ClassAttribute", "dev-perl/MooseX-ConfigFromFile", "dev-perl/MooseX-FollowPBP", "dev-perl/MooseX-Getopt", "dev-perl/MooseX-Getopt", "dev-perl/MooseX-GlobRef", "dev-perl/MooseX-Has-Sugar", "dev-perl/MooseX-LazyRequire", "dev-perl/MooseX-MultiInitArg", "dev-perl/MooseX-Object-Pluggable", "dev-perl/MooseX-OneArgNew", "dev-perl/MooseX-Params-Validate", "dev-perl/MooseX-Role-Parameterized", "dev-perl/MooseX-Role-Parameterized", "dev-perl/MooseX-Role-WithOverloading", "dev-perl/MooseX-SetOnce", "dev-perl/MooseX-SetOnce", "dev-perl/MooseX-SimpleConfig", "dev-perl/MooseX-StrictConstructor", "dev-perl/MooseX-Types-DateTime-ButMaintained", "dev-perl/MooseX-Types-DateTime-MoreCoercions", "dev-perl/MooseX-Types-DateTime", "dev-perl/MooseX-Types-DateTimeX", "dev-perl/MooseX-Types-JSON", "dev-perl/MooseX-Types-Path-Class", "dev-perl/MooseX-Types-Path-Tiny", "dev-perl/MooseX-Types-Perl", "dev-perl/MooseX-Types-Stringlike", "dev-perl/MooseX-Types-URI", "dev-perl/MooseX-Types-URI", "dev-perl/MooseX-Types", "dev-perl/Mouse", "dev-perl/Mouse", "dev-perl/Mouse", "dev-perl/MouseX-NativeTraits", "dev-perl/MouseX-Types", "dev-perl/Mozilla-CA", "dev-perl/Mozilla-PublicSuffix", "dev-perl/Mozilla-PublicSuffix", "dev-perl/MusicBrainz-DiscID", "dev-perl/Net-ARP", "dev-perl/Net-ARP", "dev-perl/Net-Amazon-S3", "dev-perl/Net-Amazon-S3", "dev-perl/Net-Amazon", "dev-perl/Net-Bonjour", "dev-perl/Net-CIDR-Lite", "dev-perl/Net-CIDR", "dev-perl/Net-CIDR", "dev-perl/Net-CUPS", "dev-perl/Net-DBus", "dev-perl/Net-DBus", "dev-perl/Net-DBus", "dev-perl/Net-DNS-Async", "dev-perl/Net-DNS-Resolver-Mock", "dev-perl/Net-DNS-Resolver-Mock", "dev-perl/Net-DNS-Resolver-Programmable", "dev-perl/Net-DNS-SEC", "dev-perl/Net-DNS-SEC", "dev-perl/Net-DNS-SEC", "dev-perl/Net-DNS", "dev-perl/Net-DNS", "dev-perl/Net-DNS", "dev-perl/Net-Daemon", "dev-perl/Net-Daemon", "dev-perl/Net-Domain-TLD", "dev-perl/Net-FreeDB", "dev-perl/Net-Google-SafeBrowsing-Blocklist", "dev-perl/Net-HTTP", "dev-perl/Net-HTTP", "dev-perl/Net-IDN-Encode", "dev-perl/Net-IMAP-Simple-SSL", "dev-perl/Net-IMAP-Simple", "dev-perl/Net-IMAP-Simple", "dev-perl/Net-IP-Minimal", "dev-perl/Net-IP", "dev-perl/Net-IPv4Addr", "dev-perl/Net-IRC", "dev-perl/Net-IRR", "dev-perl/Net-Ident", "dev-perl/Net-Ident", "dev-perl/Net-Jabber", "dev-perl/Net-LDAP-Server", "dev-perl/Net-LDAPapi", "dev-perl/Net-LDAPapi", "dev-perl/Net-LibIDN", "dev-perl/Net-LibIDN2", "dev-perl/Net-LibIDN2", "dev-perl/Net-Netmask", "dev-perl/Net-Netmask", "dev-perl/Net-OAuth", "dev-perl/Net-OpenID-Common", "dev-perl/Net-OpenID-Consumer", "dev-perl/Net-OpenSSH", "dev-perl/Net-OpenSSH", "dev-perl/Net-Patricia", "dev-perl/Net-Pcap", "dev-perl/Net-PcapUtils", "dev-perl/Net-RBLClient", "dev-perl/Net-RawIP", "dev-perl/Net-SFTP-Foreign", "dev-perl/Net-SFTP-Foreign", "dev-perl/Net-SFTP", "dev-perl/Net-SFTP", "dev-perl/Net-SMTP-SSL", "dev-perl/Net-SMTP-TLS-ButMaintained", "dev-perl/Net-SMTP-TLS", "dev-perl/Net-SMTPS", "dev-perl/Net-SMTPS", "dev-perl/Net-SNMP", "dev-perl/Net-SNPP", "dev-perl/Net-SSH-Any", "dev-perl/Net-SSH-AuthorizedKeysFile", "dev-perl/Net-SSH-Perl", "dev-perl/Net-SSH2", "dev-perl/Net-SSH2", "dev-perl/Net-SSLeay", "dev-perl/Net-SSLeay", "dev-perl/Net-Server-Coro", "dev-perl/Net-Server-Mail", "dev-perl/Net-Server", "dev-perl/Net-Server", "dev-perl/Net-Subnet", "dev-perl/Net-Telnet-Cisco", "dev-perl/Net-Telnet-Cisco", "dev-perl/Net-Telnet", "dev-perl/Net-Telnet", "dev-perl/Net-Trackback", "dev-perl/Net-Twitter", "dev-perl/Net-Twitter", "dev-perl/Net-UPnP", "dev-perl/Net-UPnP", "dev-perl/Net-Whois-IP", "dev-perl/Net-Works", "dev-perl/Net-XMPP", "dev-perl/Net-Z3950-ZOOM", "dev-perl/Net-Z3950-ZOOM", "dev-perl/NetAddr-IP", "dev-perl/NetPacket", "dev-perl/NetPacket", "dev-perl/News-Newsrc", "dev-perl/Nmap-Parser", "dev-perl/Number-Bytes-Human", "dev-perl/Number-Compare", "dev-perl/Number-Format", "dev-perl/Number-Fraction", "dev-perl/Number-Fraction", "dev-perl/Number-WithError", "dev-perl/OLE-StorageLite", "dev-perl/OLE-StorageLite", "dev-perl/OOTools", "dev-perl/OOTools", "dev-perl/ORLite-Migrate", "dev-perl/ORLite", "dev-perl/Object-Enum", "dev-perl/Object-Event", "dev-perl/Object-MultiType", "dev-perl/Object-Realize-Later", "dev-perl/Object-Realize-Later", "dev-perl/Ogg-Vorbis-Header-PurePerl", "dev-perl/Ogg-Vorbis-Header-PurePerl", "dev-perl/Ogg-Vorbis-Header", "dev-perl/Ogg-Vorbis-Header", "dev-perl/Olson-Abbreviations", "dev-perl/OpenGL", "dev-perl/PAR-Dist", "dev-perl/PAR-Dist", "dev-perl/PAR", "dev-perl/PAR", "dev-perl/PBKDF2-Tiny", "dev-perl/PBS-Client", "dev-perl/PDF-API2", "dev-perl/PDF-API2", "dev-perl/PDF-Builder", "dev-perl/PDF-Builder", "dev-perl/PDF-Create", "dev-perl/PDF-Create", "dev-perl/PDL-Graphics-Gnuplot", "dev-perl/PDL-Transform-Color", "dev-perl/PDL-Transform-Color", "dev-perl/PDL", "dev-perl/PDL", "dev-perl/PGPLOT", "dev-perl/PGPLOT", "dev-perl/PHP-Serialization", "dev-perl/POE-API-Peek", "dev-perl/POE-Component-Client-DNS", "dev-perl/POE-Component-Client-Keepalive", "dev-perl/POE-Component-IKC", "dev-perl/POE-Component-PreforkDispatch", "dev-perl/POE-Component-Resolver", "dev-perl/POE-Test-Loops", "dev-perl/POE-XS-Loop-EPoll", "dev-perl/POE-XS-Loop-Poll", "dev-perl/POE-XS-Queue-Array", "dev-perl/POE", "dev-perl/POE", "dev-perl/POSIX-strftime-Compiler", "dev-perl/POSIX-strftime-Compiler", "dev-perl/PPI-HTML", "dev-perl/PPI-PowerToys", "dev-perl/PPI", "dev-perl/PPI", "dev-perl/PPIx-EditorTools", "dev-perl/PPIx-EditorTools", "dev-perl/PPIx-QuoteLike", "dev-perl/PPIx-Regexp", "dev-perl/PPIx-Regexp", "dev-perl/PPIx-Utilities", "dev-perl/PPIx-Utils", "dev-perl/Package-Constants", "dev-perl/Package-DeprecationManager", "dev-perl/Package-Stash-XS", "dev-perl/Package-Stash-XS", "dev-perl/Package-Stash", "dev-perl/Package-Stash", "dev-perl/Package-Variant", "dev-perl/PadWalker", "dev-perl/PadWalker", "dev-perl/Palm-PDB", "dev-perl/Palm", "dev-perl/Pango", "dev-perl/Panotools-Script", "dev-perl/Panotools-Script", "dev-perl/ParaDNS", "dev-perl/Parallel-ForkManager", "dev-perl/Parallel-ForkManager", "dev-perl/Parallel-Iterator", "dev-perl/Parallel-Prefork", "dev-perl/Params-Classify", "dev-perl/Params-Util", "dev-perl/Params-Util", "dev-perl/Params-Validate", "dev-perl/Params-Validate", "dev-perl/Params-ValidationCompiler", "dev-perl/Params-ValidationCompiler", "dev-perl/Parse-ErrorString-Perl", "dev-perl/Parse-ExuberantCTags", "dev-perl/Parse-RecDescent", "dev-perl/Parse-Syslog", "dev-perl/Parse-Yapp", "dev-perl/Passwd-Linux", "dev-perl/Passwd-Unix", "dev-perl/PatchReader", "dev-perl/Path-Class", "dev-perl/Path-FindDev", "dev-perl/Path-IsDev", "dev-perl/Path-Iterator-Rule", "dev-perl/Path-Tiny", "dev-perl/Path-Tiny", "dev-perl/Pegex", "dev-perl/Pegex", "dev-perl/Perl-Critic-Deprecated", "dev-perl/Perl-Critic-Dynamic", "dev-perl/Perl-Critic-Nits", "dev-perl/Perl-Critic-Policy-Dynamic-NoIndirect", "dev-perl/Perl-Critic", "dev-perl/Perl-Critic", "dev-perl/Perl-LanguageServer", "dev-perl/Perl-MinimumVersion", "dev-perl/Perl-MinimumVersion", "dev-perl/Perl-PrereqScanner", "dev-perl/Perl-PrereqScanner", "dev-perl/Perl-Strip", "dev-perl/Perl-Tags", "dev-perl/Perl-Tidy", "dev-perl/Perl-Tidy", "dev-perl/Perl-Unsafe-Signals", "dev-perl/Perl-Version", "dev-perl/Perl6-Junction", "dev-perl/PerlIO-Layers", "dev-perl/PerlIO-Layers", "dev-perl/PerlIO-eol", "dev-perl/PerlIO-eol", "dev-perl/PerlIO-gzip", "dev-perl/PerlIO-utf8_strict", "dev-perl/PerlIO-utf8_strict", "dev-perl/PerlIO-via-Timeout", "dev-perl/PerlIO-via-dynamic", "dev-perl/Perlbal-XS-HTTPHeaders", "dev-perl/Perlbal", "dev-perl/PlRPC", "dev-perl/Plack", "dev-perl/Plack", "dev-perl/Plucene", "dev-perl/Pod-Abstract", "dev-perl/Pod-Coverage", "dev-perl/Pod-Elemental-PerlMunger", "dev-perl/Pod-Elemental", "dev-perl/Pod-Elemental", "dev-perl/Pod-Eventual", "dev-perl/Pod-Eventual", "dev-perl/Pod-LaTeX", "dev-perl/Pod-Markdown-Github", "dev-perl/Pod-Markdown", "dev-perl/Pod-Markdown", "dev-perl/Pod-POM-View-Restructured", "dev-perl/Pod-POM-View-Restructured", "dev-perl/Pod-POM", "dev-perl/Pod-Parser", "dev-perl/Pod-Readme", "dev-perl/Pod-Readme", "dev-perl/Pod-Simple-LaTeX", "dev-perl/Pod-Spell", "dev-perl/Pod-Strip", "dev-perl/Pod-Strip", "dev-perl/Pod-Tests", "dev-perl/Pod-Tests", "dev-perl/Pod-Weaver", "dev-perl/Pod-Weaver", "dev-perl/PostScript-Simple", "dev-perl/PostScript", "dev-perl/Probe-Perl", "dev-perl/Proc-Background", "dev-perl/Proc-Background", "dev-perl/Proc-Daemon", "dev-perl/Proc-Guard", "dev-perl/Proc-ProcessTable", "dev-perl/Proc-ProcessTable", "dev-perl/Proc-Simple", "dev-perl/Proc-Wait3", "dev-perl/Proc-WaitStat", "dev-perl/Quota", "dev-perl/Quota", "dev-perl/REST-Client", "dev-perl/RPC-XML", "dev-perl/RPC-XML", "dev-perl/RPC-XML", "dev-perl/RRD-Simple", "dev-perl/RTF-Writer", "dev-perl/Rcs", "dev-perl/Readonly-XS", "dev-perl/Readonly", "dev-perl/Redis", "dev-perl/RedisDB-Parser", "dev-perl/RedisDB-Parser", "dev-perl/RedisDB", "dev-perl/RedisDB", "dev-perl/Ref-Util-XS", "dev-perl/Ref-Util-XS", "dev-perl/Ref-Util", "dev-perl/Ref-Util", "dev-perl/Regexp-Common-net-CIDR", "dev-perl/Regexp-Common", "dev-perl/Regexp-IPv6", "dev-perl/Regexp-RegGrp", "dev-perl/Regexp-Shellish", "dev-perl/Regexp-Util", "dev-perl/Regexp-Util", "dev-perl/Return-Value", "dev-perl/Role-Basic", "dev-perl/Role-HasMessage", "dev-perl/Role-Identifiable", "dev-perl/Role-Tiny", "dev-perl/Role-Tiny", "dev-perl/Roman", "dev-perl/Router-Simple", "dev-perl/SDL", "dev-perl/SDL", "dev-perl/SGMLSpm", "dev-perl/SNMP_Session", "dev-perl/SOAP-Lite", "dev-perl/SOAP-Lite", "dev-perl/SOAP-WSDL", "dev-perl/SQL-Abstract-Classic", "dev-perl/SQL-Abstract-Limit", "dev-perl/SQL-Abstract-Limit", "dev-perl/SQL-Abstract", "dev-perl/SQL-Abstract", "dev-perl/SQL-Statement", "dev-perl/SQL-Statement", "dev-perl/SQL-Translator", "dev-perl/SQL-Translator", "dev-perl/SRU", "dev-perl/SUPER", "dev-perl/SUPER", "dev-perl/SVG-Graph", "dev-perl/SVG", "dev-perl/SVG", "dev-perl/Safe-Hole", "dev-perl/Safe-Hole", "dev-perl/Safe-Isa", "dev-perl/Safe-Isa", "dev-perl/Scalar-Properties", "dev-perl/Schedule-At", "dev-perl/Schedule-Cron-Events", "dev-perl/Schedule-Cron-Events", "dev-perl/Scope-Guard", "dev-perl/Scope-Upper", "dev-perl/Scope-Upper", "dev-perl/Search-Xapian", "dev-perl/Search-Xapian", "dev-perl/Sereal-Decoder", "dev-perl/Sereal-Encoder", "dev-perl/Sereal-Encoder", "dev-perl/Sereal", "dev-perl/Sereal", "dev-perl/Server-Starter", "dev-perl/Server-Starter", "dev-perl/Set-Crontab", "dev-perl/Set-Infinite", "dev-perl/Set-IntSpan", "dev-perl/Set-Object", "dev-perl/Set-Object", "dev-perl/Set-Scalar", "dev-perl/Shell-Config-Generate", "dev-perl/Shell-Config-Generate", "dev-perl/Shell-EnvImporter", "dev-perl/Shell-Guess", "dev-perl/Shell", "dev-perl/ShipIt", "dev-perl/Signal-Mask", "dev-perl/Snowball-Norwegian", "dev-perl/Snowball-Swedish", "dev-perl/Socket-GetAddrInfo", "dev-perl/Socket6", "dev-perl/Socket6", "dev-perl/Software-License", "dev-perl/Software-License", "dev-perl/Sort-Key-IPv4", "dev-perl/Sort-Key", "dev-perl/Sort-Naturally", "dev-perl/Sort-Tree", "dev-perl/Sort-Versions", "dev-perl/Specio", "dev-perl/Specio", "dev-perl/Speech-Recognizer-SPX", "dev-perl/Sphinx-Config", "dev-perl/Sphinx-Search", "dev-perl/Spiffy", "dev-perl/Spreadsheet-ParseExcel", "dev-perl/Spreadsheet-WriteExcel", "dev-perl/Starlet", "dev-perl/Stat-lsMode", "dev-perl/Statistics-Basic", "dev-perl/Statistics-CaseResampling", "dev-perl/Statistics-Descriptive-Discrete", "dev-perl/Statistics-Descriptive-Discrete", "dev-perl/Statistics-Descriptive", "dev-perl/Statistics-Descriptive", "dev-perl/Statistics-Distributions", "dev-perl/Statistics-TTest", "dev-perl/Stream-Buffered", "dev-perl/String-Approx", "dev-perl/String-CRC32", "dev-perl/String-CRC32", "dev-perl/String-Ediff", "dev-perl/String-Ediff", "dev-perl/String-Errf", "dev-perl/String-Escape", "dev-perl/String-Flogger", "dev-perl/String-Format", "dev-perl/String-Formatter", "dev-perl/String-Print", "dev-perl/String-Print", "dev-perl/String-RewritePrefix", "dev-perl/String-RewritePrefix", "dev-perl/String-ShellQuote", "dev-perl/String-Tokenizer", "dev-perl/String-Truncate", "dev-perl/String-Util", "dev-perl/String-Util", "dev-perl/Struct-Compare", "dev-perl/Sub-Delete", "dev-perl/Sub-Exporter-ForMethods", "dev-perl/Sub-Exporter-ForMethods", "dev-perl/Sub-Exporter-GlobExporter", "dev-perl/Sub-Exporter-Progressive", "dev-perl/Sub-Exporter", "dev-perl/Sub-Exporter", "dev-perl/Sub-HandlesVia", "dev-perl/Sub-Identify", "dev-perl/Sub-Info", "dev-perl/Sub-Install", "dev-perl/Sub-Name", "dev-perl/Sub-Name", "dev-perl/Sub-Override", "dev-perl/Sub-Quote", "dev-perl/Sub-Uplevel", "dev-perl/Switch", "dev-perl/Symbol-Global-Name", "dev-perl/Symbol-Util", "dev-perl/Syntax-Highlight-Engine-Simple-Perl", "dev-perl/Syntax-Highlight-Engine-Simple-Perl", "dev-perl/Syntax-Highlight-Engine-Simple", "dev-perl/Syntax-Highlight-Engine-Simple", "dev-perl/Syntax-Keyword-Junction", "dev-perl/Sys-CPU", "dev-perl/Sys-CPU", "dev-perl/Sys-CpuLoad", "dev-perl/Sys-CpuLoad", "dev-perl/Sys-Hostname-Long", "dev-perl/Sys-MemInfo", "dev-perl/Sys-Mmap", "dev-perl/Sys-Mmap", "dev-perl/Sys-SigAction", "dev-perl/Sys-Statistics-Linux", "dev-perl/Sys-Syscall", "dev-perl/Sys-Virt", "dev-perl/Sys-Virt", "dev-perl/Sys-Virt", "dev-perl/Sysadm-Install", "dev-perl/TAP-Parser-SourceHandler-pgTAP", "dev-perl/Taint-Runtime", "dev-perl/Taint-Util", "dev-perl/Task-Weaken", "dev-perl/Task-Weaken", "dev-perl/TeX-Encode", "dev-perl/Template-DBI", "dev-perl/Template-GD", "dev-perl/Template-Plugin-Cycle", "dev-perl/Template-Plugin-Latex", "dev-perl/Template-Plugin-Latex", "dev-perl/Template-Tiny", "dev-perl/Template-Tiny", "dev-perl/Template-Toolkit", "dev-perl/Template-Toolkit", "dev-perl/Template-XML", "dev-perl/Term-ANSIScreen", "dev-perl/Term-Encoding", "dev-perl/Term-Encoding", "dev-perl/Term-ProgressBar-Quiet", "dev-perl/Term-ProgressBar-Simple", "dev-perl/Term-ProgressBar", "dev-perl/Term-ProgressBar", "dev-perl/Term-ReadLine-Gnu", "dev-perl/Term-ReadLine-Perl", "dev-perl/Term-ReadLine-TTYtter", "dev-perl/Term-ReadPassword", "dev-perl/Term-Screen", "dev-perl/Term-ScreenColor", "dev-perl/Term-Shell", "dev-perl/Term-Shell", "dev-perl/Term-ShellUI", "dev-perl/Term-Table", "dev-perl/Term-Table", "dev-perl/Term-UI", "dev-perl/Term-UI", "dev-perl/TermReadKey", "dev-perl/TermReadKey", "dev-perl/Test-Assert", "dev-perl/Test-Base", "dev-perl/Test-Base", "dev-perl/Test-Bits", "dev-perl/Test-CPAN-Meta", "dev-perl/Test-CheckDeps", "dev-perl/Test-Class", "dev-perl/Test-Class", "dev-perl/Test-ClassAPI", "dev-perl/Test-CleanNamespaces", "dev-perl/Test-Command-Simple", "dev-perl/Test-Command", "dev-perl/Test-Compile", "dev-perl/Test-Compile", "dev-perl/Test-Deep-JSON", "dev-perl/Test-Deep-JSON", "dev-perl/Test-Deep", "dev-perl/Test-Deep", "dev-perl/Test-Dependencies", "dev-perl/Test-Dependencies", "dev-perl/Test-DiagINC", "dev-perl/Test-Differences", "dev-perl/Test-Differences", "dev-perl/Test-DistManifest", "dev-perl/Test-Distribution", "dev-perl/Test-EOL", "dev-perl/Test-EOL", "dev-perl/Test-Exception", "dev-perl/Test-FailWarnings", "dev-perl/Test-Fatal", "dev-perl/Test-Fatal", "dev-perl/Test-File-Contents", "dev-perl/Test-File-ShareDir", "dev-perl/Test-File", "dev-perl/Test-File", "dev-perl/Test-Filename", "dev-perl/Test-Files", "dev-perl/Test-Files", "dev-perl/Test-Fork", "dev-perl/Test-HTTP-Server-Simple", "dev-perl/Test-Inline", "dev-perl/Test-Inline", "dev-perl/Test-Inter", "dev-perl/Test-Kit", "dev-perl/Test-LeakTrace", "dev-perl/Test-LeakTrace", "dev-perl/Test-LectroTest", "dev-perl/Test-LongString", "dev-perl/Test-Manifest", "dev-perl/Test-Manifest", "dev-perl/Test-Memory-Cycle", "dev-perl/Test-MinimumVersion", "dev-perl/Test-Mock-LWP-Dispatch", "dev-perl/Test-MockModule", "dev-perl/Test-MockModule", "dev-perl/Test-MockObject", "dev-perl/Test-MockObject", "dev-perl/Test-MockRandom", "dev-perl/Test-MockTime-HiRes", "dev-perl/Test-MockTime", "dev-perl/Test-MockTime", "dev-perl/Test-More-UTF8", "dev-perl/Test-Most", "dev-perl/Test-Most", "dev-perl/Test-Needs", "dev-perl/Test-NoTabs", "dev-perl/Test-NoTabs", "dev-perl/Test-NoWarnings", "dev-perl/Test-NoWarnings", "dev-perl/Test-Number-Delta", "dev-perl/Test-Object", "dev-perl/Test-Output", "dev-perl/Test-Output", "dev-perl/Test-Perl-Critic", "dev-perl/Test-Perl-Critic", "dev-perl/Test-Pod-Coverage", "dev-perl/Test-Pod", "dev-perl/Test-Pod", "dev-perl/Test-Portability-Files", "dev-perl/Test-Portability-Files", "dev-perl/Test-Regexp", "dev-perl/Test-Requires", "dev-perl/Test-Requires", "dev-perl/Test-RequiresInternet", "dev-perl/Test-Script", "dev-perl/Test-Script", "dev-perl/Test-SharedFork", "dev-perl/Test-Spec", "dev-perl/Test-Strict", "dev-perl/Test-Strict", "dev-perl/Test-SubCalls", "dev-perl/Test-TCP", "dev-perl/Test-Taint", "dev-perl/Test-Taint", "dev-perl/Test-TempDir-Tiny", "dev-perl/Test-Time", "dev-perl/Test-Timer", "dev-perl/Test-Trap", "dev-perl/Test-Unit-Lite", "dev-perl/Test-UseAllModules", "dev-perl/Test-Version", "dev-perl/Test-WWW-Mechanize", "dev-perl/Test-Warn", "dev-perl/Test-Warnings", "dev-perl/Test-Without-Module", "dev-perl/Test-YAML", "dev-perl/Test-utf8", "dev-perl/Test2-Plugin-NoWarnings", "dev-perl/Test2-Plugin-NoWarnings", "dev-perl/Test2-Suite", "dev-perl/Test2-Suite", "dev-perl/Test2-Suite", "dev-perl/Text-Aligner", "dev-perl/Text-Aspell", "dev-perl/Text-Autoformat", "dev-perl/Text-BibTeX", "dev-perl/Text-BibTeX", "dev-perl/Text-CSV-Simple", "dev-perl/Text-CSV", "dev-perl/Text-CSV_XS", "dev-perl/Text-CharWidth", "dev-perl/Text-Diff", "dev-perl/Text-FindIndent", "dev-perl/Text-Format", "dev-perl/Text-German", "dev-perl/Text-Glob", "dev-perl/Text-Glob", "dev-perl/Text-Iconv", "dev-perl/Text-Kakasi", "dev-perl/Text-Levenshtein", "dev-perl/Text-LevenshteinXS", "dev-perl/Text-Markdown", "dev-perl/Text-Netstring", "dev-perl/Text-Password-Pronounceable", "dev-perl/Text-Patch", "dev-perl/Text-Quoted", "dev-perl/Text-Reform", "dev-perl/Text-Roman", "dev-perl/Text-Shellwords", "dev-perl/Text-Soundex", "dev-perl/Text-Table", "dev-perl/Text-Template", "dev-perl/Text-Template", "dev-perl/Text-Unidecode", "dev-perl/Text-VimColor", "dev-perl/Text-WikiFormat", "dev-perl/Text-WrapI18N", "dev-perl/Text-Wrapper", "dev-perl/Text-vFile-asData", "dev-perl/TheSchwartz", "dev-perl/Thread-SigMask", "dev-perl/Throwable", "dev-perl/Tie-Array-Sorted", "dev-perl/Tie-CPHash", "dev-perl/Tie-Cache-LRU-Expires", "dev-perl/Tie-Cache-LRU", "dev-perl/Tie-Cache", "dev-perl/Tie-Cycle", "dev-perl/Tie-EncryptedHash", "dev-perl/Tie-Hash-Method", "dev-perl/Tie-IxHash", "dev-perl/Tie-LLHash", "dev-perl/Tie-ShadowHash", "dev-perl/Tie-Simple", "dev-perl/Tie-StrictHash", "dev-perl/Tie-Sub", "dev-perl/Tie-ToObject", "dev-perl/Time-Duration-Parse", "dev-perl/Time-Duration", "dev-perl/Time-Format", "dev-perl/Time-Moment", "dev-perl/Time-Monotonic", "dev-perl/Time-Out", "dev-perl/Time-ParseDate", "dev-perl/Time-Period", "dev-perl/Time-Piece-MySQL", "dev-perl/Time-Stopwatch", "dev-perl/Time-TAI64", "dev-perl/Time-TZOffset", "dev-perl/TimeDate", "dev-perl/TimeDate", "dev-perl/Tk-CursorControl", "dev-perl/Tk-CursorControl", "dev-perl/Tk-JPEG-Lite", "dev-perl/Tk-TableMatrix", "dev-perl/Tk-TableMatrix", "dev-perl/Tk", "dev-perl/Tree-DAG_Node", "dev-perl/Tree-Simple", "dev-perl/Try-Tiny", "dev-perl/Type-Tie", "dev-perl/Type-Tiny-XS", "dev-perl/Type-Tiny-XS", "dev-perl/Type-Tiny", "dev-perl/Type-Tiny", "dev-perl/Types-Path-Tiny", "dev-perl/Types-Serialiser", "dev-perl/UNIVERSAL-can", "dev-perl/UNIVERSAL-isa", "dev-perl/UNIVERSAL-moniker", "dev-perl/UNIVERSAL-require", "dev-perl/URI-Encode", "dev-perl/URI-Fetch", "dev-perl/URI-Find", "dev-perl/URI-FromHash", "dev-perl/URI-redis", "dev-perl/URI", "dev-perl/URI", "dev-perl/USB-LibUSB", "dev-perl/USB-LibUSB", "dev-perl/USB-TMC", "dev-perl/USB-TMC", "dev-perl/UUID-Tiny", "dev-perl/UUID", "dev-perl/UltraDNS", "dev-perl/Unicode-EastAsianWidth", "dev-perl/Unicode-LineBreak", "dev-perl/Unicode-LineBreak", "dev-perl/Unicode-Map", "dev-perl/Unicode-Map8", "dev-perl/Unicode-Map8", "dev-perl/Unicode-MapUTF8", "dev-perl/Unicode-String", "dev-perl/Unicode-Stringprep", "dev-perl/Unicode-UTF8", "dev-perl/Unicode-UTF8simple", "dev-perl/Unix-Getrusage", "dev-perl/Unix-Mknod", "dev-perl/Unix-Syslog", "dev-perl/User-Identity", "dev-perl/User-Identity", "dev-perl/VM-EC2-Security-CredentialCache", "dev-perl/VM-EC2", "dev-perl/Validate-Net", "dev-perl/Validate-Tiny", "dev-perl/Variable-Magic", "dev-perl/Version-Next", "dev-perl/Video-Frequencies", "dev-perl/Video-Info", "dev-perl/Video-ivtv", "dev-perl/WWW-Curl", "dev-perl/WWW-Dict-Leo-Org", "dev-perl/WWW-Form-UrlEncoded-XS", "dev-perl/WWW-Form-UrlEncoded", "dev-perl/WWW-Mechanize-FormFiller", "dev-perl/WWW-Mechanize", "dev-perl/WWW-Mechanize", "dev-perl/WWW-Pastebin-PastebinCom-Create", "dev-perl/WWW-RobotRules", "dev-perl/WWW-Shorten", "dev-perl/Want", "dev-perl/WattsUp-Daemon", "dev-perl/WattsUp-Daemon", "dev-perl/WeakRef", "dev-perl/Weather-Com", "dev-perl/WebService-Linode", "dev-perl/WebService-MusicBrainz", "dev-perl/WordNet-QueryData", "dev-perl/Wx-GLCanvas", "dev-perl/Wx-Perl-ProcessStream", "dev-perl/Wx-Scintilla", "dev-perl/Wx", "dev-perl/X-Osd", "dev-perl/X11-FreeDesktop-DesktopEntry", "dev-perl/X11-Protocol", "dev-perl/X11-XCB", "dev-perl/X11-XCB", "dev-perl/X500-DN", "dev-perl/XML-Atom", "dev-perl/XML-Catalog", "dev-perl/XML-CompactTree-XS", "dev-perl/XML-Compile-Cache", "dev-perl/XML-Compile-SOAP", "dev-perl/XML-Compile-Tester", "dev-perl/XML-Compile-WSDL11", "dev-perl/XML-Compile", "dev-perl/XML-DOM-XPath", "dev-perl/XML-DOM", "dev-perl/XML-DT", "dev-perl/XML-DTDParser", "dev-perl/XML-Descent", "dev-perl/XML-Directory", "dev-perl/XML-Dumper", "dev-perl/XML-Elemental", "dev-perl/XML-Encoding", "dev-perl/XML-Entities", "dev-perl/XML-Fast", "dev-perl/XML-Feed", "dev-perl/XML-FeedPP", "dev-perl/XML-Filter-BufferText", "dev-perl/XML-Filter-DOMFilter-LibXML", "dev-perl/XML-Generator", "dev-perl/XML-Grove", "dev-perl/XML-Handler-YAWriter", "dev-perl/XML-LibXML-Iterator", "dev-perl/XML-LibXML-Simple", "dev-perl/XML-LibXML", "dev-perl/XML-LibXML", "dev-perl/XML-LibXSLT", "dev-perl/XML-Mini", "dev-perl/XML-NamespaceSupport", "dev-perl/XML-NodeFilter", "dev-perl/XML-Parser-Lite", "dev-perl/XML-Parser", "dev-perl/XML-Parser", "dev-perl/XML-RAI", "dev-perl/XML-RSS-Feed", "dev-perl/XML-RSS-LibXML", "dev-perl/XML-RSS-Parser", "dev-perl/XML-RSS", "dev-perl/XML-RegExp", "dev-perl/XML-SAX-Base", "dev-perl/XML-SAX-Expat", "dev-perl/XML-SAX-ExpatXS", "dev-perl/XML-SAX-Writer", "dev-perl/XML-SAX", "dev-perl/XML-Simple-DTDReader", "dev-perl/XML-Simple", "dev-perl/XML-SimpleObject", "dev-perl/XML-Smart", "dev-perl/XML-Stream", "dev-perl/XML-TokeParser", "dev-perl/XML-TreePP", "dev-perl/XML-Twig", "dev-perl/XML-Validator-Schema", "dev-perl/XML-Writer", "dev-perl/XML-XPath", "dev-perl/XML-XPathEngine", "dev-perl/XML-XQL", "dev-perl/XML-XSLT", "dev-perl/XML-XUpdate-LibXML", "dev-perl/XMLRPC-Lite", "dev-perl/XS-Object-Magic", "dev-perl/XXX", "dev-perl/YAML-LibYAML", "dev-perl/YAML-PP", "dev-perl/YAML-PP", "dev-perl/YAML-Syck", "dev-perl/YAML-Syck", "dev-perl/YAML-Tiny", "dev-perl/YAML-Tiny", "dev-perl/YAML", "dev-perl/YAML", "dev-perl/ZMQ-Constants", "dev-perl/aliased", "dev-perl/asa", "dev-perl/autobox", "dev-perl/autovivification", "dev-perl/bareword-filehandles", "dev-perl/boolean", "dev-perl/capitalization", "dev-perl/common-sense", "dev-perl/common-sense", "dev-perl/constant-boolean", "dev-perl/constant-defer", "dev-perl/enum", "dev-perl/forks", "dev-perl/glib-perl", "dev-perl/glib-perl", "dev-perl/gnome2-canvas", "dev-perl/gnome2-canvas", "dev-perl/gnome2-wnck", "dev-perl/gnome2-wnck", "dev-perl/go-perl", "dev-perl/gtk2-ex-formfactory", "dev-perl/gtk2-gladexml", "dev-perl/gtk2-gladexml", "dev-perl/gtk2-trayicon", "dev-perl/gtk2-traymanager", "dev-perl/indirect", "dev-perl/indirect", "dev-perl/libintl-perl", "dev-perl/libintl-perl", "dev-perl/librg-utils-perl", "dev-perl/libwww-perl", "dev-perl/libwww-perl", "dev-perl/libwww-perl", "dev-perl/libxml-perl", "dev-perl/local-lib", "dev-perl/maybe", "dev-perl/mecab-perl", "dev-perl/mime-construct", "dev-perl/multidimensional", "dev-perl/multidimensional", "dev-perl/namespace-autoclean", "dev-perl/namespace-autoclean", "dev-perl/namespace-clean", "dev-perl/pcsc-perl", "dev-perl/perl-headers", "dev-perl/perl-ldap", "dev-perl/perl-ldap", "dev-perl/perl-mozldap", "dev-perl/prefork", "dev-perl/prefork", "dev-perl/rename", "dev-perl/self", "dev-perl/self", "dev-perl/strictures", "dev-perl/strictures", "dev-perl/syntax", "dev-perl/tkispell", "dev-perl/txt2html", "dev-perl/txt2html", "dev-perl/XString", "dev-php/File_Iterator", "dev-php/File_Iterator", "dev-php/File_Iterator", "dev-php/File_Iterator", "dev-php/File_Iterator", "dev-php/PEAR-Archive_Tar", "dev-php/PEAR-Auth_SASL", "dev-php/PEAR-Cache", "dev-php/PEAR-Cache_Lite", "dev-php/PEAR-Cache_Lite", "dev-php/PEAR-Console_CommandLine", "dev-php/PEAR-Console_Getargs", "dev-php/PEAR-Console_Getopt", "dev-php/PEAR-Console_Table", "dev-php/PEAR-Console_Table", "dev-php/PEAR-Crypt_CHAP", "dev-php/PEAR-Crypt_GPG", "dev-php/PEAR-Crypt_GPG", "dev-php/PEAR-Crypt_GPG", "dev-php/PEAR-Crypt_GPG", "dev-php/PEAR-Crypt_HMAC", "dev-php/PEAR-Crypt_HMAC2", "dev-php/PEAR-DB", "dev-php/PEAR-DB", "dev-php/PEAR-DB", "dev-php/PEAR-DB", "dev-php/PEAR-DB_DataObject", "dev-php/PEAR-Date", "dev-php/PEAR-Exception", "dev-php/PEAR-Exception", "dev-php/PEAR-File", "dev-php/PEAR-File_Archive", "dev-php/PEAR-File_Find", "dev-php/PEAR-File_Fortune", "dev-php/PEAR-File_Gettext", "dev-php/PEAR-File_SMBPasswd", "dev-php/PEAR-HTML_AJAX", "dev-php/PEAR-HTML_CSS", "dev-php/PEAR-HTML_Common", "dev-php/PEAR-HTML_Common2", "dev-php/PEAR-HTML_Common2", "dev-php/PEAR-HTML_Javascript", "dev-php/PEAR-HTML_QuickForm2", "dev-php/PEAR-HTML_QuickForm2", "dev-php/PEAR-HTML_Table", "dev-php/PEAR-HTML_Table_Matrix", "dev-php/PEAR-HTML_Template_Flexy", "dev-php/PEAR-HTML_Template_Sigma", "dev-php/PEAR-HTTP", "dev-php/PEAR-HTTP_Header", "dev-php/PEAR-HTTP_Request2", "dev-php/PEAR-HTTP_Request2", "dev-php/PEAR-HTTP_Request2", "dev-php/PEAR-HTTP_Request2", "dev-php/PEAR-HTTP_Session2", "dev-php/PEAR-Image_Color2", "dev-php/PEAR-Image_GraphViz", "dev-php/PEAR-Image_IPTC", "dev-php/PEAR-Image_Text", "dev-php/PEAR-Log", "dev-php/PEAR-Log", "dev-php/PEAR-Log", "dev-php/PEAR-MDB", "dev-php/PEAR-MDB2", "dev-php/PEAR-MDB2_Driver_mssql", "dev-php/PEAR-MDB2_Driver_mysqli", "dev-php/PEAR-MDB2_Driver_oci8", "dev-php/PEAR-MDB2_Driver_pgsql", "dev-php/PEAR-MIME_Type", "dev-php/PEAR-Mail", "dev-php/PEAR-Mail_Mime", "dev-php/PEAR-Mail_Mime", "dev-php/PEAR-Mail_Mime", "dev-php/PEAR-Mail_Mime", "dev-php/PEAR-Mail_Mime", "dev-php/PEAR-Mail_Mime", "dev-php/PEAR-Mail_Mime", "dev-php/PEAR-Mail_mimeDecode", "dev-php/PEAR-Math_BigInteger", "dev-php/PEAR-Net_DNS", "dev-php/PEAR-Net_DNS2", "dev-php/PEAR-Net_DNS2", "dev-php/PEAR-Net_DNSBL", "dev-php/PEAR-Net_IDNA2", "dev-php/PEAR-Net_IPv4", "dev-php/PEAR-Net_IPv4", "dev-php/PEAR-Net_IPv6", "dev-php/PEAR-Net_LDAP2", "dev-php/PEAR-Net_POP3", "dev-php/PEAR-Net_Ping", "dev-php/PEAR-Net_SMTP", "dev-php/PEAR-Net_SMTP", "dev-php/PEAR-Net_SMTP", "dev-php/PEAR-Net_SMTP", "dev-php/PEAR-Net_SMTP", "dev-php/PEAR-Net_SMTP", "dev-php/PEAR-Net_SMTP", "dev-php/PEAR-Net_Sieve", "dev-php/PEAR-Net_Sieve", "dev-php/PEAR-Net_SmartIRC", "dev-php/PEAR-Net_SmartIRC", "dev-php/PEAR-Net_SmartIRC", "dev-php/PEAR-Net_SmartIRC", "dev-php/PEAR-Net_Socket", "dev-php/PEAR-Net_Traceroute", "dev-php/PEAR-Net_URL", "dev-php/PEAR-Net_URL2", "dev-php/PEAR-Net_UserAgent_Detect", "dev-php/PEAR-Numbers_Words", "dev-php/PEAR-Numbers_Words", "dev-php/PEAR-OLE", "dev-php/PEAR-PEAR", "dev-php/PEAR-PEAR", "dev-php/PEAR-PEAR_PackageFileManager", "dev-php/PEAR-PEAR_PackageFileManager2", "dev-php/PEAR-PEAR_PackageFileManager_Plugins", "dev-php/PEAR-PHP_Beautifier", "dev-php/PEAR-PHP_Debug", "dev-php/PEAR-Pager", "dev-php/PEAR-Services_JSON", "dev-php/PEAR-Services_TinyURL", "dev-php/PEAR-Services_W3C_CSSValidator", "dev-php/PEAR-Spreadsheet_Excel_Writer", "dev-php/PEAR-Structures_Graph", "dev-php/PEAR-System_Command", "dev-php/PEAR-Text_CAPTCHA", "dev-php/PEAR-Text_CAPTCHA_Numeral", "dev-php/PEAR-Text_Figlet", "dev-php/PEAR-Text_Highlighter", "dev-php/PEAR-Text_Highlighter", "dev-php/PEAR-Text_Password", "dev-php/PEAR-Text_Wiki", "dev-php/PEAR-Text_Wiki", "dev-php/PEAR-Text_Wiki_BBCode", "dev-php/PEAR-Text_Wiki_Mediawiki", "dev-php/PEAR-Validate", "dev-php/PEAR-Validate", "dev-php/PEAR-Var_Dump", "dev-php/PEAR-VersionControl_SVN", "dev-php/PEAR-VersionControl_SVN", "dev-php/PEAR-XML_Parser", "dev-php/PEAR-XML_Parser", "dev-php/PEAR-XML_RSS", "dev-php/PEAR-XML_RSS", "dev-php/PEAR-XML_Serializer", "dev-php/PEAR-XML_Util", "dev-php/PHPMailer", "dev-php/PHPMailer", "dev-php/PHP_CodeCoverage", "dev-php/PHP_CodeCoverage", "dev-php/PHP_CodeSniffer", "dev-php/PHP_CodeSniffer", "dev-php/PHP_CodeSniffer", "dev-php/PHP_CodeSniffer", "dev-php/PHP_Timer", "dev-php/PHP_Timer", "dev-php/PHP_Timer", "dev-php/PHP_TokenStream", "dev-php/SabreAMF", "dev-php/Text_Template", "dev-php/Text_Template", "dev-php/YAML", "dev-php/adodb", "dev-php/adodb", "dev-php/adodb", "dev-php/adodb", "dev-php/agavi", "dev-php/awl", "dev-php/awl", "dev-php/ca-bundle", "dev-php/cli-prompt", "dev-php/cli-prompt", "dev-php/composer", "dev-php/composer", "dev-php/composer", "dev-php/composer", "dev-php/composer", "dev-php/composer", "dev-php/composer", "dev-php/composer", "dev-php/cphplib", "dev-php/doctrine-instantiator", "dev-php/doctrine-instantiator", "dev-php/doctrine-instantiator", "dev-php/doctrine-instantiator", "dev-php/doctrine-instantiator", "dev-php/doctrine", "dev-php/doctrine", "dev-php/fedora-autoloader", "dev-php/geos-php", "dev-php/igbinary", "dev-php/igbinary", "dev-php/igbinary", "dev-php/igbinary", "dev-php/igbinary", "dev-php/igbinary", "dev-php/igbinary", "dev-php/jpgraph", "dev-php/jpgraph", "dev-php/json-schema", "dev-php/json-schema", "dev-php/jsonlint", "dev-php/jsonlint", "dev-php/libchart", "dev-php/libvirt-php", "dev-php/libvirt-php", "dev-php/libvirt-php", "dev-php/maxmind-db-reader", "dev-php/metadata-minifier", "dev-php/mmslib", "dev-php/mockery", "dev-php/myclabs-deepcopy", "dev-php/myclabs-deepcopy", "dev-php/myclabs-deepcopy", "dev-php/myclabs-deepcopy", "dev-php/onphp", "dev-php/pear", "dev-php/pecl-amqp", "dev-php/pecl-amqp", "dev-php/pecl-apcu", "dev-php/pecl-apcu", "dev-php/pecl-apcu_bc", "dev-php/pecl-crack", "dev-php/pecl-crack", "dev-php/pecl-dbase", "dev-php/pecl-dbase", "dev-php/pecl-dio", "dev-php/pecl-eio", "dev-php/pecl-eio", "dev-php/pecl-event", "dev-php/pecl-event", "dev-php/pecl-geoip", "dev-php/pecl-geoip", "dev-php/pecl-gnupg", "dev-php/pecl-gnupg", "dev-php/pecl-http", "dev-php/pecl-http", "dev-php/pecl-http", "dev-php/pecl-http", "dev-php/pecl-imagick", "dev-php/pecl-imagick", "dev-php/pecl-imagick", "dev-php/pecl-lzf", "dev-php/pecl-mailparse", "dev-php/pecl-mcrypt", "dev-php/pecl-mcrypt", "dev-php/pecl-memcache", "dev-php/pecl-memcache", "dev-php/pecl-memcached", "dev-php/pecl-memcached", "dev-php/pecl-mongodb", "dev-php/pecl-mongodb", "dev-php/pecl-mongodb", "dev-php/pecl-mongodb", "dev-php/pecl-mongodb", "dev-php/pecl-mongodb", "dev-php/pecl-mongodb", "dev-php/pecl-ncurses", "dev-php/pecl-oauth", "dev-php/pecl-pam", "dev-php/pecl-pam", "dev-php/pecl-parallel", "dev-php/pecl-propro", "dev-php/pecl-ps", "dev-php/pecl-radius", "dev-php/pecl-raphf", "dev-php/pecl-raphf", "dev-php/pecl-raphf", "dev-php/pecl-redis", "dev-php/pecl-redis", "dev-php/pecl-redis", "dev-php/pecl-rrd", "dev-php/pecl-ssh2", "dev-php/pecl-ssh2", "dev-php/pecl-ssh2", "dev-php/pecl-ssh2", "dev-php/pecl-stomp", "dev-php/pecl-taint", "dev-php/pecl-timezonedb", "dev-php/pecl-timezonedb", "dev-php/pecl-translit", "dev-php/pecl-uploadprogress", "dev-php/pecl-uuid", "dev-php/pecl-xdiff", "dev-php/pecl-yaml", "dev-php/pecl-yaml", "dev-php/pecl-yaz", "dev-php/pecl-yaz", "dev-php/pecl-zmq", "dev-php/pecl-zmq", "dev-php/phar-io-manifest", "dev-php/phar-io-manifest", "dev-php/phar-io-version", "dev-php/phar-io-version", "dev-php/phar-io-version", "dev-php/phar-utils", "dev-php/phing", "dev-php/phing", "dev-php/phing", "dev-php/php-codebrowser", "dev-php/php-redmine-api", "dev-php/php-redmine-api", "dev-php/phpDocumentor", "dev-php/phpcov", "dev-php/phpdepend", "dev-php/phpdocumentor-reflection-common", "dev-php/phpdocumentor-reflection-docblock", "dev-php/phpdocumentor-type-resolver", "dev-php/phpmd", "dev-php/phpmd", "dev-php/phpspec-prophecy", "dev-php/phpspec-prophecy", "dev-php/phpspec-prophecy", "dev-php/phpspec-prophecy", "dev-php/phpspec-prophecy", "dev-php/phpspec-prophecy", "dev-php/phpspec-prophecy", "dev-php/phptal", "dev-php/phpunit-mock-objects", "dev-php/phpunit-mock-objects", "dev-php/phpunit", "dev-php/phpunit", "dev-php/psr-log", "dev-php/psr-log", "dev-php/reactphp-promise", "dev-php/realpath_turbo", "dev-php/recaptcha", "dev-php/scrypt", "dev-php/scrypt", "dev-php/sebastian-code-unit-reverse-lookup", "dev-php/sebastian-code-unit-reverse-lookup", "dev-php/sebastian-code-unit-reverse-lookup", "dev-php/sebastian-comparator", "dev-php/sebastian-comparator", "dev-php/sebastian-diff", "dev-php/sebastian-diff", "dev-php/sebastian-environment", "dev-php/sebastian-environment", "dev-php/sebastian-exporter", "dev-php/sebastian-exporter", "dev-php/sebastian-global-state", "dev-php/sebastian-global-state", "dev-php/sebastian-object-enumerator", "dev-php/sebastian-object-enumerator", "dev-php/sebastian-object-reflector", "dev-php/sebastian-object-reflector", "dev-php/sebastian-object-reflector", "dev-php/sebastian-recursion-context", "dev-php/sebastian-recursion-context", "dev-php/sebastian-resource-operations", "dev-php/sebastian-resource-operations", "dev-php/sebastian-type", "dev-php/sebastian-type", "dev-php/sebastian-version", "dev-php/securimage", "dev-php/semver", "dev-php/semver", "dev-php/semver", "dev-php/semver", "dev-php/semver", "dev-php/simpletest", "dev-php/smarty", "dev-php/spdx-licenses", "dev-php/stringparser_bbcode", "dev-php/swoole-async", "dev-php/swoole-async", "dev-php/swoole", "dev-php/swoole", "dev-php/swoole", "dev-php/swoole", "dev-php/swoole", "dev-php/swoole", "dev-php/swoole", "dev-php/symfony-config", "dev-php/symfony-console", "dev-php/symfony-dependency-injection", "dev-php/symfony-dependency-injection", "dev-php/symfony-event-dispatcher", "dev-php/symfony-event-dispatcher", "dev-php/symfony-filesystem", "dev-php/symfony-filesystem", "dev-php/symfony-finder", "dev-php/symfony-process", "dev-php/symfony-process", "dev-php/symfony-yaml", "dev-php/tcpdf", "dev-php/tcpdf", "dev-php/theseer-Autoload", "dev-php/theseer-Autoload", "dev-php/theseer-DirectoryScanner", "dev-php/theseer-DirectoryScanner", "dev-php/theseer-tokenizer", "dev-php/theseer-tokenizer", "dev-php/theseer-tokenizer", "dev-php/theseer-tokenizer", "dev-php/twig", "dev-php/twig", "dev-php/twig", "dev-php/webmozart-assert", "dev-php/webmozart-assert", "dev-php/webmozart-assert", "dev-php/xdebug-client", "dev-php/xdebug-client", "dev-php/xdebug-handler", "dev-php/xdebug-handler", "dev-php/xdebug", "dev-php/xdebug", "dev-php/xdebug", "dev-php/xdebug", "dev-php/xdebug", "dev-php/xhprof", "dev-php/xhprof", "dev-php/zetacomponents-Base", "dev-php/zetacomponents-ConsoleTools", "dev-python/3to2", "dev-python/APScheduler", "dev-python/Babel", "dev-python/BitVector", "dev-python/CppHeaderParser", "dev-python/Faker", "dev-python/Faker", "dev-python/GitPython", "dev-python/GridDataFormats", "dev-python/MechanicalSoup", "dev-python/MechanicalSoup", "dev-python/PyContracts", "dev-python/PyECLib", "dev-python/PyGithub", "dev-python/PyPDF2", "dev-python/PyQt-builder", "dev-python/PyQt5-sip", "dev-python/PyQt5", "dev-python/PyQt5", "dev-python/PyQtWebEngine", "dev-python/PyQtWebEngine", "dev-python/PyRSS2Gen", "dev-python/PySDL2", "dev-python/PySDL2", "dev-python/PySDL2", "dev-python/PySensors", "dev-python/PySocks", "dev-python/PyUtilib", "dev-python/PyUtilib", "dev-python/QtPy", "dev-python/QtPy", "dev-python/QtPy", "dev-python/Rx", "dev-python/Rx", "dev-python/SaltTesting", "dev-python/absl-py", "dev-python/absl-py", "dev-python/abydos", "dev-python/adblock", "dev-python/adblock", "dev-python/aesara", "dev-python/aesara", "dev-python/agate-dbf", "dev-python/agate-excel", "dev-python/agate-excel", "dev-python/agate-sql", "dev-python/agate", "dev-python/aiodns", "dev-python/aiofiles", "dev-python/aiofiles", "dev-python/aiofiles", "dev-python/aiohttp-cors", "dev-python/aiohttp-jinja2", "dev-python/aiohttp-jinja2", "dev-python/aiohttp-socks", "dev-python/aiohttp", "dev-python/aiorpcX", "dev-python/aiorpcX", "dev-python/aiosmtpd", "dev-python/alabaster", "dev-python/alagitpull", "dev-python/alembic", "dev-python/alembic", "dev-python/alembic", "dev-python/ament_package", "dev-python/amodem", "dev-python/amodem", "dev-python/amodem", "dev-python/aniso8601", "dev-python/ansi", "dev-python/ansi2html", "dev-python/ansible-runner", "dev-python/ansicolor", "dev-python/ansicolor", "dev-python/anyio", "dev-python/anyio", "dev-python/anyio", "dev-python/anyqt", "dev-python/anyqt", "dev-python/anyqt", "dev-python/apipkg", "dev-python/apipkg", "dev-python/apispec", "dev-python/apispec", "dev-python/apispec", "dev-python/apispec", "dev-python/apispec", "dev-python/apispec", "dev-python/apispec", "dev-python/apispec", "dev-python/appdirs", "dev-python/apsw", "dev-python/argcomplete", "dev-python/argh", "dev-python/argon2-cffi", "dev-python/argon2-cffi", "dev-python/argparse-manpage", "dev-python/argparse-manpage", "dev-python/arpeggio", "dev-python/arrow", "dev-python/asgiref", "dev-python/asn1crypto", "dev-python/asteval", "dev-python/astor", "dev-python/astroid", "dev-python/astroid", "dev-python/astroid", "dev-python/asttokens", "dev-python/astunparse", "dev-python/async-lru", "dev-python/async_generator", "dev-python/async_timeout", "dev-python/asyncstdlib", "dev-python/asyncstdlib", "dev-python/atomicwrites", "dev-python/atpublic", "dev-python/attrs", "dev-python/audioread", "dev-python/audioread", "dev-python/authheaders", "dev-python/authres", "dev-python/autobahn", "dev-python/automat", "dev-python/autopep8", "dev-python/autopep8", "dev-python/autoprop", "dev-python/autoprop", "dev-python/autoprop", "dev-python/autoprop", "dev-python/autoprop", "dev-python/autoprop", "dev-python/aws-sam-translator", "dev-python/aws-xray-sdk-python", "dev-python/awxkit", "dev-python/awxkit", "dev-python/awxkit", "dev-python/awxkit", "dev-python/awxkit", "dev-python/awxkit", "dev-python/babelfish", "dev-python/babelfish", "dev-python/babelfish", "dev-python/backcall", "dev-python/backports-entry_points_selectable", "dev-python/backports-tempfile", "dev-python/backports-weakref", "dev-python/backports-zoneinfo", "dev-python/backrefs", "dev-python/bandit", "dev-python/bandit", "dev-python/bareos", "dev-python/bareos", "dev-python/bashate", "dev-python/basho-erlastic", "dev-python/bcrypt", "dev-python/bcrypt", "dev-python/beagle", "dev-python/beautifulsoup", "dev-python/beniget", "dev-python/beniget", "dev-python/bert", "dev-python/betamax-matchers", "dev-python/betamax", "dev-python/bibtexparser", "dev-python/binaryornot", "dev-python/bitarray", "dev-python/bitarray", "dev-python/bitarray", "dev-python/bitarray", "dev-python/bitarray", "dev-python/bitstring", "dev-python/black", "dev-python/black", "dev-python/black", "dev-python/black", "dev-python/bleach", "dev-python/bleach", "dev-python/blessed", "dev-python/blessed", "dev-python/blessed", "dev-python/blessings", "dev-python/blinker", "dev-python/blockdiag", "dev-python/blosc", "dev-python/bluelet", "dev-python/blurb", "dev-python/blurb", "dev-python/booleanOperations", "dev-python/boto", "dev-python/boto3", "dev-python/boto3", "dev-python/boto3", "dev-python/boto3", "dev-python/boto3", "dev-python/boto3", "dev-python/botocore", "dev-python/botocore", "dev-python/botocore", "dev-python/botocore", "dev-python/botocore", "dev-python/botocore", "dev-python/bottle", "dev-python/bottleneck", "dev-python/bpython", "dev-python/bracex", "dev-python/braintree", "dev-python/breathe", "dev-python/brotlicffi", "dev-python/brython", "dev-python/bsddb3", "dev-python/cached-property", "dev-python/cachelib", "dev-python/cachelib", "dev-python/cachelib", "dev-python/cachetools", "dev-python/cairocffi", "dev-python/cangjie", "dev-python/capturer", "dev-python/carbon", "dev-python/carbon", "dev-python/case", "dev-python/casttube", "dev-python/catkin_pkg", "dev-python/catkin_pkg", "dev-python/cattrs", "dev-python/cbor", "dev-python/cbor2", "dev-python/cbor2", "dev-python/cerberus", "dev-python/certifi", "dev-python/cffi", "dev-python/cfgv", "dev-python/cfgv", "dev-python/cftime", "dev-python/cftime", "dev-python/cgroup-utils", "dev-python/chai", "dev-python/chameleon", "dev-python/characteristic", "dev-python/chardet", "dev-python/chardet", "dev-python/charset_normalizer", "dev-python/charset_normalizer", "dev-python/chart-studio", "dev-python/cheetah-docs", "dev-python/cheetah3", "dev-python/cheroot", "dev-python/cherrypy", "dev-python/chump", "dev-python/citeproc-py", "dev-python/cjkwrap", "dev-python/clang-python", "dev-python/clang-python", "dev-python/clang-python", "dev-python/clang-python", "dev-python/clang-python", "dev-python/clang-python", "dev-python/clang-python", "dev-python/clang-python", "dev-python/cleo", "dev-python/cli_helpers", "dev-python/cli_helpers", "dev-python/cli_helpers", "dev-python/click-default-group", "dev-python/click-help-colors", "dev-python/click-help-colors", "dev-python/click-log", "dev-python/click-plugins", "dev-python/click-plugins", "dev-python/click-threading", "dev-python/click-threading", "dev-python/click", "dev-python/click", "dev-python/cliff", "dev-python/cliff", "dev-python/clikit", "dev-python/clint", "dev-python/cloudpickle", "dev-python/cloudscraper", "dev-python/cmd2", "dev-python/collective-checkdocs", "dev-python/colorama", "dev-python/colorama", "dev-python/colorclass", "dev-python/coloredlogs", "dev-python/coloredlogs", "dev-python/colorlog", "dev-python/colorlog", "dev-python/colorspacious", "dev-python/commentjson", "dev-python/commonmark", "dev-python/configargparse", "dev-python/configargparse", "dev-python/configclass", "dev-python/configobj", "dev-python/configshell-fb", "dev-python/confuse", "dev-python/confuse", "dev-python/confuse", "dev-python/consonance", "dev-python/constantly", "dev-python/construct", "dev-python/cookies", "dev-python/coreapi", "dev-python/coreschema", "dev-python/cov-core", "dev-python/coverage", "dev-python/coverage", "dev-python/cppy", "dev-python/crashtest", "dev-python/crcmod", "dev-python/croniter", "dev-python/cryptography", "dev-python/css-parser", "dev-python/css-parser", "dev-python/cssselect", "dev-python/cssselect2", "dev-python/cssutils", "dev-python/csvkit", "dev-python/ctypescrypto", "dev-python/ctypescrypto", "dev-python/curtsies", "dev-python/cvxopt", "dev-python/cvxopt", "dev-python/cwcwidth", "dev-python/cx_Freeze", "dev-python/cycler", "dev-python/cython-test-exception-raiser", "dev-python/cython-test-exception-raiser", "dev-python/cython", "dev-python/cython", "dev-python/cython", "dev-python/daemonize", "dev-python/dask", "dev-python/dask", "dev-python/dask", "dev-python/dbfread", "dev-python/dbus-python", "dev-python/dbutils", "dev-python/dbutils", "dev-python/dbutils", "dev-python/dbutils", "dev-python/ddt", "dev-python/debtcollector", "dev-python/decorator", "dev-python/decorator", "dev-python/deepmerge", "dev-python/defcon", "dev-python/defcon", "dev-python/defusedxml", "dev-python/denonavr", "dev-python/denonavr", "dev-python/denonavr", "dev-python/deprecated", "dev-python/deprecation", "dev-python/dictdiffer", "dev-python/dicttoxml", "dev-python/dicttoxml", "dev-python/diff-match-patch", "dev-python/diff-match-patch", "dev-python/dill", "dev-python/discogs-client", "dev-python/discogs-client", "dev-python/discogs-client", "dev-python/diskcache", "dev-python/dissononce", "dev-python/distlib", "dev-python/distro", "dev-python/dj-database-url", "dev-python/dj-email-url", "dev-python/dj-search-url", "dev-python/django-allauth", "dev-python/django-allauth", "dev-python/django-appconf", "dev-python/django-auth-ldap", "dev-python/django-auth-ldap", "dev-python/django-cache-url", "dev-python/django-cacheops", "dev-python/django-compressor", "dev-python/django-compressor", "dev-python/django-configurations", "dev-python/django-cors-headers", "dev-python/django-cors-headers", "dev-python/django-debug-toolbar", "dev-python/django-debug-toolbar", "dev-python/django-extensions", "dev-python/django-filter", "dev-python/django-gravatar2", "dev-python/django-haystack", "dev-python/django-js-asset", "dev-python/django-mptt", "dev-python/django-mptt", "dev-python/django-mptt", "dev-python/django-mptt", "dev-python/django-otp", "dev-python/django-pglocks", "dev-python/django-picklefield", "dev-python/django-picklefield", "dev-python/django-prometheus", "dev-python/django-q", "dev-python/django-redis", "dev-python/django-redis", "dev-python/django-rq", "dev-python/django-rq", "dev-python/django-rq", "dev-python/django-sortedm2m", "dev-python/django-tables2", "dev-python/django-tagging", "dev-python/django-taggit-serializer", "dev-python/django-taggit", "dev-python/django-taggit", "dev-python/django-timezone-field", "dev-python/django-timezone-field", "dev-python/django", "dev-python/django", "dev-python/django", "dev-python/django", "dev-python/django_polymorphic", "dev-python/djangorestframework", "dev-python/dkimpy", "dev-python/dns-lexicon", "dev-python/dns-lexicon", "dev-python/dnspython", "dev-python/dnspython", "dev-python/doc8", "dev-python/docker-py", "dev-python/dockerpty", "dev-python/docopt", "dev-python/doctest-ignore-unicode", "dev-python/docutils-glep", "dev-python/docutils", "dev-python/docutils", "dev-python/dogpile-cache", "dev-python/dogpile-cache", "dev-python/doit-py", "dev-python/doit", "dev-python/dominate", "dev-python/doublex-expects", "dev-python/doublex", "dev-python/doublex", "dev-python/drf-yasg", "dev-python/duecredit", "dev-python/duecredit", "dev-python/duecredit", "dev-python/dulwich", "dev-python/dulwich", "dev-python/easy-thumbnails", "dev-python/easy-thumbnails", "dev-python/easyprocess", "dev-python/ecdsa", "dev-python/editdistance-s", "dev-python/editorconfig-core-py", "dev-python/editorconfig-core-py", "dev-python/elasticsearch-py", "dev-python/elementpath", "dev-python/elementpath", "dev-python/emcee", "dev-python/emcee", "dev-python/emcee", "dev-python/emoji", "dev-python/empy", "dev-python/enrich", "dev-python/entrypoint2", "dev-python/entrypoints", "dev-python/environs", "dev-python/enzyme", "dev-python/enzyme", "dev-python/eradicate", "dev-python/errorhandler", "dev-python/et_xmlfile", "dev-python/eventlet", "dev-python/eventlet", "dev-python/eventlet", "dev-python/eventlet", "dev-python/ewmh", "dev-python/exam", "dev-python/exdown", "dev-python/execnet", "dev-python/executing", "dev-python/executing", "dev-python/executing", "dev-python/expects", "dev-python/extras", "dev-python/eyeD3", "dev-python/fakeredis", "dev-python/fakeredis", "dev-python/falcon", "dev-python/falcon", "dev-python/fasteners", "dev-python/fastimport", "dev-python/fastjsonschema", "dev-python/feedgenerator", "dev-python/feedgenerator", "dev-python/feedparser", "dev-python/feedparser", "dev-python/fido2", "dev-python/fido2", "dev-python/fields", "dev-python/filelock", "dev-python/filetype", "dev-python/findimports", "dev-python/findimports", "dev-python/findimports", "dev-python/fitsio", "dev-python/fixtures", "dev-python/flake8-import-order", "dev-python/flake8-polyfill", "dev-python/flake8", "dev-python/flake8", "dev-python/flaky", "dev-python/flask-api", "dev-python/flask-assets", "dev-python/flask-babel", "dev-python/flask-babelex", "dev-python/flask-compress", "dev-python/flask-cors", "dev-python/flask-debug", "dev-python/flask-gravatar", "dev-python/flask-htmlmin", "dev-python/flask-login", "dev-python/flask-mail", "dev-python/flask-migrate", "dev-python/flask-mongoengine", "dev-python/flask-nav", "dev-python/flask-nav", "dev-python/flask-paginate", "dev-python/flask-paranoid", "dev-python/flask-principal", "dev-python/flask-restful", "dev-python/flask-script", "dev-python/flask-security", "dev-python/flask-security", "dev-python/flask-sphinx-themes", "dev-python/flask-sqlalchemy", "dev-python/flask-wtf", "dev-python/flask", "dev-python/flask", "dev-python/flask", "dev-python/flask", "dev-python/flatbuffers", "dev-python/fleep", "dev-python/fleep", "dev-python/flexmock", "dev-python/flexmock", "dev-python/flexmock", "dev-python/flit", "dev-python/flit", "dev-python/flit", "dev-python/flit_core", "dev-python/flit_core", "dev-python/flit_core", "dev-python/flufl-bounce", "dev-python/flufl-bounce", "dev-python/flufl-i18n", "dev-python/flufl-i18n", "dev-python/flufl-i18n", "dev-python/flufl-i18n", "dev-python/flufl-lock", "dev-python/flufl-lock", "dev-python/fonttools", "dev-python/fonttools", "dev-python/fonttools", "dev-python/fqdn", "dev-python/freezegun", "dev-python/fritzconnection", "dev-python/fritzconnection", "dev-python/frozen-flask", "dev-python/fs", "dev-python/fsspec", "dev-python/fsspec", "dev-python/fudge", "dev-python/funcparserlib", "dev-python/funcy", "dev-python/fuse-python", "dev-python/fuse-python", "dev-python/fusepy", "dev-python/future", "dev-python/fuzzywuzzy", "dev-python/gast", "dev-python/gcs-oauth2-boto-plugin", "dev-python/gcs-oauth2-boto-plugin", "dev-python/genshi", "dev-python/genson", "dev-python/genty", "dev-python/geoip-python", "dev-python/gevent-websocket", "dev-python/gevent", "dev-python/geventhttpclient", "dev-python/geventhttpclient", "dev-python/ghp-import", "dev-python/git-review", "dev-python/git-review", "dev-python/gitdb", "dev-python/github3", "dev-python/glooey", "dev-python/gmpy", "dev-python/google-api-core", "dev-python/google-api-core", "dev-python/google-api-core", "dev-python/google-api-python-client", "dev-python/google-api-python-client", "dev-python/google-api-python-client", "dev-python/google-apitools", "dev-python/google-apitools", "dev-python/google-auth-httplib2", "dev-python/google-auth-oauthlib", "dev-python/google-auth-oauthlib", "dev-python/google-auth-oauthlib", "dev-python/google-auth-oauthlib", "dev-python/google-auth-oauthlib", "dev-python/google-auth", "dev-python/google-auth", "dev-python/google-auth", "dev-python/google-pasta", "dev-python/google-pasta", "dev-python/google-reauth-python", "dev-python/google-reauth-python", "dev-python/googleapis-common-protos", "dev-python/graph-tool", "dev-python/graph-tool", "dev-python/graphviz", "dev-python/greenlet", "dev-python/greenstalk", "dev-python/grpcio-testing", "dev-python/grpcio-tools", "dev-python/grpcio", "dev-python/gsd", "dev-python/gsd", "dev-python/gssapi", "dev-python/gst-python", "dev-python/gst-python", "dev-python/guessit", "dev-python/guzzle_sphinx_theme", "dev-python/h11", "dev-python/h5py", "dev-python/hacking", "dev-python/happybase", "dev-python/hcloud-python", "dev-python/hcloud-python", "dev-python/helpdev", "dev-python/hiredis", "dev-python/hpack", "dev-python/hpack", "dev-python/html2text", "dev-python/html5-parser", "dev-python/html5lib", "dev-python/httmock", "dev-python/http-parser", "dev-python/httpauth", "dev-python/httpbin", "dev-python/httpcore", "dev-python/httpcore", "dev-python/httpcore", "dev-python/httpcore", "dev-python/httpcore", "dev-python/httpcore", "dev-python/httplib2", "dev-python/httpretty", "dev-python/httpretty", "dev-python/httpx", "dev-python/httpx", "dev-python/huawei-lte-api", "dev-python/humanfriendly", "dev-python/humanfriendly", "dev-python/humanfriendly", "dev-python/humanize", "dev-python/humanize", "dev-python/hvac", "dev-python/hvac", "dev-python/hvac", "dev-python/hvac", "dev-python/hvac", "dev-python/hvac", "dev-python/hvac", "dev-python/hyper-h2", "dev-python/hyper-h2", "dev-python/hyperframe", "dev-python/hyperframe", "dev-python/hyperlink", "dev-python/hypothesis", "dev-python/hypothesis", "dev-python/hypothesis", "dev-python/hypothesis", "dev-python/hypothesis", "dev-python/hypothesis", "dev-python/hypothesis", "dev-python/hypothesis", "dev-python/hypothesis", "dev-python/hypothesis", "dev-python/icalendar", "dev-python/identify", "dev-python/identify", "dev-python/idna", "dev-python/ifaddr", "dev-python/ijson", "dev-python/imageio", "dev-python/imageio", "dev-python/imagesize", "dev-python/imapclient", "dev-python/iminuit", "dev-python/iminuit", "dev-python/iminuit", "dev-python/immutables", "dev-python/immutables", "dev-python/immutables", "dev-python/importlib_metadata", "dev-python/importlib_metadata", "dev-python/importlib_metadata", "dev-python/importlib_metadata", "dev-python/importlib_metadata", "dev-python/importlib_metadata", "dev-python/importlib_resources", "dev-python/imread", "dev-python/incremental", "dev-python/indexed_gzip", "dev-python/indexed_gzip", "dev-python/indexed_gzip", "dev-python/inflect", "dev-python/inflection", "dev-python/influxdb", "dev-python/iniconfig", "dev-python/iniparse", "dev-python/iniparse", "dev-python/intelhex", "dev-python/intervaltree", "dev-python/intreehooks", "dev-python/iocapture", "dev-python/ioflo", "dev-python/ipaddr", "dev-python/ipdb", "dev-python/ipy", "dev-python/ipykernel", "dev-python/ipykernel", "dev-python/ipyparallel", "dev-python/ipython", "dev-python/ipython", "dev-python/ipython", "dev-python/ipython", "dev-python/ipython_genutils", "dev-python/ipywidgets", "dev-python/ipywidgets", "dev-python/ipywidgets", "dev-python/ipywidgets", "dev-python/irc", "dev-python/iso8601", "dev-python/isodate", "dev-python/isort", "dev-python/isort", "dev-python/itsdangerous", "dev-python/itsdangerous", "dev-python/itypes", "dev-python/itypes", "dev-python/jaraco-classes", "dev-python/jaraco-collections", "dev-python/jaraco-collections", "dev-python/jaraco-context", "dev-python/jaraco-envs", "dev-python/jaraco-functools", "dev-python/jaraco-itertools", "dev-python/jaraco-logging", "dev-python/jaraco-packaging", "dev-python/jaraco-path", "dev-python/jaraco-stream", "dev-python/jaraco-stream", "dev-python/jaraco-text", "dev-python/jc", "dev-python/jdcal", "dev-python/jedi", "dev-python/jedi", "dev-python/jeepney", "dev-python/jeepney", "dev-python/jeepney", "dev-python/jellyfish", "dev-python/jellyfish", "dev-python/jellyfish", "dev-python/jikanpy", "dev-python/jikanpy", "dev-python/jinja", "dev-python/jinja", "dev-python/jinja2-time", "dev-python/jinja2_pluralize", "dev-python/jmespath", "dev-python/joblib", "dev-python/josepy", "dev-python/jq", "dev-python/jq", "dev-python/js2py", "dev-python/js2py", "dev-python/jsmin", "dev-python/json-rpc", "dev-python/jsondiff", "dev-python/jsonext", "dev-python/jsonmerge", "dev-python/jsonpatch", "dev-python/jsonpickle", "dev-python/jsonpointer", "dev-python/jsonref", "dev-python/jsonrpclib", "dev-python/jsonrpclib", "dev-python/jsonschema", "dev-python/jsonxs", "dev-python/junit-xml", "dev-python/jupyter", "dev-python/jupyter_client", "dev-python/jupyter_client", "dev-python/jupyter_client", "dev-python/jupyter_console", "dev-python/jupyter_core", "dev-python/jupyter_packaging", "dev-python/jupyter_packaging", "dev-python/jupyter_packaging", "dev-python/jupyter_server", "dev-python/jupyter_server_mathjax", "dev-python/jupyterlab_pygments", "dev-python/jwcrypto", "dev-python/jwcrypto", "dev-python/kafka-python", "dev-python/kafka-python", "dev-python/kaitaistruct", "dev-python/kaptan", "dev-python/kazoo", "dev-python/kconfiglib", "dev-python/keep", "dev-python/keyring", "dev-python/keyring", "dev-python/keystoneauth", "dev-python/kiwisolver", "dev-python/kiwisolver", "dev-python/klein", "dev-python/klein", "dev-python/kombu", "dev-python/kombu", "dev-python/lark-parser", "dev-python/lark-parser", "dev-python/latexcodec", "dev-python/lazr-config", "dev-python/lazr-config", "dev-python/lazr-delegates", "dev-python/lazy-object-proxy", "dev-python/lcdproc", "dev-python/ldap3", "dev-python/leather", "dev-python/lesscpy", "dev-python/lesscpy", "dev-python/libarchive-c", "dev-python/libarchive-c", "dev-python/libcloud", "dev-python/liblarch", "dev-python/liblarch", "dev-python/libnacl", "dev-python/libpillowfight", "dev-python/libpy_simdjson", "dev-python/libsass", "dev-python/libtmux", "dev-python/libtmux", "dev-python/libtmux", "dev-python/libvirt-python", "dev-python/libvirt-python", "dev-python/libvirt-python", "dev-python/libvirt-python", "dev-python/libvirt-python", "dev-python/libvirt-python", "dev-python/libvirt-python", "dev-python/line_profiler", "dev-python/line_profiler", "dev-python/line_profiler", "dev-python/line_profiler", "dev-python/line_profiler", "dev-python/lit", "dev-python/lit", "dev-python/lit", "dev-python/lit", "dev-python/lit", "dev-python/lit", "dev-python/lit", "dev-python/lit", "dev-python/livereload", "dev-python/llfuse", "dev-python/llvmlite", "dev-python/llvmlite", "dev-python/lmdb", "dev-python/lmdb", "dev-python/lmfit", "dev-python/locket", "dev-python/lockfile", "dev-python/logbook", "dev-python/logfury", "dev-python/loguru", "dev-python/logutils", "dev-python/loky", "dev-python/lunr", "dev-python/lxml", "dev-python/lxml", "dev-python/lz4", "dev-python/m2crypto", "dev-python/m2r", "dev-python/mako", "dev-python/mako", "dev-python/mamba", "dev-python/mamba", "dev-python/mando", "dev-python/manuel", "dev-python/markdown", "dev-python/markdown", "dev-python/markdown2", "dev-python/markdown2", "dev-python/markups", "dev-python/markupsafe", "dev-python/markupsafe", "dev-python/markupsafe", "dev-python/marshmallow", "dev-python/marshmallow", "dev-python/marshmallow", "dev-python/marshmallow", "dev-python/marshmallow", "dev-python/matplotlib-inline", "dev-python/matplotlib", "dev-python/matplotlib", "dev-python/matplotlib", "dev-python/matplotlib", "dev-python/matplotlib", "dev-python/matterhook", "dev-python/mccabe", "dev-python/mdx_gh_links", "dev-python/mecab-python", "dev-python/mechanize", "dev-python/mechanize", "dev-python/mechanize", "dev-python/mediafile", "dev-python/mediafile", "dev-python/mediafile", "dev-python/memory_profiler", "dev-python/memory_profiler", "dev-python/mergedeep", "dev-python/mergedict", "dev-python/metakernel", "dev-python/micawber", "dev-python/mimerender", "dev-python/minidb", "dev-python/minimock", "dev-python/miniupnpc", "dev-python/miniupnpc", "dev-python/misaka", "dev-python/mistune", "dev-python/mkautodoc", "dev-python/mkdocs-bootstrap", "dev-python/mkdocs-bootswatch", "dev-python/mkdocs-git-revision-date-localized-plugin", "dev-python/mkdocs-material-extensions", "dev-python/mkdocs-material", "dev-python/mkdocs-material", "dev-python/mkdocs-material", "dev-python/mkdocs-material", "dev-python/mkdocs-minify-plugin", "dev-python/mkdocs-redirects", "dev-python/mkdocs-redirects", "dev-python/mkdocs", "dev-python/mkdocs_pymdownx_material_extras", "dev-python/mkdocs_pymdownx_material_extras", "dev-python/mkdocs_pymdownx_material_extras", "dev-python/mmtf-python", "dev-python/mock", "dev-python/mongoengine", "dev-python/mongomock", "dev-python/more-itertools", "dev-python/moto", "dev-python/moto", "dev-python/moto", "dev-python/moto", "dev-python/moto", "dev-python/moto", "dev-python/moto", "dev-python/moto", "dev-python/mpdlcd", "dev-python/mpi4py", "dev-python/mpmath", "dev-python/msgpack", "dev-python/msgpack", "dev-python/mss", "dev-python/multidict", "dev-python/munch", "dev-python/munkres", "dev-python/mygpoclient", "dev-python/mypy", "dev-python/mypy_extensions", "dev-python/mysql-connector-python", "dev-python/mysql-connector-python", "dev-python/mysql-connector-python", "dev-python/mysql-connector-python", "dev-python/mysqlclient", "dev-python/mysqlclient", "dev-python/nagiosplugin", "dev-python/namespace-google", "dev-python/namespace-paste", "dev-python/namespace-repoze", "dev-python/namespace-ruamel", "dev-python/namespace-sphinxcontrib", "dev-python/namespace-zope", "dev-python/natsort", "dev-python/nautilus-python", "dev-python/nbclient", "dev-python/nbclient", "dev-python/nbconvert", "dev-python/nbdime", "dev-python/nbdime", "dev-python/nbformat", "dev-python/nbsphinx", "dev-python/nbsphinx", "dev-python/nbval", "dev-python/ndg-httpsclient", "dev-python/neovim-remote", "dev-python/neovim-remote", "dev-python/nest_asyncio", "dev-python/netaddr", "dev-python/netcdf4-python", "dev-python/netcdf4-python", "dev-python/netifaces", "dev-python/networkx", "dev-python/nltk-data", "dev-python/nltk", "dev-python/nnpy", "dev-python/node-semver", "dev-python/nodeenv", "dev-python/nose-exclude", "dev-python/nose-random", "dev-python/nose", "dev-python/nose2", "dev-python/nose_fixes", "dev-python/nose_warnings_filters", "dev-python/notebook", "dev-python/notebook", "dev-python/notebook", "dev-python/notebook", "dev-python/notify2", "dev-python/nototools", "dev-python/ntlm-auth", "dev-python/ntplib", "dev-python/ntplib", "dev-python/nuitka", "dev-python/nuitka", "dev-python/numexpr", "dev-python/numpy", "dev-python/numpy", "dev-python/numpy", "dev-python/numpy", "dev-python/numpy", "dev-python/numpydoc", "dev-python/oauth2", "dev-python/oauth2client", "dev-python/oauthlib", "dev-python/objgraph", "dev-python/oct2py", "dev-python/octave_kernel", "dev-python/odfpy", "dev-python/olefile", "dev-python/onkyo-eiscp", "dev-python/openpyxl", "dev-python/openstackdocstheme", "dev-python/openstacksdk", "dev-python/openstacksdk", "dev-python/opt-einsum", "dev-python/ordered-set", "dev-python/os-client-config", "dev-python/os-service-types", "dev-python/osc-lib", "dev-python/oset", "dev-python/oslo-config", "dev-python/oslo-context", "dev-python/oslo-context", "dev-python/oslo-i18n", "dev-python/oslo-log", "dev-python/oslo-serialization", "dev-python/oslo-serialization", "dev-python/oslo-utils", "dev-python/oslo-utils", "dev-python/oslotest", "dev-python/osrf_pycommon", "dev-python/osrf_pycommon", "dev-python/osrf_pycommon", "dev-python/outcome", "dev-python/ovs", "dev-python/ovs", "dev-python/owslib", "dev-python/packaging", "dev-python/pafy", "dev-python/pafy", "dev-python/paho-mqtt", "dev-python/pallets-sphinx-themes", "dev-python/pandas-datareader", "dev-python/pandas-datareader", "dev-python/pandas", "dev-python/pandas", "dev-python/pandas", "dev-python/pandas", "dev-python/pandas", "dev-python/pandas", "dev-python/pandocfilters", "dev-python/parallax", "dev-python/parameterized", "dev-python/paramiko", "dev-python/parsedatetime", "dev-python/parso", "dev-python/parso", "dev-python/partd", "dev-python/parver", "dev-python/passlib", "dev-python/paste", "dev-python/pastedeploy", "dev-python/pastedeploy", "dev-python/pastel", "dev-python/patch-ng", "dev-python/path-and-address", "dev-python/path-py", "dev-python/pathspec", "dev-python/pathtools", "dev-python/patsy", "dev-python/pbkdf2", "dev-python/pbr", "dev-python/pdfrw", "dev-python/pdoc3", "dev-python/pdoc3", "dev-python/pebble", "dev-python/pebble", "dev-python/pebble", "dev-python/pecan", "dev-python/peewee", "dev-python/pelican-minify", "dev-python/pendulum", "dev-python/pexpect", "dev-python/pgspecial", "dev-python/pgzero", "dev-python/phonenumbers", "dev-python/phonenumbers", "dev-python/phply", "dev-python/picklemagic", "dev-python/pickleshare", "dev-python/pid", "dev-python/piexif", "dev-python/pika", "dev-python/pikepdf", "dev-python/pilkit", "dev-python/pillow", "dev-python/pillow", "dev-python/pillow", "dev-python/pillow", "dev-python/pip", "dev-python/pipenv", "dev-python/pipenv", "dev-python/pipenv", "dev-python/pipfile", "dev-python/pivy", "dev-python/pkgconfig", "dev-python/pkginfo", "dev-python/platformdirs", "dev-python/platformdirs", "dev-python/platformdirs", "dev-python/plotly-geo", "dev-python/plotly", "dev-python/plotly", "dev-python/plotly", "dev-python/pluggy", "dev-python/pluggy", "dev-python/pluginbase", "dev-python/pluginbase", "dev-python/plumbum", "dev-python/ply", "dev-python/plyr", "dev-python/plyvel", "dev-python/pmw", "dev-python/pocketlint", "dev-python/pockets", "dev-python/pockets", "dev-python/podcastparser", "dev-python/podcastparser", "dev-python/polib", "dev-python/polygon", "dev-python/pony", "dev-python/pooch", "dev-python/portend", "dev-python/poyo", "dev-python/precis-i18n", "dev-python/pretend", "dev-python/pretty-yaml", "dev-python/pretty-yaml", "dev-python/prettytable", "dev-python/prettytable", "dev-python/prettytable", "dev-python/priority", "dev-python/priority", "dev-python/process-tests", "dev-python/progress", "dev-python/progressbar", "dev-python/progressbar2", "dev-python/prometheus_client", "dev-python/prompt_toolkit", "dev-python/prompt_toolkit", "dev-python/protobuf-python", "dev-python/protobuf-python", "dev-python/protobuf-python", "dev-python/protobuf-python", "dev-python/protobuf-python", "dev-python/protobuf-python", "dev-python/protobuf-python", "dev-python/prov", "dev-python/pslab-python", "dev-python/psutil", "dev-python/psutil", "dev-python/psutil", "dev-python/psycopg", "dev-python/ptvsd", "dev-python/ptyprocess", "dev-python/publicsuffix", "dev-python/publicsuffix", "dev-python/pudb", "dev-python/pudb", "dev-python/pulsectl", "dev-python/pulsectl", "dev-python/pushbullet-py", "dev-python/pweave", "dev-python/py-amqp", "dev-python/py-amqp", "dev-python/py-cpuinfo", "dev-python/py-cpuinfo", "dev-python/py-cpuinfo", "dev-python/py-gfm", "dev-python/py-gfm", "dev-python/py-ubjson", "dev-python/py", "dev-python/pyClamd", "dev-python/pyFFTW", "dev-python/pyFFTW", "dev-python/pyGPG", "dev-python/pyGPG", "dev-python/pyacoustid", "dev-python/pyaes", "dev-python/pyalsa", "dev-python/pyamg", "dev-python/pyamg", "dev-python/pyasn1-modules", "dev-python/pyasn1", "dev-python/pyatspi", "dev-python/pyaudio", "dev-python/pybind11", "dev-python/pybluez", "dev-python/pybtex-docutils", "dev-python/pybtex-docutils", "dev-python/pybtex", "dev-python/pybtex", "dev-python/pycairo", "dev-python/pycapnp", "dev-python/pycares", "dev-python/pycdio", "dev-python/pycdio", "dev-python/pychm", "dev-python/pychromecast", "dev-python/pychroot", "dev-python/pychroot", "dev-python/pyclipper", "dev-python/pyclipper", "dev-python/pycodestyle", "dev-python/pycodestyle", "dev-python/pycollada", "dev-python/pycountry", "dev-python/pycparser", "dev-python/pycryptodome", "dev-python/pycson", "dev-python/pycuda", "dev-python/pycups", "dev-python/pycups", "dev-python/pycurl-requests", "dev-python/pycurl-requests", "dev-python/pycurl", "dev-python/pycurl", "dev-python/pycurl", "dev-python/pycxx", "dev-python/pydantic", "dev-python/pydantic", "dev-python/pydata-sphinx-theme", "dev-python/pydbus", "dev-python/pydecomp", "dev-python/pydecomp", "dev-python/pydiff", "dev-python/pydispatcher", "dev-python/pydns", "dev-python/pydocstyle", "dev-python/pydot", "dev-python/pydotplus", "dev-python/pydyf", "dev-python/pydyf", "dev-python/pydyf", "dev-python/pyelftools", "dev-python/pyenchant", "dev-python/pyenchant", "dev-python/pyfakefs", "dev-python/pyfakefs", "dev-python/pyfeyn", "dev-python/pyflakes", "dev-python/pyflakes", "dev-python/pyformance", "dev-python/pyftpdlib", "dev-python/pygal", "dev-python/pygame", "dev-python/pygame", "dev-python/pygame", "dev-python/pygame", "dev-python/pygame", "dev-python/pygame_sdl2", "dev-python/pygame_sdl2", "dev-python/pygame_sdl2", "dev-python/pyghmi", "dev-python/pygit2", "dev-python/pyglet", "dev-python/pyglet", "dev-python/pygments-github-lexers", "dev-python/pygments", "dev-python/pygments", "dev-python/pygobject", "dev-python/pygpgme", "dev-python/pygraphviz", "dev-python/pygresql", "dev-python/pyh2o", "dev-python/pyhamcrest", "dev-python/pyhcl", "dev-python/pyicu", "dev-python/pyilmbase", "dev-python/pyilmbase", "dev-python/pyinotify", "dev-python/pyjsparser", "dev-python/pyjwt", "dev-python/pyjwt", "dev-python/pykerberos", "dev-python/pykka", "dev-python/pykka", "dev-python/pykka", "dev-python/pykwalify", "dev-python/pylama", "dev-python/pylast", "dev-python/pylatex", "dev-python/pylev", "dev-python/pylibacl", "dev-python/pylibmc", "dev-python/pylint", "dev-python/pylint", "dev-python/pylru", "dev-python/pyls-spyder", "dev-python/pymad", "dev-python/pymdown-extensions", "dev-python/pymdown-lexers", "dev-python/pymdstat", "dev-python/pymediainfo", "dev-python/pymetar", "dev-python/pymilter", "dev-python/pymongo", "dev-python/pymongo", "dev-python/pymongo", "dev-python/pymongo", "dev-python/pymongo", "dev-python/pymountboot", "dev-python/pymountboot", "dev-python/pymssql", "dev-python/pymysql", "dev-python/pynacl", "dev-python/pynest2d", "dev-python/pynput", "dev-python/pynput", "dev-python/pynvim", "dev-python/pyocr", "dev-python/pyocr", "dev-python/pyopencl", "dev-python/pyopengl", "dev-python/pyopengl_accelerate", "dev-python/pyopenssl", "dev-python/pyotherside", "dev-python/pyotp", "dev-python/pypam", "dev-python/pyparsing", "dev-python/pyparted", "dev-python/pypax", "dev-python/pypax", "dev-python/pypcap", "dev-python/pypeg2", "dev-python/pyperclip", "dev-python/pyphen", "dev-python/pyphen", "dev-python/pypiserver", "dev-python/pypng", "dev-python/pypng", "dev-python/pyprof2calltree", "dev-python/pyproj", "dev-python/pyproj", "dev-python/pyproject2setuppy", "dev-python/pyproject2setuppy", "dev-python/pyproject2setuppy", "dev-python/pypugjs", "dev-python/pypugjs", "dev-python/pypugjs", "dev-python/pypy-exe-bin", "dev-python/pypy-exe-bin", "dev-python/pypy-exe", "dev-python/pypy-exe", "dev-python/pypy-exe", "dev-python/pypy", "dev-python/pypy", "dev-python/pypy", "dev-python/pypy", "dev-python/pypy", "dev-python/pypy", "dev-python/pypy3-exe-bin", "dev-python/pypy3-exe-bin", "dev-python/pypy3-exe", "dev-python/pypy3-exe", "dev-python/pypy3-exe", "dev-python/pypy3", "dev-python/pypy3", "dev-python/pypy3", "dev-python/pypy3", "dev-python/pyqrcode", "dev-python/pyqt-distutils", "dev-python/pyqtgraph", "dev-python/pyquery", "dev-python/pyre2", "dev-python/pyrfc3339", "dev-python/pyro", "dev-python/pyroute2", "dev-python/pyrqlite", "dev-python/pyrsistent", "dev-python/pyrsistent", "dev-python/pyscard", "dev-python/pyscreenshot", "dev-python/pyserial", "dev-python/pyside2-tools", "dev-python/pyside2-tools", "dev-python/pyside2", "dev-python/pyside2", "dev-python/pysimdjson", "dev-python/pysmi", "dev-python/pysnmp-mibs", "dev-python/pysnmp", "dev-python/pysnmp", "dev-python/pysol_cards", "dev-python/pysol_cards", "dev-python/pyspectrum2", "dev-python/pyspelling", "dev-python/pyspelling", "dev-python/pyspf", "dev-python/pysrt", "dev-python/pysrt", "dev-python/pysvg", "dev-python/pysvn", "dev-python/pysvn", "dev-python/pytables", "dev-python/pytaglib", "dev-python/pyte", "dev-python/pytest-aiohttp", "dev-python/pytest-asyncio", "dev-python/pytest-cache", "dev-python/pytest-cov", "dev-python/pytest-datadir", "dev-python/pytest-describe", "dev-python/pytest-describe", "dev-python/pytest-django", "dev-python/pytest-env", "dev-python/pytest-expect", "dev-python/pytest-faulthandler", "dev-python/pytest-faulthandler", "dev-python/pytest-fixture-config", "dev-python/pytest-flake8", "dev-python/pytest-flakes", "dev-python/pytest-flakes", "dev-python/pytest-forked", "dev-python/pytest-freezegun", "dev-python/pytest-helpers-namespace", "dev-python/pytest-helpers-namespace", "dev-python/pytest-html", "dev-python/pytest-html", "dev-python/pytest-httpbin", "dev-python/pytest-httpx", "dev-python/pytest-httpx", "dev-python/pytest-httpx", "dev-python/pytest-lazy-fixture", "dev-python/pytest-localftpserver", "dev-python/pytest-localserver", "dev-python/pytest-metadata", "dev-python/pytest-mock", "dev-python/pytest-ordering", "dev-python/pytest-plus", "dev-python/pytest-pylint", "dev-python/pytest-pylint", "dev-python/pytest-qt", "dev-python/pytest-qt", "dev-python/pytest-regressions", "dev-python/pytest-rerunfailures", "dev-python/pytest-salt-factories", "dev-python/pytest-salt", "dev-python/pytest-services", "dev-python/pytest-shutil", "dev-python/pytest-subtesthack", "dev-python/pytest-subtesthack", "dev-python/pytest-subtests", "dev-python/pytest-tempdir", "dev-python/pytest-testinfra", "dev-python/pytest-testinfra", "dev-python/pytest-timeout", "dev-python/pytest-trio", "dev-python/pytest-verbose-parametrize", "dev-python/pytest-virtualenv", "dev-python/pytest-xdist", "dev-python/pytest-xprocess", "dev-python/pytest-xvfb", "dev-python/pytest", "dev-python/pytest", "dev-python/pytest", "dev-python/pytest", "dev-python/pytest", "dev-python/python-augeas", "dev-python/python-axolotl-curve25519", "dev-python/python-axolotl", "dev-python/python-bugzilla", "dev-python/python-caja", "dev-python/python-ceilometerclient", "dev-python/python-cinderclient", "dev-python/python-cinderclient", "dev-python/python-cstruct", "dev-python/python-ctags", "dev-python/python-daemon", "dev-python/python-dateutil", "dev-python/python-debian", "dev-python/python-discid", "dev-python/python-distutils-extra", "dev-python/python-docs", "dev-python/python-docs", "dev-python/python-docs", "dev-python/python-docs", "dev-python/python-docs", "dev-python/python-dotenv", "dev-python/python-dotenv", "dev-python/python-dotenv", "dev-python/python-dotenv", "dev-python/python-editor", "dev-python/python-efl", "dev-python/python-email-validator", "dev-python/python-engineio", "dev-python/python-engineio", "dev-python/python-engineio", "dev-python/python-engineio", "dev-python/python-engineio", "dev-python/python-etcd", "dev-python/python-evdev", "dev-python/python-gammu", "dev-python/python-gflags", "dev-python/python-glanceclient", "dev-python/python-glanceclient", "dev-python/python-gnupg", "dev-python/python-iptables", "dev-python/python-ironicclient", "dev-python/python-jose", "dev-python/python-jwt", "dev-python/python-keystoneclient", "dev-python/python-keyutils", "dev-python/python-ldap", "dev-python/python-ldap", "dev-python/python-levenshtein", "dev-python/python-levenshtein", "dev-python/python-lhafile", "dev-python/python-libevdev", "dev-python/python-linux-procfs", "dev-python/python-lsp-black", "dev-python/python-lsp-jsonrpc", "dev-python/python-lsp-server", "dev-python/python-lsp-server", "dev-python/python-lsp-server", "dev-python/python-ly", "dev-python/python-lzo", "dev-python/python-lzo", "dev-python/python-magic", "dev-python/python-markdown-math", "dev-python/python-memcached", "dev-python/python-mimeparse", "dev-python/python-mpd", "dev-python/python-mpv", "dev-python/python-nbxmpp", "dev-python/python-netlink", "dev-python/python-neutronclient", "dev-python/python-novaclient", "dev-python/python-openstackclient", "dev-python/python-poppler-qt5", "dev-python/python-redmine", "dev-python/python-sense-hat", "dev-python/python-slip", "dev-python/python-slugify", "dev-python/python-slugify", "dev-python/python-slugify", "dev-python/python-socks", "dev-python/python-sshpubkeys", "dev-python/python-stdnum", "dev-python/python-swiftclient", "dev-python/python-systemd", "dev-python/python-utils", "dev-python/python-varlink", "dev-python/python-vlc", "dev-python/python-xlib", "dev-python/python-xmlsec", "dev-python/python-xmp-toolkit", "dev-python/python-zipstream", "dev-python/python3-lxc", "dev-python/python3-openid", "dev-python/python3-saml", "dev-python/python_orocos_kdl", "dev-python/python_orocos_kdl", "dev-python/pythondialog", "dev-python/pythran", "dev-python/pytidylib", "dev-python/pytimeparse", "dev-python/pytools", "dev-python/pytools", "dev-python/pytools", "dev-python/pytrie", "dev-python/pytz", "dev-python/pytzdata", "dev-python/pyu2f", "dev-python/pyudev", "dev-python/pyusb", "dev-python/pyvirtualdisplay", "dev-python/pywavelets", "dev-python/pywinrm", "dev-python/pyx", "dev-python/pyxDamerauLevenshtein", "dev-python/pyxattr", "dev-python/pyxdg", "dev-python/pyyaml", "dev-python/pyyaml", "dev-python/pyyaml_env_tag", "dev-python/pyzbar", "dev-python/pyzmq", "dev-python/pyzmq", "dev-python/pyzotero", "dev-python/qdarkstyle", "dev-python/qdarkstyle", "dev-python/qrcode", "dev-python/qrcode", "dev-python/qscintilla-python", "dev-python/qscintilla-python", "dev-python/qstylizer", "dev-python/qstylizer", "dev-python/qstylizer", "dev-python/qtawesome", "dev-python/qtconsole", "dev-python/qtsass", "dev-python/quantities", "dev-python/quantities", "dev-python/quex", "dev-python/radon", "dev-python/radon", "dev-python/radon", "dev-python/raet", "dev-python/random2", "dev-python/rarfile", "dev-python/ratelimit", "dev-python/rcssmin", "dev-python/rdflib", "dev-python/re-assert", "dev-python/readme_renderer", "dev-python/readthedocs-sphinx-ext", "dev-python/rebulk", "dev-python/recommonmark", "dev-python/redis-py", "dev-python/reedsolomon", "dev-python/reflink", "dev-python/regex", "dev-python/regex", "dev-python/regex", "dev-python/regex", "dev-python/regex", "dev-python/regex", "dev-python/regex", "dev-python/rencode", "dev-python/rencode", "dev-python/reno", "dev-python/reno", "dev-python/reportlab", "dev-python/reportlab", "dev-python/reportlab", "dev-python/reportlab", "dev-python/repoze-lru", "dev-python/repoze-sphinx-autointerface", "dev-python/requests-cache", "dev-python/requests-cache", "dev-python/requests-cache", "dev-python/requests-cache", "dev-python/requests-cache", "dev-python/requests-credssp", "dev-python/requests-file", "dev-python/requests-file", "dev-python/requests-futures", "dev-python/requests-kerberos", "dev-python/requests-mock", "dev-python/requests-ntlm", "dev-python/requests-oauthlib", "dev-python/requests-toolbelt", "dev-python/requests-unixsocket", "dev-python/requests", "dev-python/requests", "dev-python/requests_download", "dev-python/requests_pkcs12", "dev-python/requests_pkcs12", "dev-python/requestsexceptions", "dev-python/resolvelib", "dev-python/resolvelib", "dev-python/resolvelib", "dev-python/resolvelib", "dev-python/responses", "dev-python/responses", "dev-python/responses", "dev-python/restructuredtext-lint", "dev-python/retry-decorator", "dev-python/retrying", "dev-python/rfc3339-validator", "dev-python/rfc3986-validator", "dev-python/rfc3986", "dev-python/rfc3987", "dev-python/rich", "dev-python/rich", "dev-python/rich", "dev-python/rich", "dev-python/rich", "dev-python/rich", "dev-python/rich", "dev-python/rjsmin", "dev-python/robot-detection", "dev-python/roman", "dev-python/rope", "dev-python/ropemode", "dev-python/rosdistro", "dev-python/rosdistro", "dev-python/rospkg", "dev-python/rospkg", "dev-python/routes", "dev-python/rply", "dev-python/rpy", "dev-python/rpyc", "dev-python/rq", "dev-python/rsa", "dev-python/rst-linker", "dev-python/rtimulib", "dev-python/rtslib-fb", "dev-python/ruamel-std-pathlib", "dev-python/ruamel-yaml-clib", "dev-python/ruamel-yaml-clib", "dev-python/ruamel-yaml-clib", "dev-python/ruamel-yaml", "dev-python/ruamel-yaml", "dev-python/ruamel-yaml", "dev-python/ruamel-yaml", "dev-python/ruamel-yaml", "dev-python/s3transfer", "dev-python/sabyenc", "dev-python/sarge", "dev-python/scandir", "dev-python/scikit-build", "dev-python/scikit-build", "dev-python/scipy", "dev-python/scipy", "dev-python/scripttest", "dev-python/scrypt", "dev-python/seaborn", "dev-python/secretstorage", "dev-python/selenium", "dev-python/semantic_version", "dev-python/semver", "dev-python/send2trash", "dev-python/send2trash", "dev-python/sentinels", "dev-python/sentry-sdk", "dev-python/serpent", "dev-python/serverfiles", "dev-python/serverfiles", "dev-python/service_identity", "dev-python/setproctitle", "dev-python/setuptools-git", "dev-python/setuptools", "dev-python/setuptools_rust", "dev-python/setuptools_scm", "dev-python/setuptools_scm", "dev-python/setuptools_scm", "dev-python/setuptools_scm_git_archive", "dev-python/setuptools_trial", "dev-python/sexpdata", "dev-python/sgmllib3k", "dev-python/sh", "dev-python/shiboken2", "dev-python/shiboken2", "dev-python/signature_dispatch", "dev-python/signature_dispatch", "dev-python/simplebayes", "dev-python/simpleeval", "dev-python/simplegeneric", "dev-python/simplejson", "dev-python/simplejson", "dev-python/simplekml", "dev-python/simplesoapy", "dev-python/simplesoapy", "dev-python/simplespectral", "dev-python/simplespectral", "dev-python/simpy", "dev-python/sip", "dev-python/sip", "dev-python/sip", "dev-python/six", "dev-python/slackclient", "dev-python/slimit", "dev-python/slixmpp", "dev-python/slixmpp", "dev-python/smartypants", "dev-python/smartypants", "dev-python/smmap", "dev-python/snakeoil", "dev-python/snakeoil", "dev-python/snakeoil", "dev-python/snakeoil", "dev-python/snakeoil", "dev-python/snaketrace", "dev-python/snappy", "dev-python/snapshottest", "dev-python/sniffio", "dev-python/snowballstemmer", "dev-python/socketio-client-nexus", "dev-python/socketio-client", "dev-python/socketpool", "dev-python/sortedcontainers", "dev-python/soupsieve", "dev-python/sparql-wrapper", "dev-python/speaklater", "dev-python/speg", "dev-python/sphinx-aiohttp-theme", "dev-python/sphinx-autodoc-typehints", "dev-python/sphinx-bootstrap-theme", "dev-python/sphinx-epytext", "dev-python/sphinx-gallery", "dev-python/sphinx-issues", "dev-python/sphinx-jinja", "dev-python/sphinx-multiversion", "dev-python/sphinx-notfound-page", "dev-python/sphinx-panels", "dev-python/sphinx-prompt", "dev-python/sphinx-prompt", "dev-python/sphinx-py3doc-enhanced-theme", "dev-python/sphinx-tabs", "dev-python/sphinx-testing", "dev-python/sphinx", "dev-python/sphinx", "dev-python/sphinx_ansible_theme", "dev-python/sphinx_ansible_theme", "dev-python/sphinx_celery", "dev-python/sphinx_lv2_theme", "dev-python/sphinx_rtd_theme", "dev-python/sphinx_selective_exclude", "dev-python/sphinxcontrib-applehelp", "dev-python/sphinxcontrib-asyncio", "dev-python/sphinxcontrib-autoprogram", "dev-python/sphinxcontrib-bibtex", "dev-python/sphinxcontrib-bibtex", "dev-python/sphinxcontrib-bibtex", "dev-python/sphinxcontrib-blockdiag", "dev-python/sphinxcontrib-devhelp", "dev-python/sphinxcontrib-doxylink", "dev-python/sphinxcontrib-github-alt", "dev-python/sphinxcontrib-github-alt", "dev-python/sphinxcontrib-htmlhelp", "dev-python/sphinxcontrib-jsmath", "dev-python/sphinxcontrib-log_cabinet", "dev-python/sphinxcontrib-newsfeed", "dev-python/sphinxcontrib-programoutput", "dev-python/sphinxcontrib-qthelp", "dev-python/sphinxcontrib-serializinghtml", "dev-python/sphinxcontrib-spelling", "dev-python/sphinxcontrib-trio", "dev-python/sphinxcontrib-websupport", "dev-python/sphobjinv", "dev-python/spur", "dev-python/spyder-kernels", "dev-python/spyder-kernels", "dev-python/spyder-kernels", "dev-python/spyder-line-profiler", "dev-python/spyder-memory-profiler", "dev-python/spyder-notebook", "dev-python/spyder-terminal", "dev-python/spyder-terminal", "dev-python/spyder-unittest", "dev-python/spyder-vim", "dev-python/spyder", "dev-python/spyder", "dev-python/spyder", "dev-python/sqlalchemy-migrate", "dev-python/sqlalchemy-rqlite", "dev-python/sqlalchemy", "dev-python/sqlalchemy", "dev-python/sqlalchemy", "dev-python/sqlalchemy", "dev-python/sqlparse", "dev-python/sqlparse", "dev-python/ssh2-python", "dev-python/sshtunnel", "dev-python/ssl-fetch", "dev-python/ssl-fetch", "dev-python/stapler", "dev-python/statsd", "dev-python/statsmodels", "dev-python/stdio-mgr", "dev-python/stestr", "dev-python/stestr", "dev-python/stevedore", "dev-python/stevedore", "dev-python/stomp-py", "dev-python/strict-rfc3339", "dev-python/stripe", "dev-python/subprocess-tee", "dev-python/subunit", "dev-python/suds", "dev-python/sure", "dev-python/svg-path", "dev-python/svgwrite", "dev-python/svgwrite", "dev-python/swagger-spec-validator", "dev-python/sybil", "dev-python/symengine", "dev-python/sympy", "dev-python/tabulate", "dev-python/tagpy", "dev-python/tappy", "dev-python/tblib", "dev-python/tekore", "dev-python/tempita", "dev-python/tempora", "dev-python/tenacity", "dev-python/termcolor", "dev-python/terminado", "dev-python/terminado", "dev-python/terminado", "dev-python/terminaltables", "dev-python/terminaltables", "dev-python/test_server", "dev-python/testfixtures", "dev-python/testfixtures", "dev-python/testpath", "dev-python/testresources", "dev-python/testscenarios", "dev-python/testtools", "dev-python/text-unidecode", "dev-python/textdistance", "dev-python/texttable", "dev-python/textx", "dev-python/theano-pymc", "dev-python/theano", "dev-python/threadpoolctl", "dev-python/three-merge", "dev-python/thrift", "dev-python/thriftpy2", "dev-python/thunarx-python", "dev-python/tikzplotlib", "dev-python/tikzplotlib", "dev-python/tikzplotlib", "dev-python/timeout-decorator", "dev-python/tinycss", "dev-python/tinycss2", "dev-python/tld", "dev-python/tld", "dev-python/tld", "dev-python/tld", "dev-python/tldextract", "dev-python/tldextract", "dev-python/tldextract", "dev-python/tldextract", "dev-python/toml", "dev-python/tomli", "dev-python/tomlkit", "dev-python/toolz", "dev-python/towncrier", "dev-python/tox", "dev-python/tox", "dev-python/tox", "dev-python/tqdm", "dev-python/tqdm", "dev-python/tqdm", "dev-python/tqdm", "dev-python/traitlets", "dev-python/traitlets", "dev-python/traitlets", "dev-python/transitions", "dev-python/transitions", "dev-python/translate-toolkit", "dev-python/translate-toolkit", "dev-python/tree-sitter", "dev-python/tree-sitter", "dev-python/treq", "dev-python/treq", "dev-python/treq", "dev-python/trio-asyncio", "dev-python/trio", "dev-python/trustme", "dev-python/trustme", "dev-python/tubes", "dev-python/tvdb_api", "dev-python/twine", "dev-python/twisted", "dev-python/twisted", "dev-python/twython", "dev-python/txAMQP", "dev-python/txaio", "dev-python/txgithub", "dev-python/txrequests", "dev-python/typed-ast", "dev-python/typing-extensions", "dev-python/typing-extensions", "dev-python/typogrify", "dev-python/tzlocal", "dev-python/tzlocal", "dev-python/ubelt", "dev-python/ubelt", "dev-python/ubelt", "dev-python/ujson", "dev-python/ujson", "dev-python/uncertainties", "dev-python/uncertainties", "dev-python/unicodecsv", "dev-python/unidecode", "dev-python/unidiff", "dev-python/unidiff", "dev-python/unittest-mixins", "dev-python/unittest-or-fail", "dev-python/uranium", "dev-python/urdf_parser_py", "dev-python/uritemplate", "dev-python/url-normalize", "dev-python/urlgrabber", "dev-python/urllib3", "dev-python/urwid", "dev-python/urwidtrees", "dev-python/utidylib", "dev-python/utidylib", "dev-python/uvicorn", "dev-python/uvicorn", "dev-python/uvicorn", "dev-python/uvloop", "dev-python/uvloop", "dev-python/uvloop", "dev-python/uvloop", "dev-python/validators", "dev-python/vcrpy", "dev-python/vcstools", "dev-python/vdf", "dev-python/vdirsyncer", "dev-python/vdirsyncer", "dev-python/vdirsyncer", "dev-python/vecrec", "dev-python/verboselogs", "dev-python/versioneer", "dev-python/vine", "dev-python/virtualenv-clone", "dev-python/virtualenv", "dev-python/virtualenv", "dev-python/virtualenv", "dev-python/virtualenv", "dev-python/virtualenv", "dev-python/virtualenvwrapper", "dev-python/visitor", "dev-python/vncdotool", "dev-python/vncdotool", "dev-python/vobject", "dev-python/voluptuous", "dev-python/vpython", "dev-python/waitress", "dev-python/wand", "dev-python/wand", "dev-python/wand", "dev-python/warlock", "dev-python/watchdog", "dev-python/watchdog", "dev-python/watchdog", "dev-python/watchdog", "dev-python/wcmatch", "dev-python/wcmatch", "dev-python/wcwidth", "dev-python/weasyprint", "dev-python/weasyprint", "dev-python/webassets", "dev-python/webcolors", "dev-python/webencodings", "dev-python/webob", "dev-python/websocket-client", "dev-python/websocket-client", "dev-python/websocket-client", "dev-python/websocket-client", "dev-python/websockets", "dev-python/websockets", "dev-python/websockify", "dev-python/webtest", "dev-python/webtest", "dev-python/werkzeug", "dev-python/werkzeug", "dev-python/werkzeug", "dev-python/werkzeug", "dev-python/whatever", "dev-python/wheel", "dev-python/wheel", "dev-python/whichcraft", "dev-python/whisper", "dev-python/whisper", "dev-python/whoosh", "dev-python/widgetsnbextension", "dev-python/wrapt", "dev-python/ws4py", "dev-python/ws4py", "dev-python/wsaccel", "dev-python/wsgiproxy2", "dev-python/wsgiproxy2", "dev-python/wsgiproxy2", "dev-python/wsproto", "dev-python/wsproto", "dev-python/wstools", "dev-python/wtforms", "dev-python/wurlitzer", "dev-python/wurlitzer", "dev-python/www-authenticate", "dev-python/wxpython", "dev-python/xapp", "dev-python/xarray", "dev-python/xcffib", "dev-python/xdoctest", "dev-python/xdoctest", "dev-python/xlrd", "dev-python/xlsxwriter", "dev-python/xlsxwriter", "dev-python/xlsxwriter", "dev-python/xlsxwriter", "dev-python/xlwt", "dev-python/xmlschema", "dev-python/xmlschema", "dev-python/xmltodict", "dev-python/xvfbwrapper", "dev-python/xxhash", "dev-python/yamlpath", "dev-python/yapf", "dev-python/yappi", "dev-python/yapsy", "dev-python/yarl", "dev-python/yaswfp", "dev-python/zc-lockfile", "dev-python/zconfig", "dev-python/zeep", "dev-python/zeep", "dev-python/zeep", "dev-python/zeroconf", "dev-python/zeroconf", "dev-python/zeroconf", "dev-python/zeroconf", "dev-python/zipp", "dev-python/zope-component", "dev-python/zope-configuration", "dev-python/zope-deprecation", "dev-python/zope-event", "dev-python/zope-exceptions", "dev-python/zope-i18nmessageid", "dev-python/zope-interface", "dev-python/zope-schema", "dev-python/zope-testing", "dev-python/zope-testrunner", "dev-python/zope-testrunner", "dev-python/zstandard", "dev-python/zstd", "dev-python/zxcvbn", "dev-python/typeguard", "dev-python/aioresponses", "dev-python/aioredis", "dev-python/ansible-pygments", "dev-python/backoff", "dev-python/cfn-lint", "dev-python/cfn-lint", "dev-python/cfn-lint", "dev-python/cfn-lint", "dev-python/cfn-lint", "dev-python/podman-py", "dev-python/python-dbusmock", "dev-python/python-dbusmock", "dev-python/python-fcl", "dev-python/python-musicbrainzngs", "dev-python/u-msgpack-python", "dev-python/debugpy", "dev-python/autopage", "dev-qt/assistant", "dev-qt/designer", "dev-qt/linguist-tools", "dev-qt/linguist", "dev-qt/pixeltool", "dev-qt/qdbus", "dev-qt/qdbusviewer", "dev-qt/qdoc", "dev-qt/qdoc", "dev-qt/qt-creator", "dev-qt/qt-creator", "dev-qt/qt-docs", "dev-qt/qt3d", "dev-qt/qt3d", "dev-qt/qtbluetooth", "dev-qt/qtcharts", "dev-qt/qtchooser", "dev-qt/qtchooser", "dev-qt/qtconcurrent", "dev-qt/qtconcurrent", "dev-qt/qtconcurrent", "dev-qt/qtcore", "dev-qt/qtcore", "dev-qt/qtdatavis3d", "dev-qt/qtdbus", "dev-qt/qtdbus", "dev-qt/qtdeclarative", "dev-qt/qtdeclarative", "dev-qt/qtdiag", "dev-qt/qtgamepad", "dev-qt/qtgamepad", "dev-qt/qtgraphicaleffects", "dev-qt/qtgui", "dev-qt/qtgui", "dev-qt/qthelp", "dev-qt/qtimageformats", "dev-qt/qtimageformats", "dev-qt/qtlocation", "dev-qt/qtlocation", "dev-qt/qtlockedfile", "dev-qt/qtmultimedia", "dev-qt/qtnetwork", "dev-qt/qtnetwork", "dev-qt/qtnetworkauth", "dev-qt/qtopengl", "dev-qt/qtopengl", "dev-qt/qtpaths", "dev-qt/qtplugininfo", "dev-qt/qtplugininfo", "dev-qt/qtpositioning", "dev-qt/qtprintsupport", "dev-qt/qtprintsupport", "dev-qt/qtquickcontrols", "dev-qt/qtquickcontrols2", "dev-qt/qtquickcontrols2", "dev-qt/qtquicktimeline", "dev-qt/qtscript", "dev-qt/qtscxml", "dev-qt/qtsensors", "dev-qt/qtserialbus", "dev-qt/qtserialport", "dev-qt/qtsingleapplication", "dev-qt/qtspeech", "dev-qt/qtspeech", "dev-qt/qtsql", "dev-qt/qtsql", "dev-qt/qtstyleplugins", "dev-qt/qtsvg", "dev-qt/qtsvg", "dev-qt/qttest", "dev-qt/qttest", "dev-qt/qttranslations", "dev-qt/qtvirtualkeyboard", "dev-qt/qtvirtualkeyboard", "dev-qt/qtwayland", "dev-qt/qtwayland", "dev-qt/qtwebchannel", "dev-qt/qtwebengine", "dev-qt/qtwebengine", "dev-qt/qtwebkit", "dev-qt/qtwebsockets", "dev-qt/qtwebsockets", "dev-qt/qtwebview", "dev-qt/qtwidgets", "dev-qt/qtwidgets", "dev-qt/qtx11extras", "dev-qt/qtxml", "dev-qt/qtxml", "dev-qt/qtxmlpatterns", "dev-ros/actionlib", "dev-ros/actionlib", "dev-ros/actionlib_msgs", "dev-ros/actionlib_msgs", "dev-ros/actionlib_msgs", "dev-ros/actionlib_tools", "dev-ros/actionlib_tools", "dev-ros/actionlib_tutorials", "dev-ros/actionlib_tutorials", "dev-ros/actionlib_tutorials", "dev-ros/amcl", "dev-ros/amcl", "dev-ros/amcl", "dev-ros/ament_cmake_copyright", "dev-ros/ament_cmake_copyright", "dev-ros/ament_cmake_copyright", "dev-ros/ament_cmake_core", "dev-ros/ament_cmake_core", "dev-ros/ament_cmake_core", "dev-ros/ament_cmake_core", "dev-ros/ament_cmake_core", "dev-ros/ament_cmake_core", "dev-ros/ament_cmake_core", "dev-ros/ament_cmake_core", "dev-ros/ament_cmake_cppcheck", "dev-ros/ament_cmake_cppcheck", "dev-ros/ament_cmake_cppcheck", "dev-ros/ament_cmake_cppcheck", "dev-ros/ament_cmake_cppcheck", "dev-ros/ament_cmake_cppcheck", "dev-ros/ament_cmake_cpplint", "dev-ros/ament_cmake_cpplint", "dev-ros/ament_cmake_cpplint", "dev-ros/ament_cmake_cpplint", "dev-ros/ament_cmake_cpplint", "dev-ros/ament_cmake_cpplint", "dev-ros/ament_cmake_export_definitions", "dev-ros/ament_cmake_export_definitions", "dev-ros/ament_cmake_export_definitions", "dev-ros/ament_cmake_export_definitions", "dev-ros/ament_cmake_export_definitions", "dev-ros/ament_cmake_export_definitions", "dev-ros/ament_cmake_export_definitions", "dev-ros/ament_cmake_export_definitions", "dev-ros/ament_cmake_export_dependencies", "dev-ros/ament_cmake_export_dependencies", "dev-ros/ament_cmake_export_dependencies", "dev-ros/ament_cmake_export_dependencies", "dev-ros/ament_cmake_export_dependencies", "dev-ros/ament_cmake_export_dependencies", "dev-ros/ament_cmake_export_dependencies", "dev-ros/ament_cmake_export_dependencies", "dev-ros/ament_cmake_export_include_directories", "dev-ros/ament_cmake_export_include_directories", "dev-ros/ament_cmake_export_include_directories", "dev-ros/ament_cmake_export_include_directories", "dev-ros/ament_cmake_export_include_directories", "dev-ros/ament_cmake_export_include_directories", "dev-ros/ament_cmake_export_include_directories", "dev-ros/ament_cmake_export_include_directories", "dev-ros/ament_cmake_export_interfaces", "dev-ros/ament_cmake_export_interfaces", "dev-ros/ament_cmake_export_interfaces", "dev-ros/ament_cmake_export_interfaces", "dev-ros/ament_cmake_export_interfaces", "dev-ros/ament_cmake_export_interfaces", "dev-ros/ament_cmake_export_interfaces", "dev-ros/ament_cmake_export_interfaces", "dev-ros/ament_cmake_export_libraries", "dev-ros/ament_cmake_export_libraries", "dev-ros/ament_cmake_export_libraries", "dev-ros/ament_cmake_export_libraries", "dev-ros/ament_cmake_export_libraries", "dev-ros/ament_cmake_export_libraries", "dev-ros/ament_cmake_export_libraries", "dev-ros/ament_cmake_export_libraries", "dev-ros/ament_cmake_export_link_flags", "dev-ros/ament_cmake_export_link_flags", "dev-ros/ament_cmake_export_link_flags", "dev-ros/ament_cmake_export_link_flags", "dev-ros/ament_cmake_export_link_flags", "dev-ros/ament_cmake_export_link_flags", "dev-ros/ament_cmake_export_link_flags", "dev-ros/ament_cmake_export_link_flags", "dev-ros/ament_cmake_export_targets", "dev-ros/ament_cmake_export_targets", "dev-ros/ament_cmake_export_targets", "dev-ros/ament_cmake_export_targets", "dev-ros/ament_cmake_export_targets", "dev-ros/ament_cmake_export_targets", "dev-ros/ament_cmake_export_targets", "dev-ros/ament_cmake_export_targets", "dev-ros/ament_cmake_gmock", "dev-ros/ament_cmake_gmock", "dev-ros/ament_cmake_gmock", "dev-ros/ament_cmake_gmock", "dev-ros/ament_cmake_gmock", "dev-ros/ament_cmake_gmock", "dev-ros/ament_cmake_gmock", "dev-ros/ament_cmake_gtest", "dev-ros/ament_cmake_gtest", "dev-ros/ament_cmake_gtest", "dev-ros/ament_cmake_gtest", "dev-ros/ament_cmake_gtest", "dev-ros/ament_cmake_gtest", "dev-ros/ament_cmake_gtest", "dev-ros/ament_cmake_gtest", "dev-ros/ament_cmake_include_directories", "dev-ros/ament_cmake_include_directories", "dev-ros/ament_cmake_include_directories", "dev-ros/ament_cmake_include_directories", "dev-ros/ament_cmake_include_directories", "dev-ros/ament_cmake_include_directories", "dev-ros/ament_cmake_include_directories", "dev-ros/ament_cmake_include_directories", "dev-ros/ament_cmake_libraries", "dev-ros/ament_cmake_libraries", "dev-ros/ament_cmake_libraries", "dev-ros/ament_cmake_libraries", "dev-ros/ament_cmake_libraries", "dev-ros/ament_cmake_libraries", "dev-ros/ament_cmake_libraries", "dev-ros/ament_cmake_libraries", "dev-ros/ament_cmake_lint_cmake", "dev-ros/ament_cmake_lint_cmake", "dev-ros/ament_cmake_lint_cmake", "dev-ros/ament_cmake_lint_cmake", "dev-ros/ament_cmake_lint_cmake", "dev-ros/ament_cmake_lint_cmake", "dev-ros/ament_cmake_pytest", "dev-ros/ament_cmake_pytest", "dev-ros/ament_cmake_pytest", "dev-ros/ament_cmake_pytest", "dev-ros/ament_cmake_pytest", "dev-ros/ament_cmake_pytest", "dev-ros/ament_cmake_pytest", "dev-ros/ament_cmake_python", "dev-ros/ament_cmake_python", "dev-ros/ament_cmake_python", "dev-ros/ament_cmake_python", "dev-ros/ament_cmake_python", "dev-ros/ament_cmake_python", "dev-ros/ament_cmake_python", "dev-ros/ament_cmake_python", "dev-ros/ament_cmake_ros", "dev-ros/ament_cmake_ros", "dev-ros/ament_cmake_target_dependencies", "dev-ros/ament_cmake_target_dependencies", "dev-ros/ament_cmake_target_dependencies", "dev-ros/ament_cmake_target_dependencies", "dev-ros/ament_cmake_target_dependencies", "dev-ros/ament_cmake_target_dependencies", "dev-ros/ament_cmake_target_dependencies", "dev-ros/ament_cmake_target_dependencies", "dev-ros/ament_cmake_test", "dev-ros/ament_cmake_test", "dev-ros/ament_cmake_test", "dev-ros/ament_cmake_test", "dev-ros/ament_cmake_test", "dev-ros/ament_cmake_test", "dev-ros/ament_cmake_test", "dev-ros/ament_cmake_test", "dev-ros/ament_cmake_uncrustify", "dev-ros/ament_cmake_uncrustify", "dev-ros/ament_cmake_uncrustify", "dev-ros/ament_cmake_uncrustify", "dev-ros/ament_cmake_uncrustify", "dev-ros/ament_cmake_uncrustify", "dev-ros/ament_cmake_version", "dev-ros/ament_cmake_version", "dev-ros/ament_cmake_version", "dev-ros/ament_cmake_version", "dev-ros/ament_cmake_version", "dev-ros/ament_cmake_version", "dev-ros/ament_cmake_version", "dev-ros/ament_cmake_version", "dev-ros/ament_cmake_xmllint", "dev-ros/ament_cmake_xmllint", "dev-ros/ament_cmake_xmllint", "dev-ros/ament_cmake_xmllint", "dev-ros/ament_cmake_xmllint", "dev-ros/ament_cmake_xmllint", "dev-ros/ament_copyright", "dev-ros/ament_copyright", "dev-ros/ament_copyright", "dev-ros/ament_cppcheck", "dev-ros/ament_cppcheck", "dev-ros/ament_cppcheck", "dev-ros/ament_cpplint", "dev-ros/ament_cpplint", "dev-ros/ament_cpplint", "dev-ros/ament_cpplint", "dev-ros/ament_cpplint", "dev-ros/ament_flake8", "dev-ros/ament_flake8", "dev-ros/ament_flake8", "dev-ros/ament_flake8", "dev-ros/ament_flake8", "dev-ros/ament_lint", "dev-ros/ament_lint", "dev-ros/ament_lint", "dev-ros/ament_lint_auto", "dev-ros/ament_lint_auto", "dev-ros/ament_lint_auto", "dev-ros/ament_lint_auto", "dev-ros/ament_lint_auto", "dev-ros/ament_lint_auto", "dev-ros/ament_lint_cmake", "dev-ros/ament_lint_cmake", "dev-ros/ament_lint_cmake", "dev-ros/ament_lint_cmake", "dev-ros/ament_lint_cmake", "dev-ros/ament_pep257", "dev-ros/ament_pep257", "dev-ros/ament_pep257", "dev-ros/ament_pep257", "dev-ros/ament_pep257", "dev-ros/ament_uncrustify", "dev-ros/ament_uncrustify", "dev-ros/ament_uncrustify", "dev-ros/ament_xmllint", "dev-ros/ament_xmllint", "dev-ros/ament_xmllint", "dev-ros/ament_xmllint", "dev-ros/ament_xmllint", "dev-ros/angles", "dev-ros/angles", "dev-ros/audio_capture", "dev-ros/audio_capture", "dev-ros/audio_common_msgs", "dev-ros/audio_common_msgs", "dev-ros/audio_common_msgs", "dev-ros/audio_common_msgs", "dev-ros/audio_common_msgs", "dev-ros/audio_common_msgs", "dev-ros/audio_play", "dev-ros/audio_play", "dev-ros/audio_play", "dev-ros/audio_play", "dev-ros/audio_play", "dev-ros/audio_play", "dev-ros/base_local_planner", "dev-ros/base_local_planner", "dev-ros/bond", "dev-ros/bond", "dev-ros/bond", "dev-ros/bondcpp", "dev-ros/bondcpp", "dev-ros/bondcpp", "dev-ros/bondpy", "dev-ros/bondpy", "dev-ros/bondpy", "dev-ros/calibration_estimation", "dev-ros/calibration_estimation", "dev-ros/calibration_estimation", "dev-ros/calibration_launch", "dev-ros/calibration_launch", "dev-ros/calibration_msgs", "dev-ros/calibration_msgs", "dev-ros/calibration_msgs", "dev-ros/calibration_setup_helper", "dev-ros/calibration_setup_helper", "dev-ros/calibration_setup_helper", "dev-ros/camera_calibration", "dev-ros/camera_calibration", "dev-ros/camera_calibration", "dev-ros/camera_calibration_parsers", "dev-ros/camera_calibration_parsers", "dev-ros/camera_info_manager", "dev-ros/camera_info_manager", "dev-ros/carrot_planner", "dev-ros/carrot_planner", "dev-ros/carrot_planner", "dev-ros/class_loader", "dev-ros/class_loader", "dev-ros/clear_costmap_recovery", "dev-ros/clear_costmap_recovery", "dev-ros/cmake_modules", "dev-ros/cmake_modules", "dev-ros/collada_parser", "dev-ros/collada_parser", "dev-ros/collada_urdf", "dev-ros/collada_urdf", "dev-ros/combined_robot_hw", "dev-ros/combined_robot_hw", "dev-ros/combined_robot_hw", "dev-ros/combined_robot_hw", "dev-ros/combined_robot_hw", "dev-ros/combined_robot_hw", "dev-ros/combined_robot_hw_tests", "dev-ros/combined_robot_hw_tests", "dev-ros/combined_robot_hw_tests", "dev-ros/combined_robot_hw_tests", "dev-ros/combined_robot_hw_tests", "dev-ros/combined_robot_hw_tests", "dev-ros/compressed_depth_image_transport", "dev-ros/compressed_depth_image_transport", "dev-ros/compressed_image_transport", "dev-ros/compressed_image_transport", "dev-ros/console_bridge_vendor", "dev-ros/console_bridge_vendor", "dev-ros/control_msgs", "dev-ros/control_msgs", "dev-ros/control_toolbox", "dev-ros/control_toolbox", "dev-ros/controller_interface", "dev-ros/controller_interface", "dev-ros/controller_interface", "dev-ros/controller_interface", "dev-ros/controller_interface", "dev-ros/controller_interface", "dev-ros/controller_manager", "dev-ros/controller_manager", "dev-ros/controller_manager", "dev-ros/controller_manager_msgs", "dev-ros/controller_manager_msgs", "dev-ros/controller_manager_msgs", "dev-ros/controller_manager_msgs", "dev-ros/controller_manager_msgs", "dev-ros/controller_manager_msgs", "dev-ros/controller_manager_tests", "dev-ros/controller_manager_tests", "dev-ros/convex_decomposition", "dev-ros/convex_decomposition", "dev-ros/costmap_2d", "dev-ros/costmap_2d", "dev-ros/costmap_2d", "dev-ros/cpp_common", "dev-ros/cpp_common", "dev-ros/cv_bridge", "dev-ros/cv_bridge", "dev-ros/depth_image_proc", "dev-ros/depth_image_proc", "dev-ros/depth_image_proc", "dev-ros/depthimage_to_laserscan", "dev-ros/depthimage_to_laserscan", "dev-ros/diagnostic_aggregator", "dev-ros/diagnostic_aggregator", "dev-ros/diagnostic_aggregator", "dev-ros/diagnostic_aggregator", "dev-ros/diagnostic_aggregator", "dev-ros/diagnostic_analysis", "dev-ros/diagnostic_analysis", "dev-ros/diagnostic_analysis", "dev-ros/diagnostic_analysis", "dev-ros/diagnostic_analysis", "dev-ros/diagnostic_analysis", "dev-ros/diagnostic_analysis", "dev-ros/diagnostic_common_diagnostics", "dev-ros/diagnostic_common_diagnostics", "dev-ros/diagnostic_common_diagnostics", "dev-ros/diagnostic_common_diagnostics", "dev-ros/diagnostic_common_diagnostics", "dev-ros/diagnostic_common_diagnostics", "dev-ros/diagnostic_common_diagnostics", "dev-ros/diagnostic_msgs", "dev-ros/diagnostic_msgs", "dev-ros/diagnostic_msgs", "dev-ros/diagnostic_updater", "dev-ros/diagnostic_updater", "dev-ros/diagnostic_updater", "dev-ros/diagnostic_updater", "dev-ros/diagnostic_updater", "dev-ros/diagnostic_updater", "dev-ros/diagnostic_updater", "dev-ros/driver_base", "dev-ros/driver_base", "dev-ros/driver_base", "dev-ros/dwa_local_planner", "dev-ros/dwa_local_planner", "dev-ros/dynamic_reconfigure", "dev-ros/dynamic_reconfigure", "dev-ros/eigen_conversions", "dev-ros/eigen_conversions", "dev-ros/eigen_stl_containers", "dev-ros/eigen_stl_containers", "dev-ros/fake_localization", "dev-ros/fake_localization", "dev-ros/filters", "dev-ros/filters", "dev-ros/gazebo_dev", "dev-ros/gazebo_dev", "dev-ros/gazebo_dev", "dev-ros/gazebo_msgs", "dev-ros/gazebo_msgs", "dev-ros/gazebo_msgs", "dev-ros/gazebo_plugins", "dev-ros/gazebo_plugins", "dev-ros/gazebo_ros", "dev-ros/gazebo_ros", "dev-ros/gazebo_ros", "dev-ros/gazebo_ros_control", "dev-ros/gazebo_ros_control", "dev-ros/gazebo_ros_control", "dev-ros/gencpp", "dev-ros/gencpp", "dev-ros/geneus", "dev-ros/geneus", "dev-ros/genlisp", "dev-ros/genlisp", "dev-ros/genmsg", "dev-ros/genmsg", "dev-ros/gennodejs", "dev-ros/gennodejs", "dev-ros/genpy", "dev-ros/genpy", "dev-ros/geodesy", "dev-ros/geodesy", "dev-ros/geographic_msgs", "dev-ros/geographic_msgs", "dev-ros/geographic_msgs", "dev-ros/geometric_shapes", "dev-ros/geometric_shapes", "dev-ros/geometry_msgs", "dev-ros/geometry_msgs", "dev-ros/geometry_msgs", "dev-ros/global_planner", "dev-ros/global_planner", "dev-ros/gmapping", "dev-ros/gmapping", "dev-ros/hardware_interface", "dev-ros/hardware_interface", "dev-ros/hardware_interface", "dev-ros/hardware_interface", "dev-ros/hardware_interface", "dev-ros/hardware_interface", "dev-ros/hector_compressed_map_transport", "dev-ros/hector_compressed_map_transport", "dev-ros/hector_compressed_map_transport", "dev-ros/hector_geotiff", "dev-ros/hector_geotiff", "dev-ros/hector_geotiff", "dev-ros/hector_geotiff_launch", "dev-ros/hector_geotiff_launch", "dev-ros/hector_geotiff_launch", "dev-ros/hector_geotiff_plugins", "dev-ros/hector_geotiff_plugins", "dev-ros/hector_geotiff_plugins", "dev-ros/hector_geotiff_plugins", "dev-ros/hector_geotiff_plugins", "dev-ros/hector_imu_attitude_to_tf", "dev-ros/hector_imu_attitude_to_tf", "dev-ros/hector_imu_attitude_to_tf", "dev-ros/hector_imu_tools", "dev-ros/hector_imu_tools", "dev-ros/hector_imu_tools", "dev-ros/hector_imu_tools", "dev-ros/hector_imu_tools", "dev-ros/hector_map_server", "dev-ros/hector_map_server", "dev-ros/hector_map_server", "dev-ros/hector_map_server", "dev-ros/hector_map_server", "dev-ros/hector_map_tools", "dev-ros/hector_map_tools", "dev-ros/hector_map_tools", "dev-ros/hector_map_tools", "dev-ros/hector_map_tools", "dev-ros/hector_mapping", "dev-ros/hector_mapping", "dev-ros/hector_mapping", "dev-ros/hector_mapping", "dev-ros/hector_mapping", "dev-ros/hector_marker_drawing", "dev-ros/hector_marker_drawing", "dev-ros/hector_marker_drawing", "dev-ros/hector_marker_drawing", "dev-ros/hector_marker_drawing", "dev-ros/hector_nav_msgs", "dev-ros/hector_nav_msgs", "dev-ros/hector_nav_msgs", "dev-ros/hector_pose_estimation", "dev-ros/hector_pose_estimation", "dev-ros/hector_pose_estimation", "dev-ros/hector_pose_estimation_core", "dev-ros/hector_pose_estimation_core", "dev-ros/hector_pose_estimation_core", "dev-ros/hector_slam_launch", "dev-ros/hector_slam_launch", "dev-ros/hector_slam_launch", "dev-ros/hector_trajectory_server", "dev-ros/hector_trajectory_server", "dev-ros/hector_trajectory_server", "dev-ros/hector_trajectory_server", "dev-ros/hector_trajectory_server", "dev-ros/image_cb_detector", "dev-ros/image_cb_detector", "dev-ros/image_geometry", "dev-ros/image_geometry", "dev-ros/image_proc", "dev-ros/image_proc", "dev-ros/image_proc", "dev-ros/image_publisher", "dev-ros/image_publisher", "dev-ros/image_publisher", "dev-ros/image_rotate", "dev-ros/image_rotate", "dev-ros/image_rotate", "dev-ros/image_transport", "dev-ros/image_transport", "dev-ros/image_view", "dev-ros/image_view", "dev-ros/image_view", "dev-ros/imu_complementary_filter", "dev-ros/imu_complementary_filter", "dev-ros/imu_complementary_filter", "dev-ros/imu_filter_madgwick", "dev-ros/imu_filter_madgwick", "dev-ros/imu_filter_madgwick", "dev-ros/imu_processors", "dev-ros/imu_processors", "dev-ros/imu_transformer", "dev-ros/imu_transformer", "dev-ros/interactive_marker_tutorials", "dev-ros/interactive_marker_tutorials", "dev-ros/interactive_markers", "dev-ros/interactive_markers", "dev-ros/interval_intersection", "dev-ros/interval_intersection", "dev-ros/interval_intersection", "dev-ros/ivcon", "dev-ros/ivcon", "dev-ros/joint_limits_interface", "dev-ros/joint_limits_interface", "dev-ros/joint_limits_interface", "dev-ros/joint_limits_interface", "dev-ros/joint_limits_interface", "dev-ros/joint_limits_interface", "dev-ros/joint_state_publisher", "dev-ros/joint_state_publisher", "dev-ros/joint_state_publisher_gui", "dev-ros/joint_state_publisher_gui", "dev-ros/joint_states_settler", "dev-ros/joint_states_settler", "dev-ros/joint_states_settler", "dev-ros/kdl_conversions", "dev-ros/kdl_conversions", "dev-ros/kdl_parser", "dev-ros/kdl_parser", "dev-ros/kdl_parser_py", "dev-ros/kdl_parser_py", "dev-ros/laser_assembler", "dev-ros/laser_assembler", "dev-ros/laser_cb_detector", "dev-ros/laser_cb_detector", "dev-ros/laser_filters", "dev-ros/laser_filters", "dev-ros/laser_geometry", "dev-ros/laser_geometry", "dev-ros/laser_proc", "dev-ros/laser_proc", "dev-ros/libmavconn", "dev-ros/libmavconn", "dev-ros/libmavconn", "dev-ros/libmavconn", "dev-ros/libmavconn", "dev-ros/librviz_tutorial", "dev-ros/librviz_tutorial", "dev-ros/map_msgs", "dev-ros/map_msgs", "dev-ros/map_server", "dev-ros/map_server", "dev-ros/map_server", "dev-ros/mavlink-gbp-release", "dev-ros/mavros", "dev-ros/mavros", "dev-ros/mavros_extras", "dev-ros/mavros_extras", "dev-ros/mavros_extras", "dev-ros/mavros_extras", "dev-ros/mavros_extras", "dev-ros/mavros_msgs", "dev-ros/mavros_msgs", "dev-ros/mavros_msgs", "dev-ros/mavros_msgs", "dev-ros/mavros_msgs", "dev-ros/media_export", "dev-ros/media_export", "dev-ros/message_filters", "dev-ros/message_filters", "dev-ros/message_filters", "dev-ros/message_filters", "dev-ros/message_filters", "dev-ros/message_generation", "dev-ros/message_generation", "dev-ros/message_runtime", "dev-ros/message_runtime", "dev-ros/message_to_tf", "dev-ros/message_to_tf", "dev-ros/message_to_tf", "dev-ros/mk", "dev-ros/mk", "dev-ros/mk", "dev-ros/mk", "dev-ros/mk", "dev-ros/monocam_settler", "dev-ros/monocam_settler", "dev-ros/monocam_settler", "dev-ros/move_base", "dev-ros/move_base", "dev-ros/move_base", "dev-ros/move_base_msgs", "dev-ros/move_base_msgs", "dev-ros/move_slow_and_clear", "dev-ros/move_slow_and_clear", "dev-ros/move_slow_and_clear", "dev-ros/moveit_msgs", "dev-ros/moveit_msgs", "dev-ros/nav_core", "dev-ros/nav_core", "dev-ros/nav_core", "dev-ros/nav_msgs", "dev-ros/nav_msgs", "dev-ros/nav_msgs", "dev-ros/navfn", "dev-ros/navfn", "dev-ros/navfn", "dev-ros/nmea_msgs", "dev-ros/nmea_msgs", "dev-ros/nodelet", "dev-ros/nodelet", "dev-ros/nodelet", "dev-ros/nodelet_topic_tools", "dev-ros/nodelet_topic_tools", "dev-ros/nodelet_topic_tools", "dev-ros/nodelet_tutorial_math", "dev-ros/nodelet_tutorial_math", "dev-ros/nodelet_tutorial_math", "dev-ros/object_recognition_msgs", "dev-ros/object_recognition_msgs", "dev-ros/octomap_msgs", "dev-ros/octomap_msgs", "dev-ros/octomap_ros", "dev-ros/octomap_ros", "dev-ros/opencv_apps", "dev-ros/opencv_apps", "dev-ros/opencv_tests", "dev-ros/opencv_tests", "dev-ros/openni2_camera", "dev-ros/openni2_camera", "dev-ros/openni2_launch", "dev-ros/openni2_launch", "dev-ros/openslam_gmapping", "dev-ros/openslam_gmapping", "dev-ros/pcl_conversions", "dev-ros/pcl_conversions", "dev-ros/pcl_msgs", "dev-ros/pcl_msgs", "dev-ros/pcl_ros", "dev-ros/pcl_ros", "dev-ros/pluginlib", "dev-ros/pluginlib", "dev-ros/pluginlib_tutorials", "dev-ros/pluginlib_tutorials", "dev-ros/pluginlib_tutorials", "dev-ros/poco_vendor", "dev-ros/poco_vendor", "dev-ros/pointcloud_to_laserscan", "dev-ros/pointcloud_to_laserscan", "dev-ros/polled_camera", "dev-ros/polled_camera", "dev-ros/pr2_dashboard_aggregator", "dev-ros/pr2_dashboard_aggregator", "dev-ros/pr2_dashboard_aggregator", "dev-ros/pr2_description", "dev-ros/pr2_description", "dev-ros/pr2_description", "dev-ros/pr2_machine", "dev-ros/pr2_machine", "dev-ros/pr2_machine", "dev-ros/pr2_msgs", "dev-ros/pr2_msgs", "dev-ros/pr2_msgs", "dev-ros/python_cmake_module", "dev-ros/python_cmake_module", "dev-ros/python_qt_binding", "dev-ros/python_qt_binding", "dev-ros/qt_dotgraph", "dev-ros/qt_dotgraph", "dev-ros/qt_dotgraph", "dev-ros/qt_gui", "dev-ros/qt_gui", "dev-ros/qt_gui", "dev-ros/qt_gui_app", "dev-ros/qt_gui_app", "dev-ros/qt_gui_app", "dev-ros/qt_gui_cpp", "dev-ros/qt_gui_cpp", "dev-ros/qt_gui_py_common", "dev-ros/qt_gui_py_common", "dev-ros/qt_gui_py_common", "dev-ros/random_numbers", "dev-ros/random_numbers", "dev-ros/realtime_tools", "dev-ros/realtime_tools", "dev-ros/resource_retriever", "dev-ros/resource_retriever", "dev-ros/rgbd_launch", "dev-ros/rgbd_launch", "dev-ros/robot_localization", "dev-ros/robot_localization", "dev-ros/robot_pose_ekf", "dev-ros/robot_pose_ekf", "dev-ros/robot_pose_publisher", "dev-ros/robot_pose_publisher", "dev-ros/robot_state_publisher", "dev-ros/robot_state_publisher", "dev-ros/ros_environment", "dev-ros/ros_environment", "dev-ros/rosapi", "dev-ros/rosapi", "dev-ros/rosapi", "dev-ros/rosapi", "dev-ros/rosauth", "dev-ros/rosauth", "dev-ros/rosbag", "dev-ros/rosbag", "dev-ros/rosbag", "dev-ros/rosbag", "dev-ros/rosbag", "dev-ros/rosbag", "dev-ros/rosbag_migration_rule", "dev-ros/rosbag_migration_rule", "dev-ros/rosbag_storage", "dev-ros/rosbag_storage", "dev-ros/rosbag_storage", "dev-ros/rosbag_storage", "dev-ros/rosbag_storage", "dev-ros/rosbash", "dev-ros/rosbash", "dev-ros/rosbash", "dev-ros/rosbash", "dev-ros/rosbash", "dev-ros/rosboost_cfg", "dev-ros/rosboost_cfg", "dev-ros/rosboost_cfg", "dev-ros/rosboost_cfg", "dev-ros/rosboost_cfg", "dev-ros/rosbridge_library", "dev-ros/rosbridge_library", "dev-ros/rosbridge_library", "dev-ros/rosbridge_library", "dev-ros/rosbridge_msgs", "dev-ros/rosbridge_msgs", "dev-ros/rosbridge_msgs", "dev-ros/rosbridge_msgs", "dev-ros/rosbridge_server", "dev-ros/rosbridge_server", "dev-ros/rosbridge_server", "dev-ros/rosbridge_server", "dev-ros/rosbuild", "dev-ros/rosbuild", "dev-ros/rosbuild", "dev-ros/rosbuild", "dev-ros/rosbuild", "dev-ros/rosclean", "dev-ros/rosclean", "dev-ros/rosclean", "dev-ros/rosclean", "dev-ros/rosclean", "dev-ros/rosconsole", "dev-ros/rosconsole", "dev-ros/rosconsole", "dev-ros/rosconsole", "dev-ros/rosconsole_bridge", "dev-ros/rosconsole_bridge", "dev-ros/roscpp", "dev-ros/roscpp", "dev-ros/roscpp", "dev-ros/roscpp", "dev-ros/roscpp_serialization", "dev-ros/roscpp_serialization", "dev-ros/roscpp_traits", "dev-ros/roscpp_traits", "dev-ros/roscpp_tutorials", "dev-ros/roscpp_tutorials", "dev-ros/roscpp_tutorials", "dev-ros/roscreate", "dev-ros/roscreate", "dev-ros/roscreate", "dev-ros/roscreate", "dev-ros/rosdiagnostic", "dev-ros/rosdiagnostic", "dev-ros/rosdiagnostic", "dev-ros/rosdiagnostic", "dev-ros/rosdiagnostic", "dev-ros/rosdiagnostic", "dev-ros/rosdiagnostic", "dev-ros/rosgraph", "dev-ros/rosgraph", "dev-ros/rosgraph", "dev-ros/rosgraph", "dev-ros/rosgraph", "dev-ros/rosgraph_msgs", "dev-ros/rosgraph_msgs", "dev-ros/roslang", "dev-ros/roslang", "dev-ros/roslang", "dev-ros/roslang", "dev-ros/roslang", "dev-ros/roslaunch", "dev-ros/roslaunch", "dev-ros/roslaunch", "dev-ros/roslib", "dev-ros/roslib", "dev-ros/roslib", "dev-ros/roslib", "dev-ros/roslint", "dev-ros/roslint", "dev-ros/roslisp", "dev-ros/roslisp", "dev-ros/roslz4", "dev-ros/roslz4", "dev-ros/roslz4", "dev-ros/roslz4", "dev-ros/roslz4", "dev-ros/rosmake", "dev-ros/rosmake", "dev-ros/rosmake", "dev-ros/rosmake", "dev-ros/rosmake", "dev-ros/rosmaster", "dev-ros/rosmaster", "dev-ros/rosmaster", "dev-ros/rosmaster", "dev-ros/rosmaster", "dev-ros/rosmaster", "dev-ros/rosmsg", "dev-ros/rosmsg", "dev-ros/rosmsg", "dev-ros/rosnode", "dev-ros/rosnode", "dev-ros/rosnode", "dev-ros/rosnode", "dev-ros/rosnode", "dev-ros/rosout", "dev-ros/rosout", "dev-ros/rosout", "dev-ros/rosout", "dev-ros/rosout", "dev-ros/rosout", "dev-ros/rospack", "dev-ros/rospack", "dev-ros/rosparam", "dev-ros/rosparam", "dev-ros/rosparam", "dev-ros/rosparam", "dev-ros/rosparam", "dev-ros/rosparam", "dev-ros/rospy", "dev-ros/rospy", "dev-ros/rospy", "dev-ros/rospy", "dev-ros/rospy", "dev-ros/rospy", "dev-ros/rospy_tutorials", "dev-ros/rospy_tutorials", "dev-ros/rospy_tutorials", "dev-ros/rosserial_arduino", "dev-ros/rosserial_arduino", "dev-ros/rosserial_arduino", "dev-ros/rosserial_arduino", "dev-ros/rosserial_client", "dev-ros/rosserial_client", "dev-ros/rosserial_client", "dev-ros/rosserial_client", "dev-ros/rosserial_embeddedlinux", "dev-ros/rosserial_embeddedlinux", "dev-ros/rosserial_embeddedlinux", "dev-ros/rosserial_embeddedlinux", "dev-ros/rosserial_msgs", "dev-ros/rosserial_msgs", "dev-ros/rosserial_msgs", "dev-ros/rosserial_msgs", "dev-ros/rosserial_python", "dev-ros/rosserial_python", "dev-ros/rosserial_python", "dev-ros/rosserial_python", "dev-ros/rosserial_server", "dev-ros/rosserial_server", "dev-ros/rosserial_server", "dev-ros/rosserial_tivac", "dev-ros/rosserial_tivac", "dev-ros/rosserial_tivac", "dev-ros/rosserial_tivac", "dev-ros/rosserial_windows", "dev-ros/rosserial_windows", "dev-ros/rosserial_windows", "dev-ros/rosserial_windows", "dev-ros/rosserial_xbee", "dev-ros/rosserial_xbee", "dev-ros/rosserial_xbee", "dev-ros/rosserial_xbee", "dev-ros/rosservice", "dev-ros/rosservice", "dev-ros/rosservice", "dev-ros/rosservice", "dev-ros/rosservice", "dev-ros/rosservice", "dev-ros/rostest", "dev-ros/rostest", "dev-ros/rostest", "dev-ros/rostest", "dev-ros/rostest", "dev-ros/rostime", "dev-ros/rostime", "dev-ros/rostopic", "dev-ros/rostopic", "dev-ros/rostopic", "dev-ros/rostopic", "dev-ros/rostopic", "dev-ros/rosunit", "dev-ros/rosunit", "dev-ros/rosunit", "dev-ros/rosunit", "dev-ros/rosunit", "dev-ros/roswtf", "dev-ros/roswtf", "dev-ros/roswtf", "dev-ros/roswtf", "dev-ros/roswtf", "dev-ros/rotate_recovery", "dev-ros/rotate_recovery", "dev-ros/rqt_action", "dev-ros/rqt_action", "dev-ros/rqt_bag", "dev-ros/rqt_bag", "dev-ros/rqt_bag_plugins", "dev-ros/rqt_bag_plugins", "dev-ros/rqt_console", "dev-ros/rqt_console", "dev-ros/rqt_controller_manager", "dev-ros/rqt_controller_manager", "dev-ros/rqt_controller_manager", "dev-ros/rqt_controller_manager", "dev-ros/rqt_controller_manager", "dev-ros/rqt_controller_manager", "dev-ros/rqt_dep", "dev-ros/rqt_dep", "dev-ros/rqt_graph", "dev-ros/rqt_graph", "dev-ros/rqt_gui", "dev-ros/rqt_gui", "dev-ros/rqt_gui_cpp", "dev-ros/rqt_gui_cpp", "dev-ros/rqt_gui_py", "dev-ros/rqt_gui_py", "dev-ros/rqt_image_view", "dev-ros/rqt_image_view", "dev-ros/rqt_launch", "dev-ros/rqt_launch", "dev-ros/rqt_logger_level", "dev-ros/rqt_logger_level", "dev-ros/rqt_moveit", "dev-ros/rqt_moveit", "dev-ros/rqt_msg", "dev-ros/rqt_msg", "dev-ros/rqt_nav_view", "dev-ros/rqt_nav_view", "dev-ros/rqt_plot", "dev-ros/rqt_plot", "dev-ros/rqt_pose_view", "dev-ros/rqt_pose_view", "dev-ros/rqt_publisher", "dev-ros/rqt_publisher", "dev-ros/rqt_py_common", "dev-ros/rqt_py_common", "dev-ros/rqt_py_console", "dev-ros/rqt_py_console", "dev-ros/rqt_reconfigure", "dev-ros/rqt_reconfigure", "dev-ros/rqt_robot_dashboard", "dev-ros/rqt_robot_dashboard", "dev-ros/rqt_robot_monitor", "dev-ros/rqt_robot_monitor", "dev-ros/rqt_robot_steering", "dev-ros/rqt_robot_steering", "dev-ros/rqt_runtime_monitor", "dev-ros/rqt_runtime_monitor", "dev-ros/rqt_rviz", "dev-ros/rqt_rviz", "dev-ros/rqt_service_caller", "dev-ros/rqt_service_caller", "dev-ros/rqt_shell", "dev-ros/rqt_shell", "dev-ros/rqt_srv", "dev-ros/rqt_srv", "dev-ros/rqt_tf_tree", "dev-ros/rqt_tf_tree", "dev-ros/rqt_top", "dev-ros/rqt_top", "dev-ros/rqt_topic", "dev-ros/rqt_topic", "dev-ros/rqt_web", "dev-ros/rqt_web", "dev-ros/rviz", "dev-ros/rviz", "dev-ros/rviz_imu_plugin", "dev-ros/rviz_imu_plugin", "dev-ros/rviz_imu_plugin", "dev-ros/rviz_plugin_tutorials", "dev-ros/rviz_plugin_tutorials", "dev-ros/rviz_python_tutorial", "dev-ros/rviz_python_tutorial", "dev-ros/self_test", "dev-ros/self_test", "dev-ros/self_test", "dev-ros/self_test", "dev-ros/self_test", "dev-ros/self_test", "dev-ros/self_test", "dev-ros/sensor_msgs", "dev-ros/sensor_msgs", "dev-ros/sensor_msgs", "dev-ros/settlerlib", "dev-ros/settlerlib", "dev-ros/settlerlib", "dev-ros/shape_msgs", "dev-ros/shape_msgs", "dev-ros/shape_msgs", "dev-ros/smach", "dev-ros/smach", "dev-ros/smach_msgs", "dev-ros/smach_msgs", "dev-ros/smach_ros", "dev-ros/smach_ros", "dev-ros/smclib", "dev-ros/smclib", "dev-ros/smclib", "dev-ros/stage_ros", "dev-ros/stage_ros", "dev-ros/std_msgs", "dev-ros/std_msgs", "dev-ros/std_srvs", "dev-ros/std_srvs", "dev-ros/stereo_image_proc", "dev-ros/stereo_image_proc", "dev-ros/stereo_image_proc", "dev-ros/stereo_msgs", "dev-ros/stereo_msgs", "dev-ros/stereo_msgs", "dev-ros/test_bond", "dev-ros/test_bond", "dev-ros/test_bond", "dev-ros/test_diagnostic_aggregator", "dev-ros/test_diagnostic_aggregator", "dev-ros/test_diagnostic_aggregator", "dev-ros/test_diagnostic_aggregator", "dev-ros/test_diagnostic_aggregator", "dev-ros/test_diagnostic_aggregator", "dev-ros/test_diagnostic_aggregator", "dev-ros/test_nodelet", "dev-ros/test_nodelet", "dev-ros/test_nodelet", "dev-ros/test_nodelet_topic_tools", "dev-ros/test_nodelet_topic_tools", "dev-ros/test_nodelet_topic_tools", "dev-ros/test_rosbag", "dev-ros/test_rosbag", "dev-ros/test_rosbag_storage", "dev-ros/test_rosbag_storage", "dev-ros/test_rosbag_storage", "dev-ros/test_rosbag_storage", "dev-ros/test_rosbag_storage", "dev-ros/test_roscpp", "dev-ros/test_roscpp", "dev-ros/test_roscpp", "dev-ros/test_roscpp", "dev-ros/test_roscpp", "dev-ros/test_roscpp", "dev-ros/test_rosgraph", "dev-ros/test_rosgraph", "dev-ros/test_rosgraph", "dev-ros/test_rosgraph", "dev-ros/test_rosgraph", "dev-ros/test_rosgraph", "dev-ros/test_roslaunch", "dev-ros/test_roslaunch", "dev-ros/test_roslaunch", "dev-ros/test_roslaunch", "dev-ros/test_roslaunch", "dev-ros/test_roslib_comm", "dev-ros/test_roslib_comm", "dev-ros/test_roslib_comm", "dev-ros/test_roslib_comm", "dev-ros/test_roslib_comm", "dev-ros/test_rosmaster", "dev-ros/test_rosmaster", "dev-ros/test_rosmaster", "dev-ros/test_rosmaster", "dev-ros/test_rosmaster", "dev-ros/test_rosparam", "dev-ros/test_rosparam", "dev-ros/test_rosparam", "dev-ros/test_rosparam", "dev-ros/test_rosparam", "dev-ros/test_rosparam", "dev-ros/test_rospy", "dev-ros/test_rospy", "dev-ros/test_rospy", "dev-ros/test_rospy", "dev-ros/test_rospy", "dev-ros/test_rosservice", "dev-ros/test_rosservice", "dev-ros/test_rosservice", "dev-ros/test_rosservice", "dev-ros/test_rosservice", "dev-ros/test_tf2", "dev-ros/test_tf2", "dev-ros/tf", "dev-ros/tf", "dev-ros/tf2", "dev-ros/tf2", "dev-ros/tf2", "dev-ros/tf2", "dev-ros/tf2_bullet", "dev-ros/tf2_bullet", "dev-ros/tf2_bullet", "dev-ros/tf2_bullet", "dev-ros/tf2_eigen", "dev-ros/tf2_eigen", "dev-ros/tf2_eigen", "dev-ros/tf2_eigen", "dev-ros/tf2_geometry_msgs", "dev-ros/tf2_geometry_msgs", "dev-ros/tf2_geometry_msgs", "dev-ros/tf2_geometry_msgs", "dev-ros/tf2_kdl", "dev-ros/tf2_kdl", "dev-ros/tf2_kdl", "dev-ros/tf2_kdl", "dev-ros/tf2_msgs", "dev-ros/tf2_msgs", "dev-ros/tf2_msgs", "dev-ros/tf2_msgs", "dev-ros/tf2_py", "dev-ros/tf2_py", "dev-ros/tf2_py", "dev-ros/tf2_py", "dev-ros/tf2_ros", "dev-ros/tf2_ros", "dev-ros/tf2_ros", "dev-ros/tf2_ros", "dev-ros/tf2_sensor_msgs", "dev-ros/tf2_sensor_msgs", "dev-ros/tf2_sensor_msgs", "dev-ros/tf2_sensor_msgs", "dev-ros/tf2_tools", "dev-ros/tf2_tools", "dev-ros/tf2_tools", "dev-ros/tf2_tools", "dev-ros/tf_conversions", "dev-ros/tf_conversions", "dev-ros/theora_image_transport", "dev-ros/theora_image_transport", "dev-ros/timestamp_tools", "dev-ros/timestamp_tools", "dev-ros/topic_tools", "dev-ros/topic_tools", "dev-ros/trajectory_msgs", "dev-ros/trajectory_msgs", "dev-ros/trajectory_msgs", "dev-ros/transmission_interface", "dev-ros/transmission_interface", "dev-ros/transmission_interface", "dev-ros/transmission_interface", "dev-ros/transmission_interface", "dev-ros/transmission_interface", "dev-ros/turtle_actionlib", "dev-ros/turtle_actionlib", "dev-ros/turtle_tf", "dev-ros/turtle_tf", "dev-ros/turtle_tf2", "dev-ros/turtle_tf2", "dev-ros/turtlesim", "dev-ros/turtlesim", "dev-ros/turtlesim", "dev-ros/unique_id", "dev-ros/unique_id", "dev-ros/urdf", "dev-ros/urdf", "dev-ros/urdf_parser_plugin", "dev-ros/urdf_parser_plugin", "dev-ros/urdf_tutorial", "dev-ros/urdf_tutorial", "dev-ros/urg_c", "dev-ros/urg_c", "dev-ros/urg_node", "dev-ros/urg_node", "dev-ros/uuid_msgs", "dev-ros/uuid_msgs", "dev-ros/visp_auto_tracker", "dev-ros/visp_auto_tracker", "dev-ros/visp_bridge", "dev-ros/visp_bridge", "dev-ros/visp_bridge", "dev-ros/visp_camera_calibration", "dev-ros/visp_camera_calibration", "dev-ros/visp_camera_calibration", "dev-ros/visp_hand2eye_calibration", "dev-ros/visp_hand2eye_calibration", "dev-ros/visp_hand2eye_calibration", "dev-ros/visp_tracker", "dev-ros/visp_tracker", "dev-ros/visp_tracker", "dev-ros/visualization_marker_tutorials", "dev-ros/visualization_marker_tutorials", "dev-ros/visualization_msgs", "dev-ros/visualization_msgs", "dev-ros/visualization_msgs", "dev-ros/visualization_msgs", "dev-ros/voxel_grid", "dev-ros/voxel_grid", "dev-ros/voxel_grid", "dev-ros/voxel_grid", "dev-ros/xacro", "dev-ros/xacro", "dev-ros/xacro", "dev-ros/xmlrpcpp", "dev-ros/xmlrpcpp", "dev-ros/xmlrpcpp", "dev-ros/xmlrpcpp", "dev-ros/xmlrpcpp", "dev-ruby/GeoRuby", "dev-ruby/abstract", "dev-ruby/abstract", "dev-ruby/acme-client", "dev-ruby/acme-client", "dev-ruby/actioncable", "dev-ruby/actioncable", "dev-ruby/actioncable", "dev-ruby/actionmailbox", "dev-ruby/actionmailbox", "dev-ruby/actionmailer", "dev-ruby/actionmailer", "dev-ruby/actionmailer", "dev-ruby/actionpack-action_caching", "dev-ruby/actionpack-action_caching", "dev-ruby/actionpack-xml_parser", "dev-ruby/actionpack", "dev-ruby/actionpack", "dev-ruby/actionpack", "dev-ruby/actiontext", "dev-ruby/actiontext", "dev-ruby/actionview", "dev-ruby/actionview", "dev-ruby/actionview", "dev-ruby/activejob", "dev-ruby/activejob", "dev-ruby/activejob", "dev-ruby/activeldap", "dev-ruby/activeldap", "dev-ruby/activeldap", "dev-ruby/activemodel-serializers-xml", "dev-ruby/activemodel", "dev-ruby/activemodel", "dev-ruby/activemodel", "dev-ruby/activerecord", "dev-ruby/activerecord", "dev-ruby/activerecord", "dev-ruby/activestorage", "dev-ruby/activestorage", "dev-ruby/activestorage", "dev-ruby/activesupport", "dev-ruby/activesupport", "dev-ruby/activesupport", "dev-ruby/acts_as_list", "dev-ruby/acts_as_list", "dev-ruby/acts_as_list", "dev-ruby/addressable", "dev-ruby/ae", "dev-ruby/afm", "dev-ruby/afm", "dev-ruby/airbrussh", "dev-ruby/allison", "dev-ruby/amatch", "dev-ruby/ammeter", "dev-ruby/amq-client", "dev-ruby/amq-protocol", "dev-ruby/amq-protocol", "dev-ruby/amqp", "dev-ruby/annoy", "dev-ruby/ansi", "dev-ruby/ansi", "dev-ruby/archive-tar-minitar", "dev-ruby/arel-helpers", "dev-ruby/arel-helpers", "dev-ruby/arel", "dev-ruby/ascii85", "dev-ruby/ascii85", "dev-ruby/asciidoctor-diagram", "dev-ruby/asciidoctor", "dev-ruby/asciidoctor", "dev-ruby/asciidoctor", "dev-ruby/asciidoctor", "dev-ruby/asciidoctor", "dev-ruby/asciimath", "dev-ruby/asciimath", "dev-ruby/asciimath", "dev-ruby/asciimath", "dev-ruby/asciimath", "dev-ruby/ast", "dev-ruby/ast", "dev-ruby/ast", "dev-ruby/async_sinatra", "dev-ruby/atomic", "dev-ruby/atomic", "dev-ruby/autoprefixer-rails", "dev-ruby/autoprefixer-rails", "dev-ruby/autoprefixer-rails", "dev-ruby/autoprefixer-rails", "dev-ruby/aws-eventstream", "dev-ruby/aws-eventstream", "dev-ruby/aws-partitions", "dev-ruby/aws-partitions", "dev-ruby/aws-partitions", "dev-ruby/aws-s3", "dev-ruby/aws-sdk-core", "dev-ruby/aws-sdk-core", "dev-ruby/aws-sdk-resources", "dev-ruby/aws-sdk", "dev-ruby/aws-sigv4", "dev-ruby/aws-sigv4", "dev-ruby/aws-sigv4", "dev-ruby/aws-sigv4", "dev-ruby/axiom-types", "dev-ruby/backports", "dev-ruby/backports", "dev-ruby/backports", "dev-ruby/bacon", "dev-ruby/bacon", "dev-ruby/barby", "dev-ruby/base32", "dev-ruby/base32", "dev-ruby/bcrypt-ruby", "dev-ruby/bcrypt-ruby", "dev-ruby/bcrypt-ruby", "dev-ruby/bcrypt-ruby", "dev-ruby/bcrypt_pbkdf", "dev-ruby/bcrypt_pbkdf", "dev-ruby/best_in_place", "dev-ruby/bindata", "dev-ruby/bindex", "dev-ruby/bindex", "dev-ruby/binding_of_caller", "dev-ruby/binding_of_caller", "dev-ruby/binding_of_caller", "dev-ruby/bit-struct", "dev-ruby/bit-struct", "dev-ruby/blankslate", "dev-ruby/blankslate", "dev-ruby/blinkstick", "dev-ruby/bogus", "dev-ruby/brass", "dev-ruby/brotli", "dev-ruby/brotli", "dev-ruby/brotli", "dev-ruby/bsearch", "dev-ruby/bson", "dev-ruby/bson", "dev-ruby/bson", "dev-ruby/buftok", "dev-ruby/buftok", "dev-ruby/builder", "dev-ruby/bundler-audit", "dev-ruby/bundler-audit", "dev-ruby/bundler", "dev-ruby/bundler", "dev-ruby/bundler", "dev-ruby/bundler", "dev-ruby/bundler", "dev-ruby/bundler", "dev-ruby/bundler", "dev-ruby/bundler", "dev-ruby/bunny", "dev-ruby/bunny", "dev-ruby/bunny", "dev-ruby/c21e", "dev-ruby/c21e", "dev-ruby/capistrano", "dev-ruby/capistrano", "dev-ruby/capistrano", "dev-ruby/capybara", "dev-ruby/capybara", "dev-ruby/capybara", "dev-ruby/capybara", "dev-ruby/capybara", "dev-ruby/capybara", "dev-ruby/certificate_authority", "dev-ruby/certified", "dev-ruby/charlock_holmes", "dev-ruby/childlabor", "dev-ruby/childprocess", "dev-ruby/childprocess", "dev-ruby/childprocess", "dev-ruby/chronic", "dev-ruby/chunky_png", "dev-ruby/chunky_png", "dev-ruby/chunky_png", "dev-ruby/cinch", "dev-ruby/classifier-reborn", "dev-ruby/climate_control", "dev-ruby/cliver", "dev-ruby/cliver", "dev-ruby/cmdparse", "dev-ruby/cmdparse", "dev-ruby/coderay", "dev-ruby/coderay", "dev-ruby/coercible", "dev-ruby/coffee-rails", "dev-ruby/coffee-script-source", "dev-ruby/coffee-script-source", "dev-ruby/coffee-script", "dev-ruby/color", "dev-ruby/colorator", "dev-ruby/colored", "dev-ruby/colored", "dev-ruby/colored2", "dev-ruby/colorize", "dev-ruby/columnize", "dev-ruby/combustion", "dev-ruby/combustion", "dev-ruby/commander", "dev-ruby/commander", "dev-ruby/concurrent-ruby", "dev-ruby/concurrent-ruby", "dev-ruby/concurrent-ruby", "dev-ruby/concurrent-ruby", "dev-ruby/connection_pool", "dev-ruby/connection_pool", "dev-ruby/connection_pool", "dev-ruby/connection_pool", "dev-ruby/contracts", "dev-ruby/contracts", "dev-ruby/contracts", "dev-ruby/coolio", "dev-ruby/coolio", "dev-ruby/coolio", "dev-ruby/countdownlatch", "dev-ruby/crack", "dev-ruby/crack", "dev-ruby/crass", "dev-ruby/creole", "dev-ruby/creole", "dev-ruby/cri", "dev-ruby/cri", "dev-ruby/css_parser", "dev-ruby/css_parser", "dev-ruby/css_parser", "dev-ruby/curb", "dev-ruby/curb", "dev-ruby/curb", "dev-ruby/curses", "dev-ruby/curses", "dev-ruby/curses", "dev-ruby/curses", "dev-ruby/d3_rails", "dev-ruby/daemon_controller", "dev-ruby/daemons", "dev-ruby/daemons", "dev-ruby/daemons", "dev-ruby/dalli", "dev-ruby/database_cleaner-active_record", "dev-ruby/database_cleaner-core", "dev-ruby/database_cleaner", "dev-ruby/database_cleaner", "dev-ruby/date_validator", "dev-ruby/date_validator", "dev-ruby/date_validator", "dev-ruby/dbf", "dev-ruby/dbf", "dev-ruby/dbf", "dev-ruby/dbf", "dev-ruby/ddmemoize", "dev-ruby/ddmetrics", "dev-ruby/ddplugin", "dev-ruby/ddplugin", "dev-ruby/debug_inspector", "dev-ruby/debug_inspector", "dev-ruby/debug_inspector", "dev-ruby/deep_merge", "dev-ruby/delayer-deferred", "dev-ruby/delayer-deferred", "dev-ruby/delayer", "dev-ruby/delayer", "dev-ruby/delayer", "dev-ruby/dependor", "dev-ruby/deprecated", "dev-ruby/descendants_tracker", "dev-ruby/did_you_mean", "dev-ruby/did_you_mean", "dev-ruby/did_you_mean", "dev-ruby/diff-lcs", "dev-ruby/diff-lcs", "dev-ruby/diff-lcs", "dev-ruby/diff-lcs", "dev-ruby/diva", "dev-ruby/dnsruby", "dev-ruby/dnsruby", "dev-ruby/docile", "dev-ruby/docile", "dev-ruby/domain_name", "dev-ruby/dotenv", "dev-ruby/duktape-rb", "dev-ruby/dust", "dev-ruby/ecma-re-validator", "dev-ruby/ecma-re-validator", "dev-ruby/ecma-re-validator", "dev-ruby/ed25519", "dev-ruby/ed25519", "dev-ruby/elasticsearch-api", "dev-ruby/elasticsearch-api", "dev-ruby/elasticsearch-extensions", "dev-ruby/elasticsearch-transport", "dev-ruby/elasticsearch-transport", "dev-ruby/elasticsearch", "dev-ruby/elasticsearch", "dev-ruby/em-websocket", "dev-ruby/equalizer", "dev-ruby/equalizer", "dev-ruby/equatable", "dev-ruby/equatable", "dev-ruby/erubi", "dev-ruby/erubi", "dev-ruby/erubis", "dev-ruby/erubis", "dev-ruby/ethon", "dev-ruby/ethon", "dev-ruby/ethon", "dev-ruby/evented-spec", "dev-ruby/eventmachine", "dev-ruby/execjs", "dev-ruby/execjs", "dev-ruby/execjs", "dev-ruby/execjs", "dev-ruby/exifr", "dev-ruby/exifr", "dev-ruby/facter", "dev-ruby/facter", "dev-ruby/fakefs", "dev-ruby/fakefs", "dev-ruby/faker", "dev-ruby/faker", "dev-ruby/faraday", "dev-ruby/faraday", "dev-ruby/faraday_middleware-multi_json", "dev-ruby/faraday_middleware-multi_json", "dev-ruby/faraday_middleware", "dev-ruby/faraday_middleware", "dev-ruby/fast-stemmer", "dev-ruby/fast-stemmer", "dev-ruby/fast_gettext", "dev-ruby/fast_gettext", "dev-ruby/fast_gettext", "dev-ruby/fast_xs", "dev-ruby/fast_xs", "dev-ruby/fattr", "dev-ruby/fcgi", "dev-ruby/ferret", "dev-ruby/ffaker", "dev-ruby/ffaker", "dev-ruby/ffaker", "dev-ruby/ffi-compiler", "dev-ruby/ffi", "dev-ruby/ffi", "dev-ruby/ffi", "dev-ruby/ffi", "dev-ruby/ffi", "dev-ruby/file-tail", "dev-ruby/filesize", "dev-ruby/filigree", "dev-ruby/fivemat", "dev-ruby/flexmock", "dev-ruby/flickraw", "dev-ruby/flog", "dev-ruby/font-awesome-rails", "dev-ruby/font-awesome-rails", "dev-ruby/font-awesome-rails", "dev-ruby/forgery", "dev-ruby/forwardable-extended", "dev-ruby/fuubar", "dev-ruby/fuubar", "dev-ruby/gettext-setup", "dev-ruby/gettext_i18n_rails", "dev-ruby/gh", "dev-ruby/gherkin", "dev-ruby/gist", "dev-ruby/git", "dev-ruby/git", "dev-ruby/globalid", "dev-ruby/globalid", "dev-ruby/globalid", "dev-ruby/gnuplot", "dev-ruby/google-protobuf", "dev-ruby/google-protobuf", "dev-ruby/google-protobuf", "dev-ruby/gpgme", "dev-ruby/gruff", "dev-ruby/gruff", "dev-ruby/gruff", "dev-ruby/haml-rails", "dev-ruby/haml", "dev-ruby/haml", "dev-ruby/haml", "dev-ruby/haml", "dev-ruby/hamster", "dev-ruby/hashdiff", "dev-ruby/hashdiff", "dev-ruby/hashery", "dev-ruby/hashicorp-checkpoint", "dev-ruby/hashie", "dev-ruby/hashie", "dev-ruby/hashie", "dev-ruby/hashr", "dev-ruby/heredoc_unindent", "dev-ruby/heredoc_unindent", "dev-ruby/hiera-eyaml-gpg", "dev-ruby/hiera-eyaml-plaintext", "dev-ruby/hiera-eyaml", "dev-ruby/hiera", "dev-ruby/hiera", "dev-ruby/highline", "dev-ruby/hipchat", "dev-ruby/hiredis", "dev-ruby/histogram", "dev-ruby/hitimes", "dev-ruby/hocon", "dev-ruby/hocon", "dev-ruby/hoe", "dev-ruby/hpricot", "dev-ruby/hpricot", "dev-ruby/html2haml", "dev-ruby/htmlentities", "dev-ruby/http-accept", "dev-ruby/http-accept", "dev-ruby/http-cookie", "dev-ruby/http-cookie", "dev-ruby/http-form_data", "dev-ruby/http-form_data", "dev-ruby/http-parser", "dev-ruby/http-parser", "dev-ruby/http", "dev-ruby/http", "dev-ruby/http_parser_rb", "dev-ruby/httparty", "dev-ruby/httpauth", "dev-ruby/httpclient", "dev-ruby/i18n", "dev-ruby/i18n", "dev-ruby/i18n", "dev-ruby/ice_nine", "dev-ruby/ice_nine", "dev-ruby/idn-ruby", "dev-ruby/idn-ruby", "dev-ruby/image_processing", "dev-ruby/imagesize", "dev-ruby/inflecto", "dev-ruby/instance_storage", "dev-ruby/instance_storage", "dev-ruby/instance_storage", "dev-ruby/instantiator", "dev-ruby/introspection", "dev-ruby/introspection", "dev-ruby/iobuffer", "dev-ruby/iobuffer", "dev-ruby/itextomml", "dev-ruby/jbuilder", "dev-ruby/jbuilder", "dev-ruby/jbuilder", "dev-ruby/jbuilder", "dev-ruby/jmespath", "dev-ruby/jquery-rails", "dev-ruby/jquery-ui-rails", "dev-ruby/jsobfu", "dev-ruby/json", "dev-ruby/json", "dev-ruby/json", "dev-ruby/json", "dev-ruby/json_schema", "dev-ruby/json_schema", "dev-ruby/jwt", "dev-ruby/jwt", "dev-ruby/kirbybase", "dev-ruby/kissfft", "dev-ruby/kpeg", "dev-ruby/kramdown-parser-gfm", "dev-ruby/kramdown-syntax-coderay", "dev-ruby/kramdown", "dev-ruby/launchy", "dev-ruby/launchy", "dev-ruby/lemon", "dev-ruby/letter_opener", "dev-ruby/levenshtein", "dev-ruby/libusb", "dev-ruby/liquid-c", "dev-ruby/liquid", "dev-ruby/liquid", "dev-ruby/listen", "dev-ruby/listen", "dev-ruby/listen", "dev-ruby/listen", "dev-ruby/little-plugger", "dev-ruby/locale", "dev-ruby/lockfile", "dev-ruby/log4r", "dev-ruby/log_buddy", "dev-ruby/logue", "dev-ruby/loofah", "dev-ruby/loofah", "dev-ruby/loofah", "dev-ruby/loquacious", "dev-ruby/lumberjack", "dev-ruby/lumberjack", "dev-ruby/mab", "dev-ruby/magic", "dev-ruby/mail", "dev-ruby/maildir", "dev-ruby/marcel", "dev-ruby/marcel", "dev-ruby/marcel", "dev-ruby/maruku", "dev-ruby/mash", "dev-ruby/maxitest", "dev-ruby/maxitest", "dev-ruby/mecab-ruby", "dev-ruby/mechanize", "dev-ruby/mechanize", "dev-ruby/mechanize", "dev-ruby/mechanize", "dev-ruby/memoist", "dev-ruby/memoizable", "dev-ruby/memoize", "dev-ruby/mercenary", "dev-ruby/metaclass", "dev-ruby/metaclass", "dev-ruby/metasm", "dev-ruby/metasm", "dev-ruby/method_source", "dev-ruby/middleware", "dev-ruby/mime-types-data", "dev-ruby/mime-types-data", "dev-ruby/mime-types-data", "dev-ruby/mime-types", "dev-ruby/mime-types", "dev-ruby/mimemagic", "dev-ruby/mimemagic", "dev-ruby/mini_magick", "dev-ruby/mini_mime", "dev-ruby/mini_mime", "dev-ruby/mini_mime", "dev-ruby/mini_mime", "dev-ruby/minispec-metadata", "dev-ruby/minitar", "dev-ruby/minitest-around", "dev-ruby/minitest-bonus-assertions", "dev-ruby/minitest-bonus-assertions", "dev-ruby/minitest-global_expectations", "dev-ruby/minitest-hooks", "dev-ruby/minitest-power_assert", "dev-ruby/minitest-pretty_diff", "dev-ruby/minitest-pretty_diff", "dev-ruby/minitest", "dev-ruby/minitest", "dev-ruby/minitest", "dev-ruby/minitest", "dev-ruby/mixlib-shellout", "dev-ruby/mocha", "dev-ruby/mocha", "dev-ruby/mocha", "dev-ruby/mocha", "dev-ruby/mocha", "dev-ruby/moneta", "dev-ruby/moneta", "dev-ruby/moneta", "dev-ruby/mqtt", "dev-ruby/msgpack", "dev-ruby/msgpack", "dev-ruby/multi_json", "dev-ruby/multi_json", "dev-ruby/multi_test", "dev-ruby/multi_test", "dev-ruby/multi_xml", "dev-ruby/multipart-post", "dev-ruby/mustache", "dev-ruby/mustermann", "dev-ruby/mysql2", "dev-ruby/mysql2", "dev-ruby/nagios_analyzer", "dev-ruby/nanotest", "dev-ruby/nanotest", "dev-ruby/narray", "dev-ruby/naught", "dev-ruby/necromancer", "dev-ruby/necromancer", "dev-ruby/nenv", "dev-ruby/neovim-ruby-client", "dev-ruby/net-http-digest_auth", "dev-ruby/net-http-digest_auth", "dev-ruby/net-http-persistent", "dev-ruby/net-http-persistent", "dev-ruby/net-http-persistent", "dev-ruby/net-http-persistent", "dev-ruby/net-http-pipeline", "dev-ruby/net-scp", "dev-ruby/net-scp", "dev-ruby/net-sftp", "dev-ruby/net-ssh-gateway", "dev-ruby/net-ssh", "dev-ruby/net-ssh", "dev-ruby/net-telnet", "dev-ruby/netrc", "dev-ruby/netrc", "dev-ruby/network_interface", "dev-ruby/niceogiri", "dev-ruby/nio4r", "dev-ruby/nio4r", "dev-ruby/nio4r", "dev-ruby/nio4r", "dev-ruby/nio4r", "dev-ruby/nokogiri-diff", "dev-ruby/nokogiri", "dev-ruby/nokogiri", "dev-ruby/nokogiri", "dev-ruby/nokogumbo", "dev-ruby/nokogumbo", "dev-ruby/nokogumbo", "dev-ruby/nokogumbo", "dev-ruby/ntlm-http", "dev-ruby/oauth", "dev-ruby/oauth2", "dev-ruby/oauth2", "dev-ruby/octokit", "dev-ruby/octokit", "dev-ruby/omniauth", "dev-ruby/open4", "dev-ruby/openssl-ccm", "dev-ruby/optimist", "dev-ruby/optionable", "dev-ruby/org-ruby", "dev-ruby/origin", "dev-ruby/ox", "dev-ruby/ox", "dev-ruby/ox", "dev-ruby/packetfu", "dev-ruby/paint", "dev-ruby/paint", "dev-ruby/parallel", "dev-ruby/parallel", "dev-ruby/parallel", "dev-ruby/paramesan", "dev-ruby/paramesan", "dev-ruby/parser", "dev-ruby/parser", "dev-ruby/parser", "dev-ruby/parser", "dev-ruby/parser", "dev-ruby/parser", "dev-ruby/parser", "dev-ruby/pastel", "dev-ruby/pastel", "dev-ruby/path_expander", "dev-ruby/pathutil", "dev-ruby/patron", "dev-ruby/patron", "dev-ruby/pcaprub", "dev-ruby/pdf-core", "dev-ruby/pdf-core", "dev-ruby/pdf-core", "dev-ruby/pdf-inspector", "dev-ruby/pdf-reader", "dev-ruby/pdf-reader", "dev-ruby/pdf-reader", "dev-ruby/pdf-reader", "dev-ruby/pdf-reader", "dev-ruby/pdf-reader", "dev-ruby/permutation", "dev-ruby/pg", "dev-ruby/pg_array_parser", "dev-ruby/pkg-config", "dev-ruby/pkg-config", "dev-ruby/pkg-config", "dev-ruby/pkg-config", "dev-ruby/pkg-config", "dev-ruby/pkg-config", "dev-ruby/plist", "dev-ruby/plist", "dev-ruby/pluggaloid", "dev-ruby/pluggaloid", "dev-ruby/pluggaloid", "dev-ruby/podcast", "dev-ruby/polyglot", "dev-ruby/posix-spawn", "dev-ruby/posix-spawn", "dev-ruby/power_assert", "dev-ruby/power_assert", "dev-ruby/power_assert", "dev-ruby/power_assert", "dev-ruby/prawn-table", "dev-ruby/prawn", "dev-ruby/prawn", "dev-ruby/pry", "dev-ruby/pry", "dev-ruby/pry", "dev-ruby/public_suffix", "dev-ruby/public_suffix", "dev-ruby/public_suffix", "dev-ruby/pundit", "dev-ruby/pundit", "dev-ruby/puppet_forge", "dev-ruby/puppetdb-termini", "dev-ruby/puppetdb-termini", "dev-ruby/pusher-client", "dev-ruby/qed", "dev-ruby/racc", "dev-ruby/racc", "dev-ruby/racc", "dev-ruby/rack-attack", "dev-ruby/rack-attack", "dev-ruby/rack-attack", "dev-ruby/rack-cache", "dev-ruby/rack-cache", "dev-ruby/rack-openid", "dev-ruby/rack-protection", "dev-ruby/rack-ssl", "dev-ruby/rack-test", "dev-ruby/rack", "dev-ruby/radius", "dev-ruby/rails-dom-testing", "dev-ruby/rails-html-sanitizer", "dev-ruby/rails-html-sanitizer", "dev-ruby/rails-html-sanitizer", "dev-ruby/rails", "dev-ruby/rails", "dev-ruby/rails", "dev-ruby/railties", "dev-ruby/railties", "dev-ruby/railties", "dev-ruby/rainbow", "dev-ruby/rake-compiler", "dev-ruby/rake-compiler", "dev-ruby/rake-remote_task", "dev-ruby/rake", "dev-ruby/rake", "dev-ruby/rake", "dev-ruby/rantly", "dev-ruby/rash_alt", "dev-ruby/rb-gsl", "dev-ruby/rb-inotify", "dev-ruby/rb-inotify", "dev-ruby/rb-readline", "dev-ruby/rbnacl", "dev-ruby/rbnacl", "dev-ruby/rbpdf-font", "dev-ruby/rbpdf", "dev-ruby/rbs", "dev-ruby/rbs", "dev-ruby/rbs", "dev-ruby/rbst", "dev-ruby/rbtree", "dev-ruby/rcairo", "dev-ruby/rcairo", "dev-ruby/rcairo", "dev-ruby/rchardet", "dev-ruby/rdiscount", "dev-ruby/rdiscount", "dev-ruby/rdiscount", "dev-ruby/rdoc", "dev-ruby/rdtool", "dev-ruby/recog", "dev-ruby/recog", "dev-ruby/red-colors", "dev-ruby/red-colors", "dev-ruby/red-colors", "dev-ruby/redcarpet", "dev-ruby/redcloth", "dev-ruby/redcloth", "dev-ruby/redis", "dev-ruby/ref", "dev-ruby/regexp_parser", "dev-ruby/regexp_parser", "dev-ruby/regexp_parser", "dev-ruby/regexp_parser", "dev-ruby/regexp_property_values", "dev-ruby/request_store", "dev-ruby/rest-client", "dev-ruby/rexical", "dev-ruby/rexml", "dev-ruby/rinku", "dev-ruby/ritex", "dev-ruby/rjb", "dev-ruby/rkelly-remix", "dev-ruby/rmagick", "dev-ruby/rmagick", "dev-ruby/rmagick", "dev-ruby/roadie-rails", "dev-ruby/roadie", "dev-ruby/robots", "dev-ruby/rouge", "dev-ruby/rouge", "dev-ruby/rouge", "dev-ruby/rouge", "dev-ruby/rouge", "dev-ruby/rqrcode", "dev-ruby/rqrcode", "dev-ruby/rqrcode_core", "dev-ruby/rqrcode_core", "dev-ruby/rr", "dev-ruby/rr", "dev-ruby/rr", "dev-ruby/rr", "dev-ruby/rr", "dev-ruby/rr", "dev-ruby/rrdtool-bindings", "dev-ruby/rspec-collection_matchers", "dev-ruby/rspec-core", "dev-ruby/rspec-core", "dev-ruby/rspec-core", "dev-ruby/rspec-expectations", "dev-ruby/rspec-expectations", "dev-ruby/rspec-expectations", "dev-ruby/rspec-its", "dev-ruby/rspec-its", "dev-ruby/rspec-json_expectations", "dev-ruby/rspec-mocks", "dev-ruby/rspec-mocks", "dev-ruby/rspec-mocks", "dev-ruby/rspec-rails", "dev-ruby/rspec-rails", "dev-ruby/rspec-rails", "dev-ruby/rspec-rails", "dev-ruby/rspec-rails", "dev-ruby/rspec-retry", "dev-ruby/rspec-stubbed_env", "dev-ruby/rspec-support", "dev-ruby/rspec-support", "dev-ruby/rspec", "dev-ruby/rspec", "dev-ruby/rspec", "dev-ruby/rspectacular", "dev-ruby/rss", "dev-ruby/ruby-atk", "dev-ruby/ruby-augeas", "dev-ruby/ruby-cairo-gobject", "dev-ruby/ruby-clutter-gdk", "dev-ruby/ruby-clutter-gstreamer", "dev-ruby/ruby-clutter-gtk", "dev-ruby/ruby-clutter", "dev-ruby/ruby-dict", "dev-ruby/ruby-elf", "dev-ruby/ruby-feedparser", "dev-ruby/ruby-filemagic", "dev-ruby/ruby-gdk3", "dev-ruby/ruby-gdkpixbuf2", "dev-ruby/ruby-gegl", "dev-ruby/ruby-gettext", "dev-ruby/ruby-gettext", "dev-ruby/ruby-gio2", "dev-ruby/ruby-glib2", "dev-ruby/ruby-gnome2", "dev-ruby/ruby-gnumeric", "dev-ruby/ruby-gobject-introspection", "dev-ruby/ruby-goffice", "dev-ruby/ruby-gsf", "dev-ruby/ruby-gstreamer", "dev-ruby/ruby-gtk2", "dev-ruby/ruby-gtk3", "dev-ruby/ruby-gtksourceview", "dev-ruby/ruby-gtksourceview3", "dev-ruby/ruby-gtksourceview4", "dev-ruby/ruby-hmac", "dev-ruby/ruby-ldap", "dev-ruby/ruby-libsecret", "dev-ruby/ruby-macho", "dev-ruby/ruby-macho", "dev-ruby/ruby-macho", "dev-ruby/ruby-macho", "dev-ruby/ruby-mp3info", "dev-ruby/ruby-net-ldap", "dev-ruby/ruby-net-ldap", "dev-ruby/ruby-net-ldap", "dev-ruby/ruby-odbc", "dev-ruby/ruby-odbc", "dev-ruby/ruby-oembed", "dev-ruby/ruby-ole", "dev-ruby/ruby-opengl", "dev-ruby/ruby-openid", "dev-ruby/ruby-pango", "dev-ruby/ruby-poppler", "dev-ruby/ruby-prof", "dev-ruby/ruby-prof", "dev-ruby/ruby-progressbar", "dev-ruby/ruby-progressbar", "dev-ruby/ruby-rc4", "dev-ruby/ruby-romkan", "dev-ruby/ruby-rsvg", "dev-ruby/ruby-sdl", "dev-ruby/ruby-shadow", "dev-ruby/ruby-shout", "dev-ruby/ruby-shout", "dev-ruby/ruby-termios", "dev-ruby/ruby-termios", "dev-ruby/ruby-vte", "dev-ruby/ruby-vte3", "dev-ruby/ruby-webkit2-gtk", "dev-ruby/ruby-wnck3", "dev-ruby/ruby-xslt", "dev-ruby/ruby-yadis", "dev-ruby/ruby2_keywords", "dev-ruby/ruby2_keywords", "dev-ruby/ruby2_keywords", "dev-ruby/ruby2ruby", "dev-ruby/ruby_gntp", "dev-ruby/ruby_parser", "dev-ruby/ruby_parser", "dev-ruby/ruby_parser", "dev-ruby/ruby_parser", "dev-ruby/ruby_parser", "dev-ruby/ruby_smb", "dev-ruby/rubygems", "dev-ruby/rubygems", "dev-ruby/rubygems", "dev-ruby/rubygems", "dev-ruby/rubygems", "dev-ruby/rubygems", "dev-ruby/rubygems", "dev-ruby/rubygems", "dev-ruby/rubyntlm", "dev-ruby/rubypants", "dev-ruby/rubypants", "dev-ruby/rubytest-cli", "dev-ruby/rubytest", "dev-ruby/rubytter", "dev-ruby/rubyzip", "dev-ruby/rubyzip", "dev-ruby/rubyzip", "dev-ruby/rubyzip", "dev-ruby/safe_yaml", "dev-ruby/sanitize", "dev-ruby/sanitize", "dev-ruby/sanitize", "dev-ruby/sass-listen", "dev-ruby/sass-rails", "dev-ruby/sass-rails", "dev-ruby/sass", "dev-ruby/sass", "dev-ruby/sass", "dev-ruby/sass", "dev-ruby/sass", "dev-ruby/sassc-rails", "dev-ruby/sassc", "dev-ruby/sassc", "dev-ruby/sassc", "dev-ruby/sawyer", "dev-ruby/sdoc", "dev-ruby/seed-fu", "dev-ruby/selenium-webdriver", "dev-ruby/semantic_puppet", "dev-ruby/semantic_puppet", "dev-ruby/semantic_puppet", "dev-ruby/semver2", "dev-ruby/serialport", "dev-ruby/serverengine", "dev-ruby/serverengine", "dev-ruby/serverengine", "dev-ruby/settingslogic", "dev-ruby/sexp_processor", "dev-ruby/sexp_processor", "dev-ruby/sexp_processor", "dev-ruby/sexp_processor", "dev-ruby/shoulda-context", "dev-ruby/shoulda-matchers", "dev-ruby/shoulda-matchers", "dev-ruby/shoulda-matchers", "dev-ruby/shoulda-matchers", "dev-ruby/shoulda", "dev-ruby/shoulda", "dev-ruby/sigar", "dev-ruby/sigdump", "dev-ruby/simple-rss", "dev-ruby/simple_oauth", "dev-ruby/simplecov-html", "dev-ruby/simplecov-html", "dev-ruby/simplecov-html", "dev-ruby/simplecov-html", "dev-ruby/simplecov-html", "dev-ruby/simplecov-html", "dev-ruby/simplecov", "dev-ruby/simplecov", "dev-ruby/simplecov", "dev-ruby/simpleidn", "dev-ruby/sinatra-partial", "dev-ruby/sinatra", "dev-ruby/six", "dev-ruby/slim", "dev-ruby/slim", "dev-ruby/slim", "dev-ruby/slop", "dev-ruby/slop", "dev-ruby/slop", "dev-ruby/slow_enumerator_tools", "dev-ruby/sourcemap", "dev-ruby/sparklines", "dev-ruby/spreadsheet", "dev-ruby/spreadsheet", "dev-ruby/spring", "dev-ruby/sprockets-rails", "dev-ruby/sprockets", "dev-ruby/sprockets", "dev-ruby/sprockets", "dev-ruby/spy", "dev-ruby/spy", "dev-ruby/sqlite3", "dev-ruby/sqlite3", "dev-ruby/sshkey", "dev-ruby/sshkit", "dev-ruby/sshkit", "dev-ruby/sshkit", "dev-ruby/stamp", "dev-ruby/state_machine", "dev-ruby/stomp", "dev-ruby/stomp", "dev-ruby/stringex", "dev-ruby/strptime", "dev-ruby/strptime", "dev-ruby/subexec", "dev-ruby/sync", "dev-ruby/syntax", "dev-ruby/sys-uname", "dev-ruby/syslogger", "dev-ruby/syslogger", "dev-ruby/systemu", "dev-ruby/tdiff", "dev-ruby/temple", "dev-ruby/term-ansicolor", "dev-ruby/term-ansicolor", "dev-ruby/terminal-table", "dev-ruby/terminal-table", "dev-ruby/terminal-table", "dev-ruby/terminal-table", "dev-ruby/test-unit-rr", "dev-ruby/test-unit-rr", "dev-ruby/test-unit", "dev-ruby/test-unit", "dev-ruby/test-unit", "dev-ruby/test-unit", "dev-ruby/test-unit", "dev-ruby/test_construct", "dev-ruby/test_declarative", "dev-ruby/text-hyphen", "dev-ruby/text", "dev-ruby/textpow", "dev-ruby/thor", "dev-ruby/thor", "dev-ruby/thor", "dev-ruby/thor", "dev-ruby/thread_order", "dev-ruby/thread_safe", "dev-ruby/thread_safe", "dev-ruby/tidy-ext", "dev-ruby/tidy_table", "dev-ruby/tilt", "dev-ruby/tilt", "dev-ruby/timecop", "dev-ruby/timecop", "dev-ruby/timecop", "dev-ruby/timecop", "dev-ruby/timers", "dev-ruby/tins", "dev-ruby/tins", "dev-ruby/tins", "dev-ruby/tins", "dev-ruby/tokyocabinet", "dev-ruby/tomlrb", "dev-ruby/tomlrb", "dev-ruby/tomlrb", "dev-ruby/totoridipjp", "dev-ruby/transaction-simple", "dev-ruby/travis", "dev-ruby/treetop", "dev-ruby/trollop", "dev-ruby/ttfunk", "dev-ruby/ttfunk", "dev-ruby/ttfunk", "dev-ruby/tty-color", "dev-ruby/tty-command", "dev-ruby/tty-cursor", "dev-ruby/tty-file", "dev-ruby/tty-platform", "dev-ruby/tty-prompt", "dev-ruby/tty-reader", "dev-ruby/tty-screen", "dev-ruby/tty-screen", "dev-ruby/tty-which", "dev-ruby/tty-which", "dev-ruby/turbolinks-source", "dev-ruby/turbolinks", "dev-ruby/twitter-text", "dev-ruby/twitter", "dev-ruby/typed-array", "dev-ruby/typeprof", "dev-ruby/typeprof", "dev-ruby/typeprof", "dev-ruby/typeprof", "dev-ruby/typhoeus", "dev-ruby/typhoeus", "dev-ruby/typhoeus", "dev-ruby/tzinfo", "dev-ruby/tzinfo", "dev-ruby/tzinfo", "dev-ruby/uconv", "dev-ruby/uglifier", "dev-ruby/ultraviolet", "dev-ruby/unf", "dev-ruby/unf_ext", "dev-ruby/unicode-display_width", "dev-ruby/unicode-display_width", "dev-ruby/unindent", "dev-ruby/unindent", "dev-ruby/uuidtools", "dev-ruby/uuidtools", "dev-ruby/vagrant_cloud", "dev-ruby/vcard", "dev-ruby/vcard", "dev-ruby/vcr", "dev-ruby/vcr", "dev-ruby/vcr", "dev-ruby/virtus", "dev-ruby/vlad", "dev-ruby/warden", "dev-ruby/web-console", "dev-ruby/web-console", "dev-ruby/webmock", "dev-ruby/webmock", "dev-ruby/webmock", "dev-ruby/webrick", "dev-ruby/webrobots", "dev-ruby/websocket-driver", "dev-ruby/websocket-driver", "dev-ruby/websocket-extensions", "dev-ruby/websocket-extensions", "dev-ruby/websocket", "dev-ruby/websocket", "dev-ruby/whole_history_rating", "dev-ruby/will_paginate", "dev-ruby/will_paginate", "dev-ruby/windows_error", "dev-ruby/wirble", "dev-ruby/wisper", "dev-ruby/x25519", "dev-ruby/xdr", "dev-ruby/xml-simple", "dev-ruby/xmlrpc", "dev-ruby/xmlrpc", "dev-ruby/xmlrpc", "dev-ruby/xmlrpc", "dev-ruby/xpath", "dev-ruby/yajl-ruby", "dev-ruby/yajl-ruby", "dev-ruby/yard", "dev-ruby/zeitwerk", "dev-ruby/zeitwerk", "dev-ruby/zeitwerk", "dev-ruby/zeitwerk", "dev-ruby/zentest", "dev-ruby/tty-editor", "dev-ruby/set", "dev-ruby/sorted_set", "dev-scheme/bytestructures", "dev-scheme/c-wrapper", "dev-scheme/chicken", "dev-scheme/elk", "dev-scheme/escm", "dev-scheme/gambit", "dev-scheme/gambit", "dev-scheme/gambit", "dev-scheme/gauche-cdb", "dev-scheme/gauche-gl", "dev-scheme/gauche-gtk", "dev-scheme/gauche-kakasi", "dev-scheme/gauche-mecab", "dev-scheme/gauche-qdbm", "dev-scheme/gauche", "dev-scheme/gauche", "dev-scheme/goosh", "dev-scheme/guile-gcrypt", "dev-scheme/guile-git", "dev-scheme/guile-git", "dev-scheme/guile-json", "dev-scheme/guile-sqlite3", "dev-scheme/guile", "dev-scheme/guile", "dev-scheme/guile", "dev-scheme/guile", "dev-scheme/guile", "dev-scheme/jscheme", "dev-scheme/kawa", "dev-scheme/racket", "dev-scheme/racket", "dev-scheme/racket", "dev-scheme/racket", "dev-scheme/racket", "dev-scheme/racket", "dev-scheme/racket", "dev-scheme/scheme48", "dev-scheme/scm", "dev-scheme/scm", "dev-scheme/scmxlate", "dev-scheme/sigscheme", "dev-scheme/slib", "dev-scheme/stklos", "dev-scheme/termite", "dev-scheme/tinyscheme", "dev-scheme/xdgdirs", "dev-scheme/ypsilon", "dev-tcltk/blt", "dev-tcltk/bwidget", "dev-tcltk/expect-lite", "dev-tcltk/expect", "dev-tcltk/itcl", "dev-tcltk/itcl", "dev-tcltk/itk", "dev-tcltk/iwidgets", "dev-tcltk/mysqltcl", "dev-tcltk/scwoop", "dev-tcltk/snack", "dev-tcltk/tablelist", "dev-tcltk/tablelist", "dev-tcltk/tcl3d", "dev-tcltk/tcllib", "dev-tcltk/tclperl", "dev-tcltk/tclpython", "dev-tcltk/tclreadline", "dev-tcltk/tclreadline", "dev-tcltk/tclx", "dev-tcltk/tclxml", "dev-tcltk/tdom", "dev-tcltk/thread", "dev-tcltk/tix", "dev-tcltk/tkcon", "dev-tcltk/tkcon", "dev-tcltk/tkdnd", "dev-tcltk/tkimg", "dev-tcltk/tkimg", "dev-tcltk/tkimg", "dev-tcltk/tkimg", "dev-tcltk/tklib", "dev-tcltk/tklib", "dev-tcltk/tklib", "dev-tcltk/tkpiechart", "dev-tcltk/tkpng", "dev-tcltk/tktable", "dev-tcltk/tktray", "dev-tcltk/tktreectrl", "dev-tcltk/tkzinc", "dev-tcltk/tls", "dev-tcltk/tls", "dev-tcltk/togl", "dev-tcltk/vtcl", "dev-tcltk/vtcl", "dev-tex/abntex", "dev-tex/biber", "dev-tex/biber", "dev-tex/biblatex-gost", "dev-tex/biblatex", "dev-tex/biblatex", "dev-tex/bibtex2html", "dev-tex/bibtexu", "dev-tex/catdvi", "dev-tex/cpp2latex", "dev-tex/culmus-latex", "dev-tex/dot2tex", "dev-tex/dvi2gr", "dev-tex/foiltex", "dev-tex/frakturx", "dev-tex/glossaries", "dev-tex/glossaries", "dev-tex/hevea", "dev-tex/html2latex", "dev-tex/hyphen_show", "dev-tex/ivritex", "dev-tex/latex-beamer", "dev-tex/latex-beamer", "dev-tex/latex-beamer", "dev-tex/latex-beamer", "dev-tex/latex-calendar", "dev-tex/latex2html", "dev-tex/latex2html", "dev-tex/latex2rtf", "dev-tex/latex2rtf", "dev-tex/latexdiff", "dev-tex/latexdiff", "dev-tex/latexmk", "dev-tex/latexmk", "dev-tex/latexmk", "dev-tex/latexmk", "dev-tex/lgrind", "dev-tex/pdfannotextractor", "dev-tex/pgf", "dev-tex/pgf", "dev-tex/pscyr", "dev-tex/pythontex", "dev-tex/rail", "dev-tex/rubber", "dev-tex/rubber", "dev-tex/rubber", "dev-tex/serienbrief", "dev-tex/sketch", "dev-tex/style-check", "dev-tex/tex4ht", "dev-tex/tth", "dev-tex/vc", "dev-texlive/texlive-basic", "dev-texlive/texlive-bibtexextra", "dev-texlive/texlive-context", "dev-texlive/texlive-fontsextra", "dev-texlive/texlive-fontsrecommended", "dev-texlive/texlive-fontutils", "dev-texlive/texlive-formatsextra", "dev-texlive/texlive-games", "dev-texlive/texlive-humanities", "dev-texlive/texlive-langarabic", "dev-texlive/texlive-langchinese", "dev-texlive/texlive-langcjk", "dev-texlive/texlive-langcyrillic", "dev-texlive/texlive-langczechslovak", "dev-texlive/texlive-langenglish", "dev-texlive/texlive-langeuropean", "dev-texlive/texlive-langfrench", "dev-texlive/texlive-langgerman", "dev-texlive/texlive-langgreek", "dev-texlive/texlive-langitalian", "dev-texlive/texlive-langjapanese", "dev-texlive/texlive-langkorean", "dev-texlive/texlive-langother", "dev-texlive/texlive-langpolish", "dev-texlive/texlive-langportuguese", "dev-texlive/texlive-langspanish", "dev-texlive/texlive-latex", "dev-texlive/texlive-latexextra", "dev-texlive/texlive-latexrecommended", "dev-texlive/texlive-luatex", "dev-texlive/texlive-mathscience", "dev-texlive/texlive-metapost", "dev-texlive/texlive-music", "dev-texlive/texlive-pictures", "dev-texlive/texlive-plaingeneric", "dev-texlive/texlive-pstricks", "dev-texlive/texlive-publishers", "dev-texlive/texlive-xetex", "dev-util/App-SVN-Bisect", "dev-util/abi-compliance-checker", "dev-util/abi-compliance-checker", "dev-util/abi-dumper", "dev-util/abi-dumper", "dev-util/abootimg", "dev-util/ald", "dev-util/amtterm", "dev-util/android-ndk", "dev-util/android-ndk", "dev-util/android-ndk", "dev-util/android-ndk", "dev-util/android-ndk", "dev-util/android-ndk", "dev-util/android-sdk-update-manager", "dev-util/android-sdk-update-manager", "dev-util/android-studio", "dev-util/android-studio", "dev-util/android-studio", "dev-util/android-studio", "dev-util/android-studio", "dev-util/android-tools", "dev-util/android-tools", "dev-util/anjuta", "dev-util/apitrace", "dev-util/appdata-tools", "dev-util/appinventor", "dev-util/archdiff", "dev-util/argouml", "dev-util/artifactory-bin", "dev-util/aruba", "dev-util/aruba", "dev-util/aruba", "dev-util/aruba", "dev-util/aruba", "dev-util/aruba", "dev-util/aruba", "dev-util/aruba", "dev-util/astyle", "dev-util/astyle", "dev-util/autodia", "dev-util/autoproject", "dev-util/babeltrace", "dev-util/bats", "dev-util/bats", "dev-util/bazel", "dev-util/bazel", "dev-util/bazel", "dev-util/bazel", "dev-util/bazel", "dev-util/bazel", "dev-util/bazel", "dev-util/bazel", "dev-util/bazel", "dev-util/bazel", "dev-util/bazel", "dev-util/bbe", "dev-util/bcc", "dev-util/bcc", "dev-util/bcpp", "dev-util/bdelta", "dev-util/bear", "dev-util/bear", "dev-util/biew", "dev-util/bin_replace_string", "dev-util/bingrep", "dev-util/bitcoin-tx", "dev-util/bitcoin-tx", "dev-util/bitcoin-tx", "dev-util/bitrise", "dev-util/bloaty", "dev-util/bloaty", "dev-util/bloaty", "dev-util/bnfc", "dev-util/boost-build", "dev-util/boost-build", "dev-util/bpftrace", "dev-util/bpftrace", "dev-util/bsdiff", "dev-util/btyacc", "dev-util/build2", "dev-util/buildbot-badges", "dev-util/buildbot-badges", "dev-util/buildbot-badges", "dev-util/buildbot-badges", "dev-util/buildbot-badges", "dev-util/buildbot-badges", "dev-util/buildbot-badges", "dev-util/buildbot-badges", "dev-util/buildbot-console-view", "dev-util/buildbot-console-view", "dev-util/buildbot-console-view", "dev-util/buildbot-console-view", "dev-util/buildbot-console-view", "dev-util/buildbot-console-view", "dev-util/buildbot-console-view", "dev-util/buildbot-console-view", "dev-util/buildbot-grid-view", "dev-util/buildbot-grid-view", "dev-util/buildbot-grid-view", "dev-util/buildbot-grid-view", "dev-util/buildbot-grid-view", "dev-util/buildbot-grid-view", "dev-util/buildbot-grid-view", "dev-util/buildbot-grid-view", "dev-util/buildbot-pkg", "dev-util/buildbot-pkg", "dev-util/buildbot-pkg", "dev-util/buildbot-pkg", "dev-util/buildbot-pkg", "dev-util/buildbot-pkg", "dev-util/buildbot-pkg", "dev-util/buildbot-pkg", "dev-util/buildbot-waterfall-view", "dev-util/buildbot-waterfall-view", "dev-util/buildbot-waterfall-view", "dev-util/buildbot-waterfall-view", "dev-util/buildbot-waterfall-view", "dev-util/buildbot-waterfall-view", "dev-util/buildbot-waterfall-view", "dev-util/buildbot-waterfall-view", "dev-util/buildbot-worker", "dev-util/buildbot-worker", "dev-util/buildbot-worker", "dev-util/buildbot-worker", "dev-util/buildbot-worker", "dev-util/buildbot-worker", "dev-util/buildbot-worker", "dev-util/buildbot-worker", "dev-util/buildbot-worker", "dev-util/buildbot-wsgi-dashboards", "dev-util/buildbot-wsgi-dashboards", "dev-util/buildbot-wsgi-dashboards", "dev-util/buildbot-wsgi-dashboards", "dev-util/buildbot-wsgi-dashboards", "dev-util/buildbot-wsgi-dashboards", "dev-util/buildbot-wsgi-dashboards", "dev-util/buildbot-wsgi-dashboards", "dev-util/buildbot-www", "dev-util/buildbot-www", "dev-util/buildbot-www", "dev-util/buildbot-www", "dev-util/buildbot-www", "dev-util/buildbot-www", "dev-util/buildbot-www", "dev-util/buildbot-www", "dev-util/buildbot", "dev-util/buildbot", "dev-util/buildbot", "dev-util/buildbot", "dev-util/buildbot", "dev-util/buildbot", "dev-util/buildbot", "dev-util/buildbot", "dev-util/buildbot", "dev-util/bustle", "dev-util/byacc", "dev-util/byacc", "dev-util/cargo-audit", "dev-util/cargo-audit", "dev-util/cargo-c", "dev-util/cargo-c", "dev-util/cargo-c", "dev-util/cargo-c", "dev-util/cargo-c", "dev-util/cargo-c", "dev-util/cargo-ebuild", "dev-util/cargo-ebuild", "dev-util/cargo-ebuild", "dev-util/cargo-license", "dev-util/cargo-license", "dev-util/catalyst", "dev-util/catalyst", "dev-util/catalyst", "dev-util/catfish", "dev-util/catfish", "dev-util/catkin", "dev-util/catkin", "dev-util/cbindgen", "dev-util/cbindgen", "dev-util/ccache", "dev-util/ccache", "dev-util/ccache", "dev-util/ccache", "dev-util/cccc", "dev-util/cccc", "dev-util/ccls", "dev-util/ccls", "dev-util/ccls", "dev-util/cflow", "dev-util/cgdb", "dev-util/cgdb", "dev-util/cgvg", "dev-util/checkbashisms", "dev-util/checkbashisms", "dev-util/checkbashisms", "dev-util/checkstyle", "dev-util/chroot-wrapper", "dev-util/chroot-wrapper", "dev-util/chroot-wrapper", "dev-util/clair", "dev-util/clair", "dev-util/clazy", "dev-util/clazy", "dev-util/cligh", "dev-util/cligh", "dev-util/clinfo", "dev-util/clinfo", "dev-util/clion", "dev-util/clion", "dev-util/clippy", "dev-util/clippy", "dev-util/clippy", "dev-util/cloc", "dev-util/cloc", "dev-util/cmake-fedora", "dev-util/cmake", "dev-util/cmake", "dev-util/cmake", "dev-util/cmocka", "dev-util/codeblocks", "dev-util/codeblocks", "dev-util/codeblocks", "dev-util/codeblocks", "dev-util/codeblocks", "dev-util/codespell", "dev-util/colm", "dev-util/colm", "dev-util/colm", "dev-util/colorgcc", "dev-util/comparator", "dev-util/complexity", "dev-util/conan", "dev-util/conf2struct", "dev-util/conf2struct", "dev-util/conf2struct", "dev-util/cookiecutter", "dev-util/cookiecutter", "dev-util/cookiecutter", "dev-util/cppcheck", "dev-util/cppcheck", "dev-util/cppcheck", "dev-util/cppi", "dev-util/cpptest", "dev-util/cppunit", "dev-util/cppunit", "dev-util/cppunit", "dev-util/cpputest", "dev-util/cproto", "dev-util/cproto", "dev-util/cpuinfo-collection", "dev-util/cram", "dev-util/crash", "dev-util/crash", "dev-util/crash", "dev-util/cscope", "dev-util/cscope", "dev-util/cscope", "dev-util/csup", "dev-util/ctags", "dev-util/ctags", "dev-util/ctags", "dev-util/cucumber-core", "dev-util/cucumber-core", "dev-util/cucumber-core", "dev-util/cucumber-core", "dev-util/cucumber-create-meta", "dev-util/cucumber-create-meta", "dev-util/cucumber-cucumber-expressions", "dev-util/cucumber-cucumber-expressions", "dev-util/cucumber-cucumber-expressions", "dev-util/cucumber-cucumber-expressions", "dev-util/cucumber-expressions", "dev-util/cucumber-gherkin", "dev-util/cucumber-gherkin", "dev-util/cucumber-gherkin", "dev-util/cucumber-html-formatter", "dev-util/cucumber-html-formatter", "dev-util/cucumber-html-formatter", "dev-util/cucumber-html-formatter", "dev-util/cucumber-messages", "dev-util/cucumber-messages", "dev-util/cucumber-messages", "dev-util/cucumber-messages", "dev-util/cucumber-messages", "dev-util/cucumber-messages", "dev-util/cucumber-rails", "dev-util/cucumber-rails", "dev-util/cucumber-rails", "dev-util/cucumber-rails", "dev-util/cucumber-tag-expressions", "dev-util/cucumber-tag-expressions", "dev-util/cucumber-tag_expressions", "dev-util/cucumber-wire", "dev-util/cucumber-wire", "dev-util/cucumber-wire", "dev-util/cucumber-wire", "dev-util/cucumber-wire", "dev-util/cucumber", "dev-util/cucumber", "dev-util/cucumber", "dev-util/cunit", "dev-util/cutils", "dev-util/cutter", "dev-util/cvise", "dev-util/cwdiff", "dev-util/cwdiff", "dev-util/d-feet", "dev-util/dbus-test-runner", "dev-util/ddd", "dev-util/debhelper", "dev-util/debootstrap", "dev-util/debootstrap", "dev-util/debugedit", "dev-util/dejagnu", "dev-util/dejagnu", "dev-util/desktop-file-utils", "dev-util/desktop-file-utils", "dev-util/devhelp", "dev-util/devhelp", "dev-util/dialog", "dev-util/dialog", "dev-util/dialog", "dev-util/diff-cover", "dev-util/diffball", "dev-util/difffilter", "dev-util/diffoscope", "dev-util/diffoscope", "dev-util/diffoscope", "dev-util/diffoscope", "dev-util/diffstat", "dev-util/diffstat", "dev-util/diffuse", "dev-util/dirdiff", "dev-util/dissembler", "dev-util/distro-info-data", "dev-util/distro-info-data", "dev-util/distro-info-data", "dev-util/distro-info", "dev-util/dmake", "dev-util/dmake", "dev-util/docker-distribution-pruner", "dev-util/docker-ls", "dev-util/dogtail", "dev-util/dput-ng", "dev-util/drone-cli", "dev-util/drone-cli", "dev-util/drone-cli", "dev-util/drone", "dev-util/dropwatch", "dev-util/duma", "dev-util/dwdiff", "dev-util/ebuildtester", "dev-util/ebuildtester", "dev-util/ebuildtester", "dev-util/edb-debugger", "dev-util/edb-debugger", "dev-util/edi", "dev-util/editorconfig-geany", "dev-util/egypt", "dev-util/elfkickers", "dev-util/elfkickers", "dev-util/emilpro", "dev-util/emilpro", "dev-util/envman", "dev-util/fix-la-relink-command", "dev-util/flatpak-builder", "dev-util/flawfinder", "dev-util/flawfinder", "dev-util/ftjam", "dev-util/ftnchek", "dev-util/fuzz", "dev-util/fuzz", "dev-util/gcovr", "dev-util/gdbus-codegen", "dev-util/gdbus-codegen", "dev-util/gdbus-codegen", "dev-util/geany-plugins", "dev-util/geany", "dev-util/geany", "dev-util/geany", "dev-util/geany", "dev-util/gengetopt", "dev-util/gertty", "dev-util/gertty", "dev-util/gi-docgen", "dev-util/gi-docgen", "dev-util/git-delta", "dev-util/git-delta", "dev-util/github-cli", "dev-util/github-cli", "dev-util/github-cli", "dev-util/gitlab-ci-linter", "dev-util/glade", "dev-util/glib-utils", "dev-util/glib-utils", "dev-util/glib-utils", "dev-util/global", "dev-util/glslang", "dev-util/glslang", "dev-util/glslang", "dev-util/glslang", "dev-util/gn", "dev-util/gnome-builder", "dev-util/gnome-devel-docs", "dev-util/gnome-devel-docs", "dev-util/gob", "dev-util/goland", "dev-util/google-perftools", "dev-util/google-perftools", "dev-util/google-perftools", "dev-util/gource", "dev-util/gperf", "dev-util/gprof2dot", "dev-util/gprof2dot", "dev-util/gtk-builder-convert", "dev-util/gtk-builder-convert", "dev-util/gtk-doc-am", "dev-util/gtk-doc", "dev-util/gtk-update-icon-cache", "dev-util/gyp", "dev-util/gyp", "dev-util/heaptrack", "dev-util/herdtools7", "dev-util/herdtools7", "dev-util/hermes", "dev-util/hermes", "dev-util/hfstospell", "dev-util/hip", "dev-util/hip", "dev-util/hip", "dev-util/hip", "dev-util/hip", "dev-util/hip", "dev-util/howdoi", "dev-util/howdoi", "dev-util/howdoi", "dev-util/huc", "dev-util/hxd", "dev-util/hxtools", "dev-util/icemon", "dev-util/icmake", "dev-util/idea-community", "dev-util/ignition-cmake", "dev-util/imediff2", "dev-util/imediff2", "dev-util/include-what-you-use", "dev-util/include-what-you-use", "dev-util/indent", "dev-util/intel-graphics-compiler", "dev-util/intel-graphics-compiler", "dev-util/intel-graphics-compiler", "dev-util/intel-graphics-compiler", "dev-util/intel-graphics-compiler", "dev-util/intel-graphics-compiler", "dev-util/intel-graphics-compiler", "dev-util/intel-ocl-sdk", "dev-util/intltool", "dev-util/its4", "dev-util/itstool", "dev-util/japi-compliance-checker", "dev-util/japi-compliance-checker", "dev-util/jenkins-bin", "dev-util/jenkins-bin", "dev-util/jenkins-bin", "dev-util/jenkins-bin", "dev-util/jenkins-bin", "dev-util/jenkins-bin", "dev-util/jenkins-bin", "dev-util/jfrog-cli", "dev-util/kbuild", "dev-util/kbuild", "dev-util/kbuild", "dev-util/kcov", "dev-util/kcov", "dev-util/kdbg", "dev-util/kdevelop-pg-qt", "dev-util/kdevelop-php", "dev-util/kdevelop-python", "dev-util/kdevelop", "dev-util/kdstatemachineeditor", "dev-util/kdstatemachineeditor", "dev-util/kernelshark", "dev-util/kubebuilder", "dev-util/kup", "dev-util/kup", "dev-util/kyua", "dev-util/lcov", "dev-util/lcov", "dev-util/leaktracer", "dev-util/libabigail", "dev-util/libabigail", "dev-util/linklint", "dev-util/lldb", "dev-util/lldb", "dev-util/lldb", "dev-util/lldb", "dev-util/lldb", "dev-util/lldb", "dev-util/lldb", "dev-util/lldb", "dev-util/lockrun", "dev-util/lsuio", "dev-util/ltrace", "dev-util/ltrace", "dev-util/lttng-modules", "dev-util/lttng-modules", "dev-util/lttng-modules", "dev-util/lttng-modules", "dev-util/lttng-modules", "dev-util/lttng-tools", "dev-util/lttng-tools", "dev-util/lttng-tools", "dev-util/lttng-tools", "dev-util/lttng-ust", "dev-util/lttng-ust", "dev-util/lttng-ust", "dev-util/lttng-ust", "dev-util/lttng-ust", "dev-util/lxqt-build-tools", "dev-util/lxqt-build-tools", "dev-util/mage", "dev-util/makeheaders", "dev-util/makepp", "dev-util/makepp", "dev-util/massif-visualizer", "dev-util/maturin", "dev-util/maturin", "dev-util/mdds", "dev-util/mdds", "dev-util/meld", "dev-util/meld", "dev-util/memprof", "dev-util/meson-format-array", "dev-util/meson", "dev-util/meson", "dev-util/meson", "dev-util/min-cscope", "dev-util/mingw64-runtime", "dev-util/mingw64-runtime", "dev-util/mingw64-runtime", "dev-util/mingw64-runtime", "dev-util/mutrace", "dev-util/nemiver", "dev-util/netsurf-buildsystem", "dev-util/netsurf-buildsystem", "dev-util/ninja", "dev-util/ninja", "dev-util/ninja", "dev-util/ninja", "dev-util/ninja", "dev-util/ninka", "dev-util/numdiff", "dev-util/nvidia-cuda-sdk", "dev-util/nvidia-cuda-sdk", "dev-util/nvidia-cuda-sdk", "dev-util/nvidia-cuda-toolkit", "dev-util/nvidia-cuda-toolkit", "dev-util/nvidia-cuda-toolkit", "dev-util/nvidia-cuda-toolkit", "dev-util/nvidia-cuda-toolkit", "dev-util/nvidia-cuda-toolkit", "dev-util/objconv", "dev-util/omake", "dev-util/omake", "dev-util/omake", "dev-util/open-vcdiff", "dev-util/opencl-headers", "dev-util/opencl-headers", "dev-util/opencl-headers", "dev-util/oprofile", "dev-util/ostree", "dev-util/ostree", "dev-util/ostree", "dev-util/ostree", "dev-util/ostree", "dev-util/packer", "dev-util/packer", "dev-util/pahole", "dev-util/pahole", "dev-util/patchbin", "dev-util/patchbin", "dev-util/patchelf", "dev-util/patchelf", "dev-util/patchelf", "dev-util/patchutils", "dev-util/patdiff", "dev-util/peg", "dev-util/perf", "dev-util/perf", "dev-util/perf", "dev-util/perf", "dev-util/pkgcheck", "dev-util/pkgcheck", "dev-util/pkgcheck", "dev-util/pkgcheck", "dev-util/pkgcheck", "dev-util/pkgconf", "dev-util/pkgconf", "dev-util/pkgconf", "dev-util/pkgconfig", "dev-util/pkgconfig", "dev-util/pkgdev", "dev-util/pkgdev", "dev-util/pkgdiff", "dev-util/pkgdiff", "dev-util/plan9port", "dev-util/plan9port", "dev-util/ply", "dev-util/poke", "dev-util/premake", "dev-util/premake", "dev-util/premake", "dev-util/premake", "dev-util/premake", "dev-util/pretrace", "dev-util/promu", "dev-util/promu", "dev-util/promu", "dev-util/protobuf-cucumber", "dev-util/pscan", "dev-util/pycharm-community", "dev-util/pycharm-professional", "dev-util/qbs", "dev-util/qbs", "dev-util/qdevicemonitor", "dev-util/qdevicemonitor", "dev-util/qstlink2", "dev-util/quilt", "dev-util/quilt", "dev-util/quilt", "dev-util/radare2", "dev-util/radare2", "dev-util/radare2", "dev-util/ragel", "dev-util/ragel", "dev-util/ragel", "dev-util/ragel", "dev-util/rats", "dev-util/rbtools", "dev-util/rbtools", "dev-util/re2c", "dev-util/re2c", "dev-util/rebar-bin", "dev-util/rebar", "dev-util/redo", "dev-util/redo", "dev-util/redo", "dev-util/regexxer", "dev-util/rej", "dev-util/rizin", "dev-util/rocm-cmake", "dev-util/rocm-cmake", "dev-util/rocm-cmake", "dev-util/rocm-cmake", "dev-util/rocm-cmake", "dev-util/rocm-cmake", "dev-util/rocm-cmake", "dev-util/rocm-cmake", "dev-util/rocm-smi", "dev-util/rocm-smi", "dev-util/rocminfo", "dev-util/rocminfo", "dev-util/rocminfo", "dev-util/rocminfo", "dev-util/rocminfo", "dev-util/rocminfo", "dev-util/rocminfo", "dev-util/rocminfo", "dev-util/rocminfo", "dev-util/roctracer", "dev-util/roctracer", "dev-util/roctracer", "dev-util/rosdep", "dev-util/rosdep", "dev-util/rosinstall", "dev-util/rosinstall", "dev-util/rosinstall_generator", "dev-util/rosinstall_generator", "dev-util/rpmdevtools", "dev-util/rpmdevtools", "dev-util/rpmdevtools", "dev-util/rr", "dev-util/rt-tests", "dev-util/rustup", "dev-util/rustup", "dev-util/samurai", "dev-util/samurai", "dev-util/sasm", "dev-util/scala-ide", "dev-util/scanmem", "dev-util/sccache", "dev-util/sccache", "dev-util/schroot", "dev-util/schroot", "dev-util/scons", "dev-util/scons", "dev-util/sel", "dev-util/serialtalk", "dev-util/serialtalk", "dev-util/sgb", "dev-util/sgb", "dev-util/shadowman", "dev-util/shadowman", "dev-util/shards", "dev-util/shc", "dev-util/shellcheck-bin", "dev-util/shellcheck-bin", "dev-util/shellcheck", "dev-util/shelltestrunner", "dev-util/shflags", "dev-util/shtool", "dev-util/shunit2", "dev-util/shunit2", "dev-util/smem", "dev-util/source-highlight", "dev-util/spirv-headers", "dev-util/spirv-headers", "dev-util/spirv-llvm-translator", "dev-util/spirv-llvm-translator", "dev-util/spirv-llvm-translator", "dev-util/spirv-llvm-translator", "dev-util/spirv-llvm-translator", "dev-util/spirv-tools", "dev-util/spirv-tools", "dev-util/splint", "dev-util/squashdelta", "dev-util/squashdelta", "dev-util/squashdelta", "dev-util/squashmerge", "dev-util/squashmerge", "dev-util/src-cli", "dev-util/src-cli", "dev-util/src-cli", "dev-util/src-cli", "dev-util/statifier", "dev-util/stepman", "dev-util/strace", "dev-util/strace", "dev-util/strace", "dev-util/strace", "dev-util/stressapptest", "dev-util/stripe-mock", "dev-util/stripe-mock", "dev-util/stripe-mock", "dev-util/stripe-mock", "dev-util/stripe-mock", "dev-util/stripe-mock", "dev-util/stripe-mock", "dev-util/stripe-mock", "dev-util/stubgen", "dev-util/sysdig-kmod", "dev-util/sysdig-kmod", "dev-util/sysdig", "dev-util/sysdig", "dev-util/sysdig", "dev-util/sysprof-capture", "dev-util/sysprof-capture", "dev-util/sysprof-capture", "dev-util/sysprof-common", "dev-util/sysprof", "dev-util/systemtap", "dev-util/systemtap", "dev-util/tinlink", "dev-util/tkdiff", "dev-util/tkdiff", "dev-util/tmake", "dev-util/trace-cmd", "dev-util/treecc", "dev-util/trinity", "dev-util/trinity", "dev-util/tup", "dev-util/tup", "dev-util/tup", "dev-util/txt2regex", "dev-util/uftrace", "dev-util/umockdev", "dev-util/umockdev", "dev-util/umockdev", "dev-util/uncrustify", "dev-util/uncrustify", "dev-util/uncrustify", "dev-util/unifdef", "dev-util/usb-robot", "dev-util/valgrind", "dev-util/valgrind", "dev-util/valgrind", "dev-util/vbindiff", "dev-util/vint", "dev-util/visual-regexp", "dev-util/visual-regexp", "dev-util/visualvm", "dev-util/vmtouch", "dev-util/vmtouch", "dev-util/vtable-dumper", "dev-util/vulkan-headers", "dev-util/vulkan-headers", "dev-util/vulkan-tools", "dev-util/vulkan-tools", "dev-util/vulkan-tools", "dev-util/wasmer", "dev-util/watchman", "dev-util/wayland-scanner", "dev-util/wayland-scanner", "dev-util/webhook", "dev-util/weka", "dev-util/weka", "dev-util/wiggle", "dev-util/wiggle", "dev-util/woke", "dev-util/woke", "dev-util/woke", "dev-util/wstool", "dev-util/wstool", "dev-util/xdelta", "dev-util/xdelta", "dev-util/xfce4-dev-tools", "dev-util/xfce4-dev-tools", "dev-util/xfce4-dev-tools", "dev-util/xfce4-dev-tools", "dev-util/xmlindent", "dev-util/xxdi", "dev-util/xxdiff", "dev-util/yacc", "dev-util/ydiff", "dev-util/yuicompressor", "dev-util/intel-graphics-system-controller", "dev-util/uglifyjs", "dev-vcs/bfg", "dev-vcs/colorcvs", "dev-vcs/colorsvn", "dev-vcs/cssc", "dev-vcs/cvs-fast-export", "dev-vcs/cvs", "dev-vcs/cvs2cl", "dev-vcs/cvsgraph", "dev-vcs/cvsps", "dev-vcs/cvsps", "dev-vcs/cvsspam", "dev-vcs/cvsutils", "dev-vcs/cvsync", "dev-vcs/cvsync", "dev-vcs/darcs", "dev-vcs/easygit", "dev-vcs/fossil", "dev-vcs/git-annex", "dev-vcs/git-big-picture", "dev-vcs/git-big-picture", "dev-vcs/git-cola", "dev-vcs/git-cola", "dev-vcs/git-cola", "dev-vcs/git-crypt", "dev-vcs/git-deploy", "dev-vcs/git-extras", "dev-vcs/git-extras", "dev-vcs/git-flow", "dev-vcs/git-lfs", "dev-vcs/git-lfs", "dev-vcs/git-lfs", "dev-vcs/git-mailz", "dev-vcs/git-mantle", "dev-vcs/git-merge-changelog", "dev-vcs/git-pimp", "dev-vcs/git-publish", "dev-vcs/git-pw", "dev-vcs/git-sh", "dev-vcs/git-tools", "dev-vcs/git-tools", "dev-vcs/git", "dev-vcs/git", "dev-vcs/git", "dev-vcs/git", "dev-vcs/git", "dev-vcs/git", "dev-vcs/git", "dev-vcs/git", "dev-vcs/git", "dev-vcs/git", "dev-vcs/git", "dev-vcs/gitg", "dev-vcs/github-pages-publish", "dev-vcs/gitolite-gentoo", "dev-vcs/gitolite-gentoo", "dev-vcs/gitolite", "dev-vcs/gitolite", "dev-vcs/gitstats", "dev-vcs/gti", "dev-vcs/guilt", "dev-vcs/hg-evolve", "dev-vcs/hg-git", "dev-vcs/hg-git", "dev-vcs/hg-git", "dev-vcs/hub", "dev-vcs/kdesvn", "dev-vcs/lab", "dev-vcs/lab", "dev-vcs/mercurial", "dev-vcs/mercurial", "dev-vcs/mercurial", "dev-vcs/mr", "dev-vcs/mr", "dev-vcs/mr", "dev-vcs/mr", "dev-vcs/notify-webhook", "dev-vcs/pre-commit", "dev-vcs/python-gitlab", "dev-vcs/python-gitlab", "dev-vcs/qgit", "dev-vcs/rcs", "dev-vcs/rcs", "dev-vcs/rcsi", "dev-vcs/repo", "dev-vcs/repo", "dev-vcs/repo", "dev-vcs/reposurgeon", "dev-vcs/rsvndump", "dev-vcs/stgit", "dev-vcs/subversion", "dev-vcs/svn2cl", "dev-vcs/svn2cl", "dev-vcs/svn2git", "dev-vcs/svn2git", "dev-vcs/svn2git", "dev-vcs/svn2git", "dev-vcs/svneverever", "dev-vcs/svneverever", "dev-vcs/svneverever", "dev-vcs/tig", "dev-vcs/tig", "dev-vcs/tig", "dev-vcs/tig", "dev-vcs/tkcvs", "dev-vcs/topgit", "dev-vcs/topgit", "dev-vcs/tortoisehg", "dev-vcs/tortoisehg", "dev-vcs/tortoisehg", "dev-vcs/vcsh", "dev-vcs/vcsh", "dev-vcs/git-sizer", "games-action/0verkill", "games-action/abuse", "games-action/apotheon", "games-action/armagetronad", "games-action/assault-android-cactus+", "games-action/astromenace", "games-action/atanks", "games-action/badland", "games-action/barrage", "games-action/battalion", "games-action/beathazardultra", "games-action/bomberclone", "games-action/brutal-legend", "games-action/bzflag", "games-action/chickens", "games-action/chromium-bsu", "games-action/clanbomber", "games-action/crimsonland", "games-action/deathchase3d", "games-action/descent1-data", "games-action/descent1-demodata", "games-action/descent1-freedata", "games-action/descent2-data", "games-action/descent2-demodata", "games-action/descent2-freedata", "games-action/descent2-vertigo", "games-action/descent3-demo", "games-action/descent3", "games-action/dxx-rebirth", "games-action/dxx-rebirth", "games-action/extreme-tuxracer", "games-action/fakk2", "games-action/formido", "games-action/garden", "games-action/geki2-KXL", "games-action/geki3-KXL", "games-action/gltron", "games-action/guacamelee", "games-action/heretic2-demo", "games-action/heretic2", "games-action/heroes", "games-action/hotline-miami", "games-action/intrusion2", "games-action/koth", "games-action/lugaru", "games-action/luola", "games-action/maelstrom", "games-action/minecraft-launcher", "games-action/minecraft-launcher", "games-action/minetest", "games-action/moon-buggy", "games-action/multimc", "games-action/nighthawk", "games-action/noiz2sa", "games-action/orbital-eunuchs-sniper", "games-action/postalplus", "games-action/powermanga", "games-action/rive", "games-action/rrootage", "games-action/shadowgrounds-bin", "games-action/shadowgrounds-survivor-bin", "games-action/shootingstar", "games-action/snipes", "games-action/solar2", "games-action/spacearyarya-kxl", "games-action/super-hexagon", "games-action/supermariowar", "games-action/supertuxkart", "games-action/supertuxkart", "games-action/swordandsworcery", "games-action/teeworlds", "games-action/towbowl-tactics", "games-action/transcend", "games-action/trine-enchanted-edition", "games-action/trine", "games-action/trine2", "games-action/trosh", "games-action/tuxkart", "games-action/violetland", "games-action/wordwarvi", "games-action/xblast", "games-action/xbomber", "games-action/xpilot", "games-arcade/abe", "games-arcade/afternoonstalker", "games-arcade/alienwave", "games-arcade/amphetamine", "games-arcade/aop", "games-arcade/apricots", "games-arcade/aquaria", "games-arcade/ascii-invaders", "games-arcade/asteroid", "games-arcade/balloonchase", "games-arcade/barbarian-bin", "games-arcade/batrachians", "games-arcade/berusky", "games-arcade/betna", "games-arcade/blobby", "games-arcade/blobwars", "games-arcade/blockrage", "games-arcade/bomns", "games-arcade/briquolo", "games-arcade/bumprace", "games-arcade/burgerspace", "games-arcade/cavezofphear", "games-arcade/cdogs-sdl", "games-arcade/ceferino", "games-arcade/circuslinux", "games-arcade/cob", "games-arcade/commandergenius", "games-arcade/conveysdl", "games-arcade/cosmosmash", "games-arcade/crack-attack", "games-arcade/criticalmass", "games-arcade/defendguin", "games-arcade/digger", "games-arcade/dynamitejack", "games-arcade/emilia-pinball", "games-arcade/epiar", "games-arcade/excido", "games-arcade/fishsupper", "games-arcade/frozen-bubble", "games-arcade/funnyboat", "games-arcade/gav", "games-arcade/gish-demo", "games-arcade/gnake", "games-arcade/gnome-nibbles", "games-arcade/gnome-robots", "games-arcade/gnujump", "games-arcade/grande-KXL", "games-arcade/gunocide2ex", "games-arcade/holotz-castle", "games-arcade/insaneodyssey", "games-arcade/jardinains", "games-arcade/jazz2-data", "games-arcade/jazz2", "games-arcade/jumpnbump", "games-arcade/jvgs", "games-arcade/kajaani-kombat", "games-arcade/kobodeluxe", "games-arcade/komi", "games-arcade/late", "games-arcade/lbreakout", "games-arcade/lbreakout2", "games-arcade/methane", "games-arcade/missile", "games-arcade/moleinvasion", "games-arcade/mrrescue", "games-arcade/netris", "games-arcade/nibbles", "games-arcade/ninvaders", "games-arcade/njam", "games-arcade/notpacman", "games-arcade/nottetris2", "games-arcade/open-supaplex", "games-arcade/openbubbles", "games-arcade/openmortal", "games-arcade/opensonic", "games-arcade/opentyrian", "games-arcade/orthorobot", "games-arcade/orthorobot", "games-arcade/oshu", "games-arcade/oshu", "games-arcade/pachi", "games-arcade/pacmanarena", "games-arcade/penguin-command", "games-arcade/pengupop", "games-arcade/performous", "games-arcade/primateplunge", "games-arcade/retrobattle", "games-arcade/ri-li", "games-arcade/rockdodger", "games-arcade/rocksndiamonds", "games-arcade/sable", "games-arcade/savagewheels", "games-arcade/sdb", "games-arcade/sdl-sopwith", "games-arcade/sdlroids", "games-arcade/sdlsasteroids", "games-arcade/shovel-knight", "games-arcade/slimevolley", "games-arcade/solarwolf", "games-arcade/spacerider", "games-arcade/spout", "games-arcade/stardork", "games-arcade/supertransball2", "games-arcade/supertux", "games-arcade/syobon", "games-arcade/tecnoballz", "games-arcade/thinktanks-demo", "games-arcade/tomatoes", "games-arcade/trailblazer", "games-arcade/tuxanci", "games-arcade/tuxdash", "games-arcade/tuxpuck", "games-arcade/vor", "games-arcade/whichwayisup", "games-arcade/wop", "games-arcade/xbill", "games-arcade/xboing", "games-arcade/xbubble", "games-arcade/xgalaga", "games-arcade/xjump", "games-arcade/xrick", "games-arcade/xscavenger", "games-arcade/xsfcave", "games-arcade/xtux", "games-arcade/yarsrevenge", "games-board/ace", "games-board/ascal", "games-board/atakks", "games-board/awale", "games-board/biloba", "games-board/blokish", "games-board/camato", "games-board/ccgo", "games-board/cgoban", "games-board/chessx", "games-board/cockatrice", "games-board/crafty", "games-board/domination", "games-board/eboard", "games-board/four-in-a-row", "games-board/freedoko", "games-board/fruit", "games-board/gambit", "games-board/gmchess", "games-board/gnome-chess", "games-board/gnome-mahjongg", "games-board/gnome-mines", "games-board/gnubg", "games-board/gnuchess-book", "games-board/gnuchess", "games-board/gnuchess", "games-board/gnugo", "games-board/gnushogi", "games-board/goatee-gtk", "games-board/grhino", "games-board/gtkatlantic", "games-board/gtkboard", "games-board/hexxagon", "games-board/iagno", "games-board/mah-jong", "games-board/maitretarot", "games-board/megamek", "games-board/mt_dolphin_ia", "games-board/mt_ncurses_client", "games-board/natch", "games-board/openyahtzee", "games-board/pasang-emas", "games-board/peg-e", "games-board/phalanx", "games-board/pioneers", "games-board/pokerth", "games-board/polyglot", "games-board/pychess", "games-board/pychess", "games-board/pysolfc", "games-board/pysolfc", "games-board/scid", "games-board/simsu", "games-board/sjeng", "games-board/stockfish", "games-board/stockfish", "games-board/stockfish", "games-board/tablebase-syzygy", "games-board/tablebase-syzygy", "games-board/tali", "games-board/tali", "games-board/tetzle", "games-board/xboard", "games-board/xfreecell", "games-board/xgammon", "games-board/xmahjongg", "games-board/xmille", "games-board/xscrabble", "games-board/xskat", "games-emulation/advancemame", "games-emulation/advancescan", "games-emulation/atari800", "games-emulation/caps", "games-emulation/desmume", "games-emulation/dgen-sdl", "games-emulation/dolphin", "games-emulation/dolphin", "games-emulation/dolphin", "games-emulation/dosbox-staging", "games-emulation/dosbox-staging", "games-emulation/dosbox-staging", "games-emulation/dosbox", "games-emulation/dosbox", "games-emulation/dosbox", "games-emulation/emutos", "games-emulation/fbzx", "games-emulation/fceux", "games-emulation/gcube", "games-emulation/generator", "games-emulation/gens", "games-emulation/gngb", "games-emulation/gngeo", "games-emulation/gnuboy", "games-emulation/hatari", "games-emulation/higan", "games-emulation/jrommanager", "games-emulation/libretro-bnes", "games-emulation/libretro-bnes", "games-emulation/libretro-dosbox", "games-emulation/libretro-dosbox", "games-emulation/libretro-fceumm", "games-emulation/libretro-fceumm", "games-emulation/libretro-info", "games-emulation/libretro-info", "games-emulation/libretro-nestopia", "games-emulation/libretro-nestopia", "games-emulation/libretro-snes9x", "games-emulation/libretro-snes9x", "games-emulation/libretro-snes9x", "games-emulation/libretro-twentyfortyeight", "games-emulation/libretro-twentyfortyeight", "games-emulation/lxdream", "games-emulation/m64py", "games-emulation/mamory", "games-emulation/mastergear-bin", "games-emulation/mednafen", "games-emulation/mednaffe", "games-emulation/mekanix", "games-emulation/mgba", "games-emulation/mgba", "games-emulation/mgba", "games-emulation/mgba", "games-emulation/mupen64plus-audio-sdl", "games-emulation/mupen64plus-core", "games-emulation/mupen64plus-input-sdl", "games-emulation/mupen64plus-rsp-hle", "games-emulation/mupen64plus-ui-console", "games-emulation/mupen64plus-video-glide64mk2", "games-emulation/mupen64plus-video-rice", "games-emulation/mupen64plus", "games-emulation/nestopia", "games-emulation/nestopia", "games-emulation/nestra", "games-emulation/openmsx", "games-emulation/openmsx", "games-emulation/pcsx2", "games-emulation/pcsx2", "games-emulation/pcsx2", "games-emulation/pcsxr", "games-emulation/pcsxr", "games-emulation/ppsspp", "games-emulation/ppsspp", "games-emulation/snes9x", "games-emulation/stella", "games-emulation/vbam", "games-emulation/vbam", "games-emulation/vgba", "games-emulation/yabause", "games-emulation/zinc", "games-emulation/zsnes", "games-emulation/zsnes", "games-emulation/zsnes", "games-engines/box2d", "games-engines/dMagnetic", "games-engines/devilutionx", "games-engines/devilutionx", "games-engines/devilutionx", "games-engines/devilutionx", "games-engines/exult", "games-engines/frobtads", "games-engines/frotz", "games-engines/frotz", "games-engines/gargoyle", "games-engines/love", "games-engines/love", "games-engines/love", "games-engines/love", "games-engines/nazghul", "games-engines/odamex", "games-engines/odamex", "games-engines/openmw", "games-engines/openmw", "games-engines/openxcom", "games-engines/openxcom", "games-engines/qtads", "games-engines/residualvm", "games-engines/residualvm", "games-engines/residualvm", "games-engines/scummvm-tools", "games-engines/scummvm-tools", "games-engines/scummvm", "games-engines/scummvm", "games-engines/solarus", "games-engines/stratagus", "games-engines/stratagus", "games-engines/stratagus", "games-engines/stratagus", "games-engines/stratagus", "games-engines/xzip", "games-engines/zoom", "games-fps/alienarena", "games-fps/avp", "games-fps/blackshades", "games-fps/chocolate-doom", "games-fps/darkplaces", "games-fps/doom-data", "games-fps/doomsday", "games-fps/doomsday", "games-fps/duke3d-data", "games-fps/eduke32", "games-fps/etqw-bin", "games-fps/etqw-data", "games-fps/etqw-demo", "games-fps/ezquake-bin", "games-fps/freedm-data", "games-fps/freedm", "games-fps/freedoom-data", "games-fps/freedoom", "games-fps/glxquake-bin", "games-fps/gzdoom", "games-fps/gzdoom", "games-fps/industri", "games-fps/legends", "games-fps/nexuiz", "games-fps/prboom-plus", "games-fps/prboom-plus", "games-fps/quake1-data", "games-fps/quake1-demodata", "games-fps/quake1-killer", "games-fps/quake1-rally", "games-fps/quake1-teamfortress", "games-fps/quake1-textures", "games-fps/quake2-data", "games-fps/quake2-demodata", "games-fps/quake2-icculus", "games-fps/quake2-textures", "games-fps/quakeforge", "games-fps/quakeforge", "games-fps/qudos", "games-fps/red-blue-quake2", "games-fps/redeclipse", "games-fps/redeclipse", "games-fps/rott", "games-fps/sauerbraten", "games-fps/sauerbraten", "games-fps/serious-sam-tse", "games-fps/soldieroffortune", "games-fps/tenebrae", "games-fps/transfusion-bin", "games-fps/tribes2", "games-fps/turtlearena", "games-fps/urbanterror-data", "games-fps/urbanterror", "games-fps/ut2003-bonuspack-cm", "games-fps/ut2003-bonuspack-de", "games-fps/ut2003-bonuspack-epic", "games-fps/ut2003-data", "games-fps/ut2003-demo", "games-fps/ut2003", "games-fps/ut2004-bonuspack-cbp1", "games-fps/ut2004-bonuspack-cbp2", "games-fps/ut2004-bonuspack-ece", "games-fps/ut2004-bonuspack-mega", "games-fps/ut2004-data", "games-fps/ut2004-demo", "games-fps/ut2004", "games-fps/wolfgl", "games-fps/worldofpadman", "games-fps/xonotic", "games-fps/yamagi-quake2", "games-fps/yamagi-quake2", "games-kids/gcompris", "games-kids/gmult", "games-kids/lletters", "games-kids/memonix", "games-kids/tuxmath", "games-kids/tuxtype", "games-misc/asr-manpages", "games-misc/ballerburg", "games-misc/bsd-games", "games-misc/bsd-games", "games-misc/bsod", "games-misc/c++robots", "games-misc/cowsay", "games-misc/cowsay", "games-misc/doge", "games-misc/exult-sound", "games-misc/fortune-mod-all", "games-misc/fortune-mod-at-linux", "games-misc/fortune-mod-bofh-excuses", "games-misc/fortune-mod-chucknorris", "games-misc/fortune-mod-cs", "games-misc/fortune-mod-flashrider", "games-misc/fortune-mod-fvl", "games-misc/fortune-mod-it", "games-misc/fortune-mod-kernelcookies", "games-misc/fortune-mod-mormon", "games-misc/fortune-mod-norbert-tretkowski", "games-misc/fortune-mod-osfortune", "games-misc/fortune-mod-rss", "games-misc/fortune-mod-scriptures", "games-misc/fortune-mod-tao", "games-misc/fortune-mod-taow", "games-misc/fortune-mod-thomas-ogrisegg", "games-misc/fortune-mod-zx-error", "games-misc/fortune-mod", "games-misc/funny-manpages", "games-misc/funny-manpages", "games-misc/gBhed", "games-misc/gtklife", "games-misc/little-inferno", "games-misc/lolcat", "games-misc/lucidlife", "games-misc/nyancat", "games-misc/opengfx", "games-misc/openmsx", "games-misc/opensfx", "games-misc/papers-please", "games-misc/ponysay", "games-misc/rfksay", "games-misc/robotfindskitten", "games-misc/sdljoytest", "games-misc/sex", "games-misc/sound-of-sorting", "games-misc/typespeed", "games-misc/usolitaire", "games-misc/wtf", "games-misc/wumpus", "games-misc/xcowsay", "games-misc/xcruiser", "games-misc/xpenguins", "games-mud/circlemud", "games-mud/crystal", "games-mud/gmudix", "games-mud/gnome-mud", "games-mud/gnome-mud", "games-mud/kildclient", "games-mud/mudix", "games-mud/powwow", "games-mud/tf", "games-mud/tintin", "games-mud/tkmoo", "games-mud/trebuchet", "games-puzzle/amoebax", "games-puzzle/anagramarama", "games-puzzle/angrydd", "games-puzzle/arrows", "games-puzzle/atomix", "games-puzzle/bastet", "games-puzzle/bff-or-die", "games-puzzle/biniax2", "games-puzzle/braincurses", "games-puzzle/brainparty", "games-puzzle/brainworkshop", "games-puzzle/color-lines", "games-puzzle/colorcode", "games-puzzle/concentration", "games-puzzle/connectagram", "games-puzzle/construo", "games-puzzle/cutemaze", "games-puzzle/cuyo", "games-puzzle/einstein", "games-puzzle/enigma", "games-puzzle/fbg", "games-puzzle/fish-fillets", "games-puzzle/five-or-more", "games-puzzle/flobopuyo", "games-puzzle/freesweep", "games-puzzle/galaxis", "games-puzzle/gemdropx", "games-puzzle/gfifteen", "games-puzzle/glightoff", "games-puzzle/gnome-klotski", "games-puzzle/gnome-sudoku", "games-puzzle/gnome-sudoku", "games-puzzle/gnome-taquin", "games-puzzle/gnome-tetravex", "games-puzzle/gnome2048", "games-puzzle/gnudoku", "games-puzzle/gnurobbo", "games-puzzle/gottet", "games-puzzle/greedy", "games-puzzle/groundhog", "games-puzzle/gtkballs", "games-puzzle/gweled", "games-puzzle/hangman", "games-puzzle/hexalate", "games-puzzle/hitori", "games-puzzle/icebreaker", "games-puzzle/ksokoban", "games-puzzle/ksokoban", "games-puzzle/lightsoff", "games-puzzle/lmarbles", "games-puzzle/lpairs", "games-puzzle/ltris", "games-puzzle/magiccube4d", "games-puzzle/meandmyshadow", "games-puzzle/mindless", "games-puzzle/mirrormagic", "games-puzzle/monsterz", "games-puzzle/mures", "games-puzzle/neverball", "games-puzzle/nightsky", "games-puzzle/nudoku", "games-puzzle/numptyphysics", "games-puzzle/numptyphysics", "games-puzzle/pathological", "games-puzzle/pauker", "games-puzzle/penguzzle", "games-puzzle/picpuz", "games-puzzle/pingus", "games-puzzle/pingus", "games-puzzle/pipepanic", "games-puzzle/pipewalker", "games-puzzle/quadra", "games-puzzle/quadrapassel", "games-puzzle/rezerwar", "games-puzzle/scramble", "games-puzzle/sdl-jewels", "games-puzzle/seatris", "games-puzzle/sgt-puzzles", "games-puzzle/splice", "games-puzzle/swell-foop", "games-puzzle/tanglet", "games-puzzle/tetrinet", "games-puzzle/textmaze", "games-puzzle/tint", "games-puzzle/tiny-and-big", "games-puzzle/tod", "games-puzzle/tong", "games-puzzle/toppler", "games-puzzle/torrent", "games-puzzle/triptych", "games-puzzle/twindistress", "games-puzzle/wakkabox", "games-puzzle/wizznic", "games-puzzle/wmpuzzle", "games-puzzle/world-of-goo-demo", "games-puzzle/world-of-goo-gog", "games-puzzle/world-of-goo-hb", "games-puzzle/xblockout", "games-puzzle/xbomb", "games-puzzle/xlogical", "games-puzzle/xpired", "games-puzzle/xtris", "games-puzzle/xwelltris", "games-puzzle/xye", "games-puzzle/zaz", "games-roguelike/FTL-gog", "games-roguelike/FTL", "games-roguelike/adom", "games-roguelike/adom", "games-roguelike/angband", "games-roguelike/crossfire-client", "games-roguelike/dwarf-fortress", "games-roguelike/hengband", "games-roguelike/moria", "games-roguelike/neon-chrome", "games-roguelike/nethack", "games-roguelike/powder", "games-roguelike/scourge", "games-roguelike/stone-soup", "games-roguelike/stone-soup", "games-roguelike/stone-soup", "games-roguelike/stone-soup", "games-roguelike/stone-soup", "games-roguelike/tome", "games-roguelike/tomenet", "games-roguelike/wrogue", "games-roguelike/zangband", "games-rpg/adonthell", "games-rpg/avadon", "games-rpg/baldurs-gate-ee", "games-rpg/baldurs-gate-ee", "games-rpg/bass", "games-rpg/bastion", "games-rpg/broken-age", "games-rpg/coe2", "games-rpg/comi", "games-rpg/costume-quest", "games-rpg/daimonin-client", "games-rpg/dear-esther", "games-rpg/deponia-doomsday", "games-rpg/deponia-tcj", "games-rpg/draci-historie", "games-rpg/drascula", "games-rpg/dreamweb", "games-rpg/dungeon-defenders", "games-rpg/egoboo", "games-rpg/eschalon-book-1-demo", "games-rpg/eternal-lands", "games-rpg/freedink-data", "games-rpg/freedink", "games-rpg/freedroid", "games-rpg/freedroidrpg", "games-rpg/grimrock", "games-rpg/gwiz", "games-rpg/hatoful-boyfriend-holiday-star", "games-rpg/hatoful-boyfriend", "games-rpg/kqlives", "games-rpg/lure", "games-rpg/manaplus", "games-rpg/manaplus", "games-rpg/openglad", "games-rpg/pcgen", "games-rpg/queen", "games-rpg/rpg-cli", "games-rpg/soltys", "games-rpg/sumwars", "games-rpg/to-the-moon", "games-rpg/vendetta-online-bin", "games-rpg/wasteland2", "games-rpg/wastesedge", "games-rpg/xu4", "games-rpg/zsdx", "games-rpg/zsxd", "games-server/bedrock-server", "games-server/bedrock-server", "games-server/crossfire-server", "games-server/etqw-ded", "games-server/mednafen-server", "games-server/minecraft-server", "games-server/minecraft-server", "games-server/monopd", "games-server/mtavc", "games-server/pvpgn", "games-server/pvpgn", "games-server/steamcmd", "games-server/ut2004-ded", "games-simulation/bcs-demo", "games-simulation/cannonsmash", "games-simulation/corsix-th", "games-simulation/corsix-th", "games-simulation/crashtest", "games-simulation/crrcsim", "games-simulation/flightgear-data", "games-simulation/flightgear-data", "games-simulation/flightgear", "games-simulation/flightgear", "games-simulation/gl117", "games-simulation/lincity-ng", "games-simulation/lincity", "games-simulation/micropolis", "games-simulation/openrct2", "games-simulation/openrct2", "games-simulation/openttd", "games-simulation/pmars-sdl", "games-simulation/searchandrescue", "games-simulation/senken", "games-simulation/simutrans", "games-simulation/singularity", "games-simulation/sky-rogue", "games-simulation/slime-rancher", "games-simulation/train-valley", "games-sports/billardgl", "games-sports/bygfoot", "games-sports/dustrac", "games-sports/foobillard", "games-sports/gracer", "games-sports/speed-dreams", "games-sports/stormbaancoureur", "games-sports/torcs", "games-sports/trigger", "games-sports/trophy", "games-sports/trophy", "games-sports/ultimatestunts", "games-sports/xmoto", "games-strategy/0ad", "games-strategy/0ad", "games-strategy/colobot-data", "games-strategy/colobot-data", "games-strategy/colobot", "games-strategy/colobot", "games-strategy/colobot", "games-strategy/crimson", "games-strategy/darwinia-demo", "games-strategy/darwinia", "games-strategy/defcon-demo", "games-strategy/dominions2", "games-strategy/dopewars", "games-strategy/dunelegacy", "games-strategy/freeciv", "games-strategy/freecol", "games-strategy/freeorion", "games-strategy/freeorion", "games-strategy/freeorion", "games-strategy/freesynd", "games-strategy/galaxyhack", "games-strategy/hedgewars", "games-strategy/ja2-stracciatella-data", "games-strategy/ja2-stracciatella", "games-strategy/julius", "games-strategy/julius", "games-strategy/knights-demo", "games-strategy/lgeneral", "games-strategy/liquidwar", "games-strategy/majesty-demo", "games-strategy/maxr", "games-strategy/megaglest-data", "games-strategy/megaglest-data", "games-strategy/megaglest", "games-strategy/megaglest", "games-strategy/naev", "games-strategy/netherearth", "games-strategy/openra", "games-strategy/s25rttr", "games-strategy/satellite-reign", "games-strategy/scorched3d", "games-strategy/settlers-2-gold-data", "games-strategy/seven-kingdoms", "games-strategy/spaz", "games-strategy/tornado", "games-strategy/triplea", "games-strategy/ufoai", "games-strategy/uqm", "games-strategy/war1gus", "games-strategy/war1gus", "games-strategy/war1gus", "games-strategy/war1gus", "games-strategy/war1gus", "games-strategy/wargus-data", "games-strategy/wargus", "games-strategy/wargus", "games-strategy/wargus", "games-strategy/wargus", "games-strategy/wargus", "games-strategy/warmux", "games-strategy/warzone2100", "games-strategy/warzone2100", "games-strategy/wesnoth", "games-strategy/wesnoth", "games-strategy/widelands", "games-strategy/widelands", "games-strategy/xbattleai", "games-strategy/augustus", "games-util/acc", "games-util/acc", "games-util/antimicro", "games-util/atlas", "games-util/biounzip", "games-util/catcodec", "games-util/datutil", "games-util/deutex", "games-util/deutex", "games-util/dfarc", "games-util/dzip", "games-util/etswitch", "games-util/eureka", "games-util/fteqcc", "games-util/game-device-udev-rules", "games-util/gamemode", "games-util/gamemode", "games-util/gamepick", "games-util/glbsp", "games-util/grfcodec", "games-util/gslist", "games-util/higan-purify", "games-util/joystick", "games-util/lgogdownloader", "games-util/lgogdownloader", "games-util/linux-wbfs-manager", "games-util/loki_patch", "games-util/lutris", "games-util/lutris", "games-util/lutris", "games-util/lutris", "games-util/mcrcon", "games-util/nml", "games-util/pyfa", "games-util/pyfa", "games-util/pyfa", "games-util/qjoypad", "games-util/qstat", "games-util/sc-controller", "games-util/sc-controller", "games-util/slade", "games-util/springlobby", "games-util/ucon64", "games-util/uglygs", "games-util/umodpack", "games-util/uz2unpack", "games-util/vispatch", "games-util/wiiload", "games-util/wit", "games-util/wxchtdecoder", "games-util/xboxdrv", "games-util/xgame-gtk2", "games-util/xgame", "games-util/xgamer", "games-util/xpadneo", "games-util/xpadneo", "games-util/xqf", "gnome-base/dconf-editor", "gnome-base/dconf", "gnome-base/gconf", "gnome-base/gdm", "gnome-base/gdm", "gnome-base/gnome-applets", "gnome-base/gnome-applets", "gnome-base/gnome-applets", "gnome-base/gnome-common", "gnome-base/gnome-control-center", "gnome-base/gnome-core-apps", "gnome-base/gnome-core-libs", "gnome-base/gnome-desktop", "gnome-base/gnome-desktop", "gnome-base/gnome-desktop", "gnome-base/gnome-extra-apps", "gnome-base/gnome-flashback", "gnome-base/gnome-flashback", "gnome-base/gnome-keyring", "gnome-base/gnome-light", "gnome-base/gnome-menus", "gnome-base/gnome-mime-data", "gnome-base/gnome-panel", "gnome-base/gnome-panel", "gnome-base/gnome-session", "gnome-base/gnome-settings-daemon", "gnome-base/gnome-shell", "gnome-base/gnome-shell", "gnome-base/gnome-shell", "gnome-base/gnome-vfs", "gnome-base/gnome", "gnome-base/gsettings-desktop-schemas", "gnome-base/gsettings-desktop-schemas", "gnome-base/gvfs", "gnome-base/libglade", "gnome-base/libgnomecanvas", "gnome-base/libgnomekbd", "gnome-base/libgtop", "gnome-base/librsvg", "gnome-base/librsvg", "gnome-base/nautilus", "gnome-extra/chrome-gnome-shell", "gnome-extra/cinnamon-control-center", "gnome-extra/cinnamon-control-center", "gnome-extra/cinnamon-desktop", "gnome-extra/cinnamon-desktop", "gnome-extra/cinnamon-menus", "gnome-extra/cinnamon-menus", "gnome-extra/cinnamon-screensaver", "gnome-extra/cinnamon-screensaver", "gnome-extra/cinnamon-session", "gnome-extra/cinnamon-session", "gnome-extra/cinnamon-settings-daemon", "gnome-extra/cinnamon-settings-daemon", "gnome-extra/cinnamon-translations", "gnome-extra/cinnamon-translations", "gnome-extra/cinnamon", "gnome-extra/cinnamon", "gnome-extra/cjs", "gnome-extra/cjs", "gnome-extra/eiciel", "gnome-extra/eiciel", "gnome-extra/evolution-data-server", "gnome-extra/evolution-data-server", "gnome-extra/evolution-data-server", "gnome-extra/evolution-ews", "gnome-extra/evolution-ews", "gnome-extra/evolution-ews", "gnome-extra/filemanager-actions", "gnome-extra/gconf-editor", "gnome-extra/gnome-boxes", "gnome-extra/gnome-boxes", "gnome-extra/gnome-calculator", "gnome-extra/gnome-calendar", "gnome-extra/gnome-characters", "gnome-extra/gnome-clocks", "gnome-extra/gnome-color-manager", "gnome-extra/gnome-commander", "gnome-extra/gnome-commander", "gnome-extra/gnome-contacts", "gnome-extra/gnome-directory-thumbnailer", "gnome-extra/gnome-documents", "gnome-extra/gnome-getting-started-docs", "gnome-extra/gnome-integration-spotify", "gnome-extra/gnome-logs", "gnome-extra/gnome-power-manager", "gnome-extra/gnome-search-tool", "gnome-extra/gnome-shell-extension-appindicator", "gnome-extra/gnome-shell-extension-applications-overview-tooltip", "gnome-extra/gnome-shell-extension-bing-wallpaper", "gnome-extra/gnome-shell-extension-bluetooth-quick-connect", "gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen", "gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen", "gnome-extra/gnome-shell-extension-dash-to-panel", "gnome-extra/gnome-shell-extension-desktop-icons-ng", "gnome-extra/gnome-shell-extension-desktop-icons-ng", "gnome-extra/gnome-shell-extension-gsconnect", "gnome-extra/gnome-shell-extension-pop-shell", "gnome-extra/gnome-shell-extension-pop-shell", "gnome-extra/gnome-shell-extensions", "gnome-extra/gnome-shell-extensions", "gnome-extra/gnome-shell-extensions", "gnome-extra/gnome-shell-frippery", "gnome-extra/gnome-software", "gnome-extra/gnome-software", "gnome-extra/gnome-software", "gnome-extra/gnome-system-monitor", "gnome-extra/gnome-tweaks", "gnome-extra/gnome-user-docs", "gnome-extra/gnome-user-docs", "gnome-extra/gnome-user-docs", "gnome-extra/gnome-user-share", "gnome-extra/gnome-utils", "gnome-extra/gnome-weather", "gnome-extra/gnome-weather", "gnome-extra/gtkhtml", "gnome-extra/gucharmap", "gnome-extra/gucharmap", "gnome-extra/libgda", "gnome-extra/libgsf", "gnome-extra/mousetweaks", "gnome-extra/nautilus-dropbox", "gnome-extra/nautilus-dropbox", "gnome-extra/nautilus-sendto", "gnome-extra/nemo-fileroller", "gnome-extra/nemo", "gnome-extra/nemo", "gnome-extra/nm-applet", "gnome-extra/office-runner", "gnome-extra/pch-session", "gnome-extra/polkit-gnome", "gnome-extra/seahorse-nautilus", "gnome-extra/sushi", "gnome-extra/synapse", "gnome-extra/yelp-xsl", "gnome-extra/yelp", "gnome-extra/yelp", "gnome-extra/zenity", "gnustep-apps/aclock", "gnustep-apps/addresses", "gnustep-apps/affiche", "gnustep-apps/batmon", "gnustep-apps/cdplayer", "gnustep-apps/cenon", "gnustep-apps/cenon", "gnustep-apps/cynthiune", "gnustep-apps/fisicalab", "gnustep-apps/ftp", "gnustep-apps/ftp", "gnustep-apps/gemas", "gnustep-apps/gmines", "gnustep-apps/gnumail", "gnustep-apps/gnumail", "gnustep-apps/gnumail", "gnustep-apps/gorm", "gnustep-apps/gorm", "gnustep-apps/gorm", "gnustep-apps/gorm", "gnustep-apps/graphos", "gnustep-apps/graphos", "gnustep-apps/gshisen", "gnustep-apps/gspdf", "gnustep-apps/gworkspace", "gnustep-apps/lapispuzzle", "gnustep-apps/laternamagica", "gnustep-apps/mpdcon", "gnustep-apps/pictureframe", "gnustep-apps/pikopixel", "gnustep-apps/pikopixel", "gnustep-apps/preview", "gnustep-apps/price", "gnustep-apps/price", "gnustep-apps/projectcenter", "gnustep-apps/simpleagenda", "gnustep-apps/sogo", "gnustep-apps/sogo", "gnustep-apps/systempreferences", "gnustep-apps/talksoup", "gnustep-apps/terminal", "gnustep-apps/textedit", "gnustep-apps/zipper", "gnustep-base/gnustep-back-art", "gnustep-base/gnustep-back-art", "gnustep-base/gnustep-back-cairo", "gnustep-base/gnustep-back-cairo", "gnustep-base/gnustep-back-xlib", "gnustep-base/gnustep-back-xlib", "gnustep-base/gnustep-base", "gnustep-base/gnustep-base", "gnustep-base/gnustep-gui", "gnustep-base/gnustep-gui", "gnustep-base/gnustep-make", "gnustep-base/gnustep-make", "gnustep-base/gnustep-updater", "gnustep-base/libobjc2", "gnustep-base/mknfonts", "gnustep-base/mknfonts", "gnustep-libs/cenonlibrary", "gnustep-libs/dbuskit", "gnustep-libs/dbuskit", "gnustep-libs/gsldap", "gnustep-libs/highlighterkit", "gnustep-libs/netclasses", "gnustep-libs/pantomime", "gnustep-libs/pantomime", "gnustep-libs/pantomime", "gnustep-libs/performance", "gnustep-libs/renaissance", "gnustep-libs/sope", "gnustep-libs/sope", "gnustep-libs/sqlclient", "gui-apps/grim", "gui-apps/grim", "gui-apps/gtkgreet", "gui-apps/gtkgreet", "gui-apps/gtkgreet", "gui-apps/kanshi", "gui-apps/kanshi", "gui-apps/lavalauncher", "gui-apps/lavalauncher", "gui-apps/lavalauncher", "gui-apps/lavalauncher", "gui-apps/mako", "gui-apps/mako", "gui-apps/mako", "gui-apps/nm-tray", "gui-apps/slurp", "gui-apps/slurp", "gui-apps/slurp", "gui-apps/swappy", "gui-apps/swappy", "gui-apps/swaybg", "gui-apps/swaybg", "gui-apps/swayidle", "gui-apps/swayidle", "gui-apps/swayidle", "gui-apps/swaylock", "gui-apps/swaylock", "gui-apps/swaylock", "gui-apps/tuigreet", "gui-apps/tuigreet", "gui-apps/tuigreet", "gui-apps/waybar", "gui-apps/waybar", "gui-apps/waybar", "gui-apps/wayland-logout", "gui-apps/wayland-logout", "gui-apps/waypipe", "gui-apps/waypipe", "gui-apps/waypipe", "gui-apps/wayvnc", "gui-apps/wayvnc", "gui-apps/wcm", "gui-apps/wcm", "gui-apps/wf-recorder", "gui-apps/wf-recorder", "gui-apps/wf-shell", "gui-apps/wf-shell", "gui-apps/wl-clipboard", "gui-apps/wl-clipboard", "gui-apps/wl-clipboard", "gui-libs/amtk", "gui-libs/display-manager-init", "gui-libs/egl-wayland", "gui-libs/eglexternalplatform", "gui-libs/gdk-pixbuf-loader-webp", "gui-libs/greetd", "gui-libs/greetd", "gui-libs/gtk-layer-shell", "gui-libs/gtk", "gui-libs/gtk", "gui-libs/libhandy", "gui-libs/libwpe", "gui-libs/neatvnc", "gui-libs/neatvnc", "gui-libs/tepl", "gui-libs/tepl", "gui-libs/wayfire-plugins-extra", "gui-libs/wayfire-plugins-extra", "gui-libs/wf-config", "gui-libs/wf-config", "gui-libs/wlroots", "gui-libs/wlroots", "gui-libs/wlroots", "gui-libs/wlroots", "gui-libs/wlroots", "gui-libs/wpebackend-fdo", "gui-libs/xdg-desktop-portal-wlr", "gui-libs/xdg-desktop-portal-wlr", "gui-wm/hikari", "gui-wm/sway", "gui-wm/sway", "gui-wm/wayfire", "gui-wm/wayfire", "java-virtuals/ejb-api", "java-virtuals/interceptor-api", "java-virtuals/jms", "java-virtuals/saaj-api", "java-virtuals/script-api", "java-virtuals/servlet-api", "java-virtuals/servlet-api", "java-virtuals/servlet-api", "java-virtuals/servlet-api", "java-virtuals/servlet-api", "java-virtuals/transaction-api", "java-virtuals/xmlrpc-api", "kde-apps/akonadi-calendar", "kde-apps/akonadi-calendar", "kde-apps/akonadi-contacts", "kde-apps/akonadi-contacts", "kde-apps/akonadi-import-wizard", "kde-apps/akonadi-import-wizard", "kde-apps/akonadi-mime", "kde-apps/akonadi-mime", "kde-apps/akonadi-notes", "kde-apps/akonadi-notes", "kde-apps/akonadi-search", "kde-apps/akonadi-search", "kde-apps/akonadi", "kde-apps/akonadi", "kde-apps/akonadiconsole", "kde-apps/akonadiconsole", "kde-apps/akregator", "kde-apps/akregator", "kde-apps/analitza", "kde-apps/analitza", "kde-apps/ark", "kde-apps/ark", "kde-apps/artikulate", "kde-apps/artikulate", "kde-apps/audiocd-kio", "kde-apps/audiocd-kio", "kde-apps/baloo-widgets", "kde-apps/baloo-widgets", "kde-apps/blinken", "kde-apps/blinken", "kde-apps/bomber", "kde-apps/bomber", "kde-apps/bovo", "kde-apps/bovo", "kde-apps/calendarjanitor", "kde-apps/calendarjanitor", "kde-apps/calendarsupport", "kde-apps/calendarsupport", "kde-apps/cantor", "kde-apps/cantor", "kde-apps/cervisia", "kde-apps/cervisia", "kde-apps/dolphin-plugins-dropbox", "kde-apps/dolphin-plugins-dropbox", "kde-apps/dolphin-plugins-git", "kde-apps/dolphin-plugins-git", "kde-apps/dolphin-plugins-mercurial", "kde-apps/dolphin-plugins-mercurial", "kde-apps/dolphin-plugins-subversion", "kde-apps/dolphin-plugins-subversion", "kde-apps/dolphin", "kde-apps/dolphin", "kde-apps/dragon", "kde-apps/dragon", "kde-apps/eventviews", "kde-apps/eventviews", "kde-apps/ffmpegthumbs", "kde-apps/ffmpegthumbs", "kde-apps/filelight", "kde-apps/filelight", "kde-apps/granatier", "kde-apps/granatier", "kde-apps/grantlee-editor", "kde-apps/grantlee-editor", "kde-apps/grantleetheme", "kde-apps/grantleetheme", "kde-apps/gwenview", "kde-apps/gwenview", "kde-apps/incidenceeditor", "kde-apps/incidenceeditor", "kde-apps/juk", "kde-apps/juk", "kde-apps/k3b", "kde-apps/k3b", "kde-apps/kaccounts-integration", "kde-apps/kaccounts-integration", "kde-apps/kaccounts-providers", "kde-apps/kaccounts-providers", "kde-apps/kaddressbook", "kde-apps/kaddressbook", "kde-apps/kajongg", "kde-apps/kajongg", "kde-apps/kalarm", "kde-apps/kalarm", "kde-apps/kalarmcal", "kde-apps/kalarmcal", "kde-apps/kalgebra", "kde-apps/kalgebra", "kde-apps/kalzium", "kde-apps/kalzium", "kde-apps/kamera", "kde-apps/kamera", "kde-apps/kamoso", "kde-apps/kamoso", "kde-apps/kanagram", "kde-apps/kanagram", "kde-apps/kapman", "kde-apps/kapman", "kde-apps/kapptemplate", "kde-apps/kapptemplate", "kde-apps/kate", "kde-apps/kate", "kde-apps/katomic", "kde-apps/katomic", "kde-apps/kbackup", "kde-apps/kbackup", "kde-apps/kblackbox", "kde-apps/kblackbox", "kde-apps/kblocks", "kde-apps/kblocks", "kde-apps/kbounce", "kde-apps/kbounce", "kde-apps/kbreakout", "kde-apps/kbreakout", "kde-apps/kbruch", "kde-apps/kbruch", "kde-apps/kcachegrind", "kde-apps/kcachegrind", "kde-apps/kcalc", "kde-apps/kcalc", "kde-apps/kcalutils", "kde-apps/kcalutils", "kde-apps/kcharselect", "kde-apps/kcharselect", "kde-apps/kcolorchooser", "kde-apps/kcolorchooser", "kde-apps/kcron", "kde-apps/kcron", "kde-apps/kde-apps-meta", "kde-apps/kde-apps-meta", "kde-apps/kde-dev-scripts", "kde-apps/kde-dev-scripts", "kde-apps/kde-dev-utils", "kde-apps/kde-dev-utils", "kde-apps/kde-meta", "kde-apps/kdeaccessibility-meta", "kde-apps/kdeaccessibility-meta", "kde-apps/kdeadmin-meta", "kde-apps/kdeadmin-meta", "kde-apps/kdebase-meta", "kde-apps/kdebugsettings", "kde-apps/kdebugsettings", "kde-apps/kdecore-meta", "kde-apps/kdecore-meta", "kde-apps/kdeedu-data", "kde-apps/kdeedu-data", "kde-apps/kdeedu-meta", "kde-apps/kdeedu-meta", "kde-apps/kdegames-meta", "kde-apps/kdegames-meta", "kde-apps/kdegraphics-meta", "kde-apps/kdegraphics-meta", "kde-apps/kdegraphics-mobipocket", "kde-apps/kdegraphics-mobipocket", "kde-apps/kdemultimedia-meta", "kde-apps/kdemultimedia-meta", "kde-apps/kdenetwork-filesharing", "kde-apps/kdenetwork-filesharing", "kde-apps/kdenetwork-meta", "kde-apps/kdenetwork-meta", "kde-apps/kdenlive", "kde-apps/kdenlive", "kde-apps/kdepim-addons", "kde-apps/kdepim-addons", "kde-apps/kdepim-meta", "kde-apps/kdepim-meta", "kde-apps/kdepim-runtime", "kde-apps/kdepim-runtime", "kde-apps/kdesdk-kioslaves", "kde-apps/kdesdk-kioslaves", "kde-apps/kdesdk-meta", "kde-apps/kdesdk-meta", "kde-apps/kdesdk-thumbnailers", "kde-apps/kdesdk-thumbnailers", "kde-apps/kdeutils-meta", "kde-apps/kdeutils-meta", "kde-apps/kdf", "kde-apps/kdf", "kde-apps/kdialog", "kde-apps/kdialog", "kde-apps/kdiamond", "kde-apps/kdiamond", "kde-apps/keditbookmarks", "kde-apps/keditbookmarks", "kde-apps/kfind", "kde-apps/kfind", "kde-apps/kfloppy", "kde-apps/kfloppy", "kde-apps/kfourinline", "kde-apps/kfourinline", "kde-apps/kgeography", "kde-apps/kgeography", "kde-apps/kget", "kde-apps/kget", "kde-apps/kgoldrunner", "kde-apps/kgoldrunner", "kde-apps/kgpg", "kde-apps/kgpg", "kde-apps/khangman", "kde-apps/khangman", "kde-apps/khelpcenter", "kde-apps/khelpcenter", "kde-apps/kidentitymanagement", "kde-apps/kidentitymanagement", "kde-apps/kig", "kde-apps/kig", "kde-apps/kigo", "kde-apps/kigo", "kde-apps/killbots", "kde-apps/killbots", "kde-apps/kimagemapeditor", "kde-apps/kimagemapeditor", "kde-apps/kimap", "kde-apps/kimap", "kde-apps/kio-extras", "kde-apps/kio-extras", "kde-apps/kipi-plugins", "kde-apps/kipi-plugins", "kde-apps/kiriki", "kde-apps/kiriki", "kde-apps/kiten", "kde-apps/kiten", "kde-apps/kitinerary", "kde-apps/kitinerary", "kde-apps/kjumpingcube", "kde-apps/kjumpingcube", "kde-apps/kldap", "kde-apps/kldap", "kde-apps/kleopatra", "kde-apps/kleopatra", "kde-apps/klettres", "kde-apps/klettres", "kde-apps/klickety", "kde-apps/klickety", "kde-apps/klines", "kde-apps/klines", "kde-apps/kmag", "kde-apps/kmag", "kde-apps/kmahjongg", "kde-apps/kmahjongg", "kde-apps/kmail-account-wizard", "kde-apps/kmail-account-wizard", "kde-apps/kmail", "kde-apps/kmail", "kde-apps/kmailtransport", "kde-apps/kmailtransport", "kde-apps/kmbox", "kde-apps/kmbox", "kde-apps/kmime", "kde-apps/kmime", "kde-apps/kmines", "kde-apps/kmines", "kde-apps/kmix", "kde-apps/kmix", "kde-apps/kmousetool", "kde-apps/kmousetool", "kde-apps/kmouth", "kde-apps/kmouth", "kde-apps/kmplot", "kde-apps/kmplot", "kde-apps/knavalbattle", "kde-apps/knavalbattle", "kde-apps/knetwalk", "kde-apps/knetwalk", "kde-apps/knights", "kde-apps/knights", "kde-apps/knotes", "kde-apps/knotes", "kde-apps/kolf", "kde-apps/kolf", "kde-apps/kollision", "kde-apps/kollision", "kde-apps/kolourpaint", "kde-apps/kolourpaint", "kde-apps/kompare", "kde-apps/kompare", "kde-apps/konqueror", "kde-apps/konqueror", "kde-apps/konquest", "kde-apps/konquest", "kde-apps/konsole", "kde-apps/konsole", "kde-apps/konsole", "kde-apps/konsolekalendar", "kde-apps/konsolekalendar", "kde-apps/kontact", "kde-apps/kontact", "kde-apps/kontactinterface", "kde-apps/kontactinterface", "kde-apps/kopete", "kde-apps/kopete", "kde-apps/korganizer", "kde-apps/korganizer", "kde-apps/kpat", "kde-apps/kpat", "kde-apps/kpimtextedit", "kde-apps/kpimtextedit", "kde-apps/kpkpass", "kde-apps/kpkpass", "kde-apps/kqtquickcharts", "kde-apps/kqtquickcharts", "kde-apps/krdc", "kde-apps/krdc", "kde-apps/kreversi", "kde-apps/kreversi", "kde-apps/krfb", "kde-apps/krfb", "kde-apps/kross-interpreters", "kde-apps/kross-interpreters", "kde-apps/kruler", "kde-apps/kruler", "kde-apps/kshisen", "kde-apps/kshisen", "kde-apps/ksirk", "kde-apps/ksirk", "kde-apps/ksmtp", "kde-apps/ksmtp", "kde-apps/ksnakeduel", "kde-apps/ksnakeduel", "kde-apps/kspaceduel", "kde-apps/kspaceduel", "kde-apps/ksquares", "kde-apps/ksquares", "kde-apps/ksudoku", "kde-apps/ksudoku", "kde-apps/ksystemlog", "kde-apps/ksystemlog", "kde-apps/kteatime", "kde-apps/kteatime", "kde-apps/ktimer", "kde-apps/ktimer", "kde-apps/ktouch", "kde-apps/ktouch", "kde-apps/ktp-accounts-kcm", "kde-apps/ktp-accounts-kcm", "kde-apps/ktp-approver", "kde-apps/ktp-approver", "kde-apps/ktp-auth-handler", "kde-apps/ktp-auth-handler", "kde-apps/ktp-common-internals", "kde-apps/ktp-common-internals", "kde-apps/ktp-contact-list", "kde-apps/ktp-contact-list", "kde-apps/ktp-contact-runner", "kde-apps/ktp-contact-runner", "kde-apps/ktp-desktop-applets", "kde-apps/ktp-desktop-applets", "kde-apps/ktp-filetransfer-handler", "kde-apps/ktp-filetransfer-handler", "kde-apps/ktp-kded-module", "kde-apps/ktp-kded-module", "kde-apps/ktp-send-file", "kde-apps/ktp-send-file", "kde-apps/ktp-text-ui", "kde-apps/ktp-text-ui", "kde-apps/ktuberling", "kde-apps/ktuberling", "kde-apps/kturtle", "kde-apps/kturtle", "kde-apps/kubrick", "kde-apps/kubrick", "kde-apps/kwalletmanager", "kde-apps/kwalletmanager", "kde-apps/kwave", "kde-apps/kwave", "kde-apps/kwordquiz", "kde-apps/kwordquiz", "kde-apps/kwrite", "kde-apps/kwrite", "kde-apps/libgravatar", "kde-apps/libgravatar", "kde-apps/libkcddb", "kde-apps/libkcddb", "kde-apps/libkcompactdisc", "kde-apps/libkcompactdisc", "kde-apps/libkdcraw", "kde-apps/libkdcraw", "kde-apps/libkdegames", "kde-apps/libkdegames", "kde-apps/libkdepim", "kde-apps/libkdepim", "kde-apps/libkeduvocdocument", "kde-apps/libkeduvocdocument", "kde-apps/libkexiv2", "kde-apps/libkexiv2", "kde-apps/libkgapi", "kde-apps/libkgapi", "kde-apps/libkipi", "kde-apps/libkipi", "kde-apps/libkleo", "kde-apps/libkleo", "kde-apps/libkmahjongg", "kde-apps/libkmahjongg", "kde-apps/libkomparediff2", "kde-apps/libkomparediff2", "kde-apps/libksane", "kde-apps/libksane", "kde-apps/libksieve", "kde-apps/libksieve", "kde-apps/libktnef", "kde-apps/libktnef", "kde-apps/lokalize", "kde-apps/lokalize", "kde-apps/lskat", "kde-apps/lskat", "kde-apps/mailcommon", "kde-apps/mailcommon", "kde-apps/mailimporter", "kde-apps/mailimporter", "kde-apps/marble", "kde-apps/marble", "kde-apps/mbox-importer", "kde-apps/mbox-importer", "kde-apps/messagelib", "kde-apps/messagelib", "kde-apps/minuet", "kde-apps/minuet", "kde-apps/okular", "kde-apps/okular", "kde-apps/palapeli", "kde-apps/palapeli", "kde-apps/parley", "kde-apps/parley", "kde-apps/picmi", "kde-apps/picmi", "kde-apps/pim-data-exporter", "kde-apps/pim-data-exporter", "kde-apps/pim-sieve-editor", "kde-apps/pim-sieve-editor", "kde-apps/pimcommon", "kde-apps/pimcommon", "kde-apps/plasma-telepathy-meta", "kde-apps/plasma-telepathy-meta", "kde-apps/poxml", "kde-apps/poxml", "kde-apps/print-manager", "kde-apps/print-manager", "kde-apps/rocs", "kde-apps/rocs", "kde-apps/signon-kwallet-extension", "kde-apps/signon-kwallet-extension", "kde-apps/spectacle", "kde-apps/spectacle", "kde-apps/step", "kde-apps/step", "kde-apps/svgpart", "kde-apps/svgpart", "kde-apps/sweeper", "kde-apps/sweeper", "kde-apps/thumbnailers", "kde-apps/thumbnailers", "kde-apps/umbrello", "kde-apps/umbrello", "kde-apps/yakuake", "kde-apps/yakuake", "kde-apps/zeroconf-ioslave", "kde-apps/zeroconf-ioslave", "kde-frameworks/attica", "kde-frameworks/attica", "kde-frameworks/baloo", "kde-frameworks/baloo", "kde-frameworks/bluez-qt", "kde-frameworks/bluez-qt", "kde-frameworks/breeze-icons-rcc", "kde-frameworks/breeze-icons-rcc", "kde-frameworks/breeze-icons", "kde-frameworks/breeze-icons", "kde-frameworks/extra-cmake-modules", "kde-frameworks/extra-cmake-modules", "kde-frameworks/frameworkintegration", "kde-frameworks/frameworkintegration", "kde-frameworks/kactivities-stats", "kde-frameworks/kactivities-stats", "kde-frameworks/kactivities", "kde-frameworks/kactivities", "kde-frameworks/kapidox", "kde-frameworks/kapidox", "kde-frameworks/karchive", "kde-frameworks/karchive", "kde-frameworks/kauth", "kde-frameworks/kauth", "kde-frameworks/kbookmarks", "kde-frameworks/kbookmarks", "kde-frameworks/kcalendarcore", "kde-frameworks/kcalendarcore", "kde-frameworks/kcmutils", "kde-frameworks/kcmutils", "kde-frameworks/kcodecs", "kde-frameworks/kcodecs", "kde-frameworks/kcompletion", "kde-frameworks/kcompletion", "kde-frameworks/kconfig", "kde-frameworks/kconfig", "kde-frameworks/kconfigwidgets", "kde-frameworks/kconfigwidgets", "kde-frameworks/kcontacts", "kde-frameworks/kcontacts", "kde-frameworks/kcoreaddons", "kde-frameworks/kcoreaddons", "kde-frameworks/kcrash", "kde-frameworks/kcrash", "kde-frameworks/kdav", "kde-frameworks/kdav", "kde-frameworks/kdbusaddons", "kde-frameworks/kdbusaddons", "kde-frameworks/kdeclarative", "kde-frameworks/kdeclarative", "kde-frameworks/kded", "kde-frameworks/kded", "kde-frameworks/kdelibs4support", "kde-frameworks/kdelibs4support", "kde-frameworks/kdesu", "kde-frameworks/kdesu", "kde-frameworks/kdnssd", "kde-frameworks/kdnssd", "kde-frameworks/kdoctools", "kde-frameworks/kdoctools", "kde-frameworks/kemoticons", "kde-frameworks/kemoticons", "kde-frameworks/kf-env", "kde-frameworks/kfilemetadata", "kde-frameworks/kfilemetadata", "kde-frameworks/kglobalaccel", "kde-frameworks/kglobalaccel", "kde-frameworks/kguiaddons", "kde-frameworks/kguiaddons", "kde-frameworks/kholidays", "kde-frameworks/kholidays", "kde-frameworks/khtml", "kde-frameworks/khtml", "kde-frameworks/ki18n", "kde-frameworks/ki18n", "kde-frameworks/kiconthemes", "kde-frameworks/kiconthemes", "kde-frameworks/kidletime", "kde-frameworks/kidletime", "kde-frameworks/kimageformats", "kde-frameworks/kimageformats", "kde-frameworks/kinit", "kde-frameworks/kinit", "kde-frameworks/kio", "kde-frameworks/kio", "kde-frameworks/kirigami", "kde-frameworks/kirigami", "kde-frameworks/kitemmodels", "kde-frameworks/kitemmodels", "kde-frameworks/kitemviews", "kde-frameworks/kitemviews", "kde-frameworks/kjobwidgets", "kde-frameworks/kjobwidgets", "kde-frameworks/kjs", "kde-frameworks/kjs", "kde-frameworks/knewstuff", "kde-frameworks/knewstuff", "kde-frameworks/knotifications", "kde-frameworks/knotifications", "kde-frameworks/knotifyconfig", "kde-frameworks/knotifyconfig", "kde-frameworks/kpackage", "kde-frameworks/kpackage", "kde-frameworks/kparts", "kde-frameworks/kparts", "kde-frameworks/kpeople", "kde-frameworks/kpeople", "kde-frameworks/kplotting", "kde-frameworks/kplotting", "kde-frameworks/kpty", "kde-frameworks/kpty", "kde-frameworks/kquickcharts", "kde-frameworks/kquickcharts", "kde-frameworks/kross", "kde-frameworks/kross", "kde-frameworks/krunner", "kde-frameworks/krunner", "kde-frameworks/kservice", "kde-frameworks/kservice", "kde-frameworks/ktexteditor", "kde-frameworks/ktexteditor", "kde-frameworks/ktextwidgets", "kde-frameworks/ktextwidgets", "kde-frameworks/kunitconversion", "kde-frameworks/kunitconversion", "kde-frameworks/kwallet", "kde-frameworks/kwallet", "kde-frameworks/kwayland", "kde-frameworks/kwayland", "kde-frameworks/kwidgetsaddons", "kde-frameworks/kwidgetsaddons", "kde-frameworks/kwindowsystem", "kde-frameworks/kwindowsystem", "kde-frameworks/kxmlgui", "kde-frameworks/kxmlgui", "kde-frameworks/modemmanager-qt", "kde-frameworks/modemmanager-qt", "kde-frameworks/networkmanager-qt", "kde-frameworks/networkmanager-qt", "kde-frameworks/oxygen-icons", "kde-frameworks/oxygen-icons", "kde-frameworks/plasma", "kde-frameworks/plasma", "kde-frameworks/prison", "kde-frameworks/prison", "kde-frameworks/purpose", "kde-frameworks/purpose", "kde-frameworks/qqc2-desktop-style", "kde-frameworks/qqc2-desktop-style", "kde-frameworks/solid", "kde-frameworks/solid", "kde-frameworks/sonnet", "kde-frameworks/sonnet", "kde-frameworks/syndication", "kde-frameworks/syndication", "kde-frameworks/syntax-highlighting", "kde-frameworks/syntax-highlighting", "kde-frameworks/threadweaver", "kde-frameworks/threadweaver", "kde-misc/basket", "kde-misc/colord-kde", "kde-misc/kdeconnect", "kde-misc/kdeconnect", "kde-misc/kdiff3", "kde-misc/kdirstat", "kde-misc/kimtoy", "kde-misc/kio-fuse", "kde-misc/kio-gdrive", "kde-misc/kio-gdrive", "kde-misc/kio-gopher", "kde-misc/kio-locate", "kde-misc/kio-stash", "kde-misc/kmarkdownwebview", "kde-misc/krename", "kde-misc/krusader", "kde-misc/kshutdown", "kde-misc/ktoshiba", "kde-misc/latte-dock", "kde-misc/latte-dock", "kde-misc/markdownpart", "kde-misc/markdownpart", "kde-misc/openofficeorg-thumbnail", "kde-misc/plasma-applet-network-monitor", "kde-misc/plasma-applet-weather-widget", "kde-misc/plasma-pass", "kde-misc/playbar2", "kde-misc/rsibreak", "kde-misc/skanlite", "kde-misc/skanlite", "kde-misc/tellico", "kde-misc/tellico", "kde-misc/ultimate-gmail-feed", "kde-misc/wacomtablet", "kde-misc/zanshin", "kde-plasma/bluedevil", "kde-plasma/bluedevil", "kde-plasma/breeze-grub", "kde-plasma/breeze-grub", "kde-plasma/breeze-gtk", "kde-plasma/breeze-gtk", "kde-plasma/breeze-plymouth", "kde-plasma/breeze-plymouth", "kde-plasma/breeze", "kde-plasma/breeze", "kde-plasma/discover", "kde-plasma/discover", "kde-plasma/drkonqi", "kde-plasma/drkonqi", "kde-plasma/kactivitymanagerd", "kde-plasma/kactivitymanagerd", "kde-plasma/kde-cli-tools", "kde-plasma/kde-cli-tools", "kde-plasma/kde-gtk-config", "kde-plasma/kde-gtk-config", "kde-plasma/kdecoration", "kde-plasma/kdecoration", "kde-plasma/kdeplasma-addons", "kde-plasma/kdeplasma-addons", "kde-plasma/kgamma", "kde-plasma/kgamma", "kde-plasma/khotkeys", "kde-plasma/khotkeys", "kde-plasma/kinfocenter", "kde-plasma/kinfocenter", "kde-plasma/kmenuedit", "kde-plasma/kmenuedit", "kde-plasma/kscreen", "kde-plasma/kscreen", "kde-plasma/kscreenlocker", "kde-plasma/kscreenlocker", "kde-plasma/ksshaskpass", "kde-plasma/ksshaskpass", "kde-plasma/ksysguard", "kde-plasma/ksysguard", "kde-plasma/ksystemstats", "kde-plasma/kwallet-pam", "kde-plasma/kwallet-pam", "kde-plasma/kwayland-integration", "kde-plasma/kwayland-integration", "kde-plasma/kwayland-server", "kde-plasma/kwayland-server", "kde-plasma/kwin", "kde-plasma/kwin", "kde-plasma/kwrited", "kde-plasma/kwrited", "kde-plasma/layer-shell-qt", "kde-plasma/libkscreen", "kde-plasma/libkscreen", "kde-plasma/libksysguard", "kde-plasma/libksysguard", "kde-plasma/libkworkspace", "kde-plasma/libkworkspace", "kde-plasma/milou", "kde-plasma/milou", "kde-plasma/oxygen", "kde-plasma/oxygen", "kde-plasma/plasma-browser-integration", "kde-plasma/plasma-browser-integration", "kde-plasma/plasma-desktop", "kde-plasma/plasma-desktop", "kde-plasma/plasma-disks", "kde-plasma/plasma-disks", "kde-plasma/plasma-firewall", "kde-plasma/plasma-firewall", "kde-plasma/plasma-integration", "kde-plasma/plasma-integration", "kde-plasma/plasma-meta", "kde-plasma/plasma-meta", "kde-plasma/plasma-nm", "kde-plasma/plasma-nm", "kde-plasma/plasma-pa", "kde-plasma/plasma-pa", "kde-plasma/plasma-sdk", "kde-plasma/plasma-sdk", "kde-plasma/plasma-systemmonitor", "kde-plasma/plasma-systemmonitor", "kde-plasma/plasma-thunderbolt", "kde-plasma/plasma-thunderbolt", "kde-plasma/plasma-vault", "kde-plasma/plasma-vault", "kde-plasma/plasma-workspace-wallpapers", "kde-plasma/plasma-workspace-wallpapers", "kde-plasma/plasma-workspace", "kde-plasma/plasma-workspace", "kde-plasma/plymouth-kcm", "kde-plasma/plymouth-kcm", "kde-plasma/polkit-kde-agent", "kde-plasma/polkit-kde-agent", "kde-plasma/powerdevil", "kde-plasma/powerdevil", "kde-plasma/sddm-kcm", "kde-plasma/sddm-kcm", "kde-plasma/systemsettings", "kde-plasma/systemsettings", "kde-plasma/xdg-desktop-portal-kde", "kde-plasma/xdg-desktop-portal-kde", "kde-plasma/xembed-sni-proxy", "kde-plasma/xembed-sni-proxy", "lxde-base/lxappearance-obconf", "lxde-base/lxappearance", "lxde-base/lxde-common", "lxde-base/lxde-icon-theme", "lxde-base/lxde-meta", "lxde-base/lxdm", "lxde-base/lxdm", "lxde-base/lxinput", "lxde-base/lxlauncher", "lxde-base/lxmenu-data", "lxde-base/lxpanel", "lxde-base/lxrandr", "lxde-base/lxsession", "lxde-base/lxtask", "lxde-base/lxterminal", "lxde-base/menu-cache", "lxqt-base/liblxqt", "lxqt-base/liblxqt", "lxqt-base/libsysstat", "lxqt-base/libsysstat", "lxqt-base/lxqt-about", "lxqt-base/lxqt-about", "lxqt-base/lxqt-admin", "lxqt-base/lxqt-admin", "lxqt-base/lxqt-config", "lxqt-base/lxqt-config", "lxqt-base/lxqt-globalkeys", "lxqt-base/lxqt-globalkeys", "lxqt-base/lxqt-meta", "lxqt-base/lxqt-meta", "lxqt-base/lxqt-notificationd", "lxqt-base/lxqt-notificationd", "lxqt-base/lxqt-openssh-askpass", "lxqt-base/lxqt-openssh-askpass", "lxqt-base/lxqt-panel", "lxqt-base/lxqt-panel", "lxqt-base/lxqt-policykit", "lxqt-base/lxqt-policykit", "lxqt-base/lxqt-powermanagement", "lxqt-base/lxqt-powermanagement", "lxqt-base/lxqt-qtplugin", "lxqt-base/lxqt-qtplugin", "lxqt-base/lxqt-runner", "lxqt-base/lxqt-runner", "lxqt-base/lxqt-session", "lxqt-base/lxqt-session", "lxqt-base/lxqt-sudo", "lxqt-base/lxqt-sudo", "mail-client/aerc", "mail-client/aerc", "mail-client/alot", "mail-client/alot", "mail-client/alpine", "mail-client/balsa", "mail-client/balsa", "mail-client/bower", "mail-client/claws-mail", "mail-client/claws-mail", "mail-client/claws-mail", "mail-client/claws-mail", "mail-client/clawsker", "mail-client/cone", "mail-client/evolution", "mail-client/evolution", "mail-client/evolution", "mail-client/geary", "mail-client/hap", "mail-client/kube", "mail-client/mailx-support", "mail-client/mailx", "mail-client/mutt-wizard", "mail-client/mutt-wizard", "mail-client/mutt-wizard", "mail-client/mutt", "mail-client/mutt", "mail-client/mutt", "mail-client/neomutt", "mail-client/neomutt", "mail-client/novell-groupwise-client", "mail-client/roundcube", "mail-client/roundcube", "mail-client/roundcube", "mail-client/s-nail", "mail-client/sylpheed", "mail-client/thunderbird-bin", "mail-client/thunderbird", "mail-client/trojita", "mail-client/trojita", "mail-filter/MailScanner", "mail-filter/afew", "mail-filter/amavisd-milter", "mail-filter/amavisd-milter", "mail-filter/amavisd-new", "mail-filter/amavisd-new", "mail-filter/bmf", "mail-filter/bogofilter", "mail-filter/bogofilter", "mail-filter/courier-pythonfilter", "mail-filter/couriersrs", "mail-filter/dcc", "mail-filter/dkimproxy", "mail-filter/exim-geoip", "mail-filter/exim-p0f", "mail-filter/gld", "mail-filter/imapfilter", "mail-filter/libmilter", "mail-filter/libmilter", "mail-filter/libsieve", "mail-filter/libspf2", "mail-filter/libsrs2", "mail-filter/libsrs_alt", "mail-filter/maildrop", "mail-filter/mailfilter", "mail-filter/mapson", "mail-filter/milter-regex", "mail-filter/mimedefang", "mail-filter/normalizemime", "mail-filter/opendkim", "mail-filter/opendmarc", "mail-filter/opensmtpd-filter-rspamd", "mail-filter/policyd-weight", "mail-filter/policyd", "mail-filter/popfile", "mail-filter/postforward", "mail-filter/postforward", "mail-filter/postfwd", "mail-filter/postfwd", "mail-filter/postgrey", "mail-filter/postsrsd", "mail-filter/procmail", "mail-filter/pyzor", "mail-filter/razor", "mail-filter/rblcheck", "mail-filter/rspamd", "mail-filter/rspamd", "mail-filter/rspamd", "mail-filter/scmail", "mail-filter/sieve-connect", "mail-filter/sigh", "mail-filter/spamassassin-botnet", "mail-filter/spamassassin", "mail-filter/spamassassin", "mail-filter/spamdyke", "mail-filter/spampd", "mail-filter/spamprobe", "mail-filter/spf-engine", "mail-filter/sqlgrey", "mail-filter/zdkimfilter", "mail-filter/zdkimfilter", "mail-filter/zdkimfilter", "mail-mta/courier", "mail-mta/courier", "mail-mta/courier", "mail-mta/courier", "mail-mta/courier", "mail-mta/courier", "mail-mta/esmtp", "mail-mta/esmtp", "mail-mta/exim", "mail-mta/exim", "mail-mta/exim", "mail-mta/msmtp", "mail-mta/msmtp", "mail-mta/msmtp", "mail-mta/netqmail", "mail-mta/netqmail", "mail-mta/notqmail", "mail-mta/notqmail", "mail-mta/nullmailer", "mail-mta/opensmtpd", "mail-mta/postfix", "mail-mta/postfix", "mail-mta/postfix", "mail-mta/postfix", "mail-mta/protonmail-bridge", "mail-mta/protonmail-bridge", "mail-mta/qpsmtpd", "mail-mta/qpsmtpd", "mail-mta/sendmail", "mail-mta/sendmail", "mail-mta/ssmtp", "mate-base/caja", "mate-base/caja", "mate-base/libmatekbd", "mate-base/mate-applets-meta", "mate-base/mate-applets", "mate-base/mate-common", "mate-base/mate-control-center", "mate-base/mate-control-center", "mate-base/mate-desktop", "mate-base/mate-menus", "mate-base/mate-panel", "mate-base/mate-panel", "mate-base/mate-session-manager", "mate-base/mate-session-manager", "mate-base/mate-settings-daemon", "mate-base/mate-settings-daemon", "mate-base/mate", "mate-extra/caja-admin", "mate-extra/caja-admin", "mate-extra/caja-admin", "mate-extra/caja-dropbox", "mate-extra/caja-extensions", "mate-extra/caja-hide", "mate-extra/mate-calc", "mate-extra/mate-calc", "mate-extra/mate-indicator-applet", "mate-extra/mate-media", "mate-extra/mate-netbook", "mate-extra/mate-polkit", "mate-extra/mate-power-manager", "mate-extra/mate-power-manager", "mate-extra/mate-screensaver", "mate-extra/mate-screensaver", "mate-extra/mate-sensors-applet", "mate-extra/mate-system-monitor", "mate-extra/mate-system-monitor", "mate-extra/mate-user-guide", "mate-extra/mate-user-share", "mate-extra/mate-utils", "media-fonts/Humor-Sans", "media-fonts/ahem", "media-fonts/alee-fonts", "media-fonts/alegreya-sans", "media-fonts/alegreya-serif", "media-fonts/andika", "media-fonts/anonymous-pro", "media-fonts/aquafont", "media-fonts/aquapfont", "media-fonts/arabeyes-fonts", "media-fonts/arkpandora", "media-fonts/arphicfonts", "media-fonts/artwiz-aleczapka-en", "media-fonts/artwiz-latin1", "media-fonts/baekmuk-fonts", "media-fonts/bitstream-cyberbit", "media-fonts/cantarell", "media-fonts/cardo", "media-fonts/cascadia-code", "media-fonts/cheapskatefonts", "media-fonts/clearsans", "media-fonts/cm-unicode", "media-fonts/comic-neue", "media-fonts/corefonts", "media-fonts/courier-prime", "media-fonts/cronyx-fonts", "media-fonts/croscorefonts", "media-fonts/crosextrafonts-caladea", "media-fonts/crosextrafonts-carlito", "media-fonts/culmus", "media-fonts/culmus", "media-fonts/dejavu", "media-fonts/dina", "media-fonts/droid", "media-fonts/dzongkha-fonts", "media-fonts/eb-garamond", "media-fonts/efont-unicode", "media-fonts/ekushey-bangla-fonts", "media-fonts/encodings", "media-fonts/essays1743", "media-fonts/exljbris-free", "media-fonts/exo", "media-fonts/fantasque-sans-mono", "media-fonts/farsi-fonts", "media-fonts/fgdc-emergency", "media-fonts/fifth-leg", "media-fonts/fira-code", "media-fonts/fira-code", "media-fonts/fira-mono", "media-fonts/fira-sans", "media-fonts/font-adobe-100dpi", "media-fonts/font-adobe-75dpi", "media-fonts/font-adobe-utopia-100dpi", "media-fonts/font-adobe-utopia-75dpi", "media-fonts/font-adobe-utopia-type1", "media-fonts/font-alias", "media-fonts/font-arabic-misc", "media-fonts/font-bh-100dpi", "media-fonts/font-bh-75dpi", "media-fonts/font-bh-lucidatypewriter-100dpi", "media-fonts/font-bh-lucidatypewriter-75dpi", "media-fonts/font-bh-ttf", "media-fonts/font-bh-type1", "media-fonts/font-bitstream-100dpi", "media-fonts/font-bitstream-75dpi", "media-fonts/font-bitstream-speedo", "media-fonts/font-bitstream-type1", "media-fonts/font-cronyx-cyrillic", "media-fonts/font-cursor-misc", "media-fonts/font-daewoo-misc", "media-fonts/font-dec-misc", "media-fonts/font-ibm-type1", "media-fonts/font-isas-misc", "media-fonts/font-jis-misc", "media-fonts/font-micro-misc", "media-fonts/font-misc-cyrillic", "media-fonts/font-misc-ethiopic", "media-fonts/font-misc-meltho", "media-fonts/font-misc-misc", "media-fonts/font-mutt-misc", "media-fonts/font-schumacher-misc", "media-fonts/font-screen-cyrillic", "media-fonts/font-sony-misc", "media-fonts/font-sun-misc", "media-fonts/font-util", "media-fonts/font-winitzki-cyrillic", "media-fonts/font-xfree86-type1", "media-fonts/fontawesome", "media-fonts/fontawesome", "media-fonts/fontawesome", "media-fonts/fontawesome", "media-fonts/fontawesome", "media-fonts/fonts-meta", "media-fonts/free-bangla-font", "media-fonts/freefont", "media-fonts/freefonts", "media-fonts/fs-fonts", "media-fonts/gidole", "media-fonts/glass-tty-vt220", "media-fonts/hack", "media-fonts/hermit", "media-fonts/heuristica", "media-fonts/hunkyfonts", "media-fonts/ibm-plex", "media-fonts/inconsolata-hellenic", "media-fonts/inconsolata-lgc", "media-fonts/inconsolata", "media-fonts/intlfonts", "media-fonts/intlfonts", "media-fonts/iosevka", "media-fonts/iosevka", "media-fonts/iosevka", "media-fonts/ipaex", "media-fonts/ipamonafont", "media-fonts/ja-ipafonts", "media-fonts/jetbrains-mono", "media-fonts/jetbrains-mono", "media-fonts/jisx0213-fonts", "media-fonts/jomolhari", "media-fonts/joypixels", "media-fonts/jsmath-extra-dark", "media-fonts/jsmath", "media-fonts/kacst-fonts", "media-fonts/kanjistrokeorders", "media-fonts/khmer", "media-fonts/kochi-substitute", "media-fonts/konfont", "media-fonts/koruri", "media-fonts/lfpfonts-fix", "media-fonts/lfpfonts-var", "media-fonts/liberation-fonts", "media-fonts/liberation-fonts", "media-fonts/libertine", "media-fonts/lklug", "media-fonts/lohit-assamese", "media-fonts/lohit-bengali", "media-fonts/lohit-devanagari", "media-fonts/lohit-fonts", "media-fonts/lohit-gujarati", "media-fonts/lohit-gurmukhi", "media-fonts/lohit-kannada", "media-fonts/lohit-malayalam", "media-fonts/lohit-marathi", "media-fonts/lohit-nepali", "media-fonts/lohit-odia", "media-fonts/lohit-tamil-classical", "media-fonts/lohit-tamil", "media-fonts/lohit-telugu", "media-fonts/mgopen", "media-fonts/mikachan-font-otf", "media-fonts/mikachan-font-ttc", "media-fonts/mikachan-font-ttf", "media-fonts/mix-mplus-ipa", "media-fonts/monafont", "media-fonts/monoid", "media-fonts/montecarlo", "media-fonts/mplus-fonts", "media-fonts/mplus-outline-fonts", "media-fonts/nanum", "media-fonts/nanumfont", "media-fonts/noto-cjk", "media-fonts/noto-emoji", "media-fonts/noto-emoji", "media-fonts/noto", "media-fonts/nunito", "media-fonts/nuosu-sil", "media-fonts/office-code-pro", "media-fonts/ohsnap", "media-fonts/oldstandard", "media-fonts/open-sans", "media-fonts/opendesktop-fonts", "media-fonts/oto", "media-fonts/oxygen-fonts", "media-fonts/paratype-astra", "media-fonts/paratype", "media-fonts/pcf2bdf", "media-fonts/pigiarniq", "media-fonts/polarsys-b612-fonts", "media-fonts/polarsys-b612-fonts", "media-fonts/pothana2k", "media-fonts/powerline-symbols", "media-fonts/proggy-fonts", "media-fonts/qomolangma", "media-fonts/quivira", "media-fonts/ricty", "media-fonts/roboto", "media-fonts/sazanami", "media-fonts/sgi-fonts", "media-fonts/shinonome", "media-fonts/signika", "media-fonts/sil-abyssinica", "media-fonts/sil-arabicfonts", "media-fonts/sil-charis", "media-fonts/sil-doulos", "media-fonts/sil-ezra", "media-fonts/sil-galatia", "media-fonts/sil-gentium", "media-fonts/sil-padauk", "media-fonts/sil-padauk", "media-fonts/solarize", "media-fonts/solarize", "media-fonts/sophia-nubian", "media-fonts/source-han-sans", "media-fonts/source-pro", "media-fonts/stix-fonts", "media-fonts/stix-fonts", "media-fonts/takao-fonts", "media-fonts/tengwar-fonts", "media-fonts/terminus-font", "media-fonts/termsyn", "media-fonts/tex-gyre", "media-fonts/texcm-ttf", "media-fonts/thaifonts-scalable", "media-fonts/tibetan-machine-font", "media-fonts/ttf-bitstream-vera", "media-fonts/ubuntu-font-family", "media-fonts/umeplus-fonts", "media-fonts/unfonts-extra", "media-fonts/unfonts", "media-fonts/unifont", "media-fonts/urw-fonts", "media-fonts/urwvn-fonts", "media-fonts/vdrsymbols-ttf", "media-fonts/viga", "media-fonts/vlgothic", "media-fonts/vollkorn", "media-fonts/webby-fonts", "media-fonts/wqy-bitmapfont", "media-fonts/wqy-microhei", "media-fonts/wqy-unibit", "media-fonts/wqy-zenhei", "media-fonts/x11fonts-jmk", "media-fonts/zh-kcfonts", "media-gfx/aaphoto", "media-gfx/aewan", "media-gfx/ahoviewer", "media-gfx/album", "media-gfx/alembic", "media-gfx/apng2gif", "media-gfx/apngasm", "media-gfx/apngdis", "media-gfx/apngopt", "media-gfx/argyllcms", "media-gfx/argyllcms", "media-gfx/arss", "media-gfx/asymptote", "media-gfx/asymptote", "media-gfx/autopano-sift-C", "media-gfx/aview", "media-gfx/blender", "media-gfx/blender", "media-gfx/blender", "media-gfx/blender", "media-gfx/blender", "media-gfx/blender", "media-gfx/blender", "media-gfx/brscan4", "media-gfx/cairosvg", "media-gfx/cellwriter", "media-gfx/chafa", "media-gfx/clockphoto", "media-gfx/colorhug-client", "media-gfx/converseen", "media-gfx/cropgui", "media-gfx/cropgui", "media-gfx/crwinfo", "media-gfx/cura", "media-gfx/curaengine", "media-gfx/darktable", "media-gfx/darktable", "media-gfx/dawn", "media-gfx/dcraw", "media-gfx/digikam", "media-gfx/digikam", "media-gfx/ditaa", "media-gfx/ditaa", "media-gfx/dmtx-utils", "media-gfx/dmtx-utils", "media-gfx/dpic", "media-gfx/duhdraw", "media-gfx/ebdftopcf", "media-gfx/enblend", "media-gfx/engauge", "media-gfx/entangle", "media-gfx/eog-plugins", "media-gfx/eog", "media-gfx/eog", "media-gfx/eom", "media-gfx/eom", "media-gfx/ephoto", "media-gfx/esci-interpreter-gt-s80", "media-gfx/evoluspencil", "media-gfx/exact-image", "media-gfx/exif", "media-gfx/exiv2", "media-gfx/exiv2", "media-gfx/farbfeld", "media-gfx/farbfeld", "media-gfx/fbgrab", "media-gfx/fbgrab", "media-gfx/fbgrab", "media-gfx/fbida", "media-gfx/fbida", "media-gfx/fdm-materials", "media-gfx/feh", "media-gfx/feh", "media-gfx/feh", "media-gfx/feh", "media-gfx/feh", "media-gfx/feh", "media-gfx/figurine", "media-gfx/fim", "media-gfx/flam3", "media-gfx/flameshot", "media-gfx/flameshot", "media-gfx/flameshot", "media-gfx/fondu", "media-gfx/fontforge", "media-gfx/fotowall", "media-gfx/fotoxx", "media-gfx/fotoxx", "media-gfx/fotoxx", "media-gfx/freecad", "media-gfx/freecad", "media-gfx/freepv", "media-gfx/frogr", "media-gfx/frogr", "media-gfx/geeqie", "media-gfx/geeqie", "media-gfx/geeqie", "media-gfx/gif2apng", "media-gfx/gif2png", "media-gfx/gifsicle", "media-gfx/gimp-arrow-brushes", "media-gfx/gimp", "media-gfx/gimp", "media-gfx/gimp", "media-gfx/gimp", "media-gfx/gmic", "media-gfx/gnofract4d", "media-gfx/gnome-font-viewer", "media-gfx/gnome-photos", "media-gfx/gnome-raw-thumbnailer", "media-gfx/gnome-screenshot", "media-gfx/gnuclad", "media-gfx/gozer", "media-gfx/gphoto2", "media-gfx/gphotofs", "media-gfx/gpicview", "media-gfx/gpicview", "media-gfx/gpicview", "media-gfx/graphicsmagick", "media-gfx/graphicsmagick", "media-gfx/graphite2", "media-gfx/graphviz", "media-gfx/graphviz", "media-gfx/graphviz", "media-gfx/grub-splashes", "media-gfx/gscan2pdf", "media-gfx/gscan2pdf", "media-gfx/gthumb", "media-gfx/gthumb", "media-gfx/gtkimageview", "media-gfx/hp2xx", "media-gfx/hugin", "media-gfx/hugin", "media-gfx/hydrus", "media-gfx/hydrus", "media-gfx/hydrus", "media-gfx/hydrus", "media-gfx/hydrus", "media-gfx/icon-slicer", "media-gfx/icoutils", "media-gfx/igal", "media-gfx/imagemagick", "media-gfx/imagemagick", "media-gfx/imagemagick", "media-gfx/imagemagick", "media-gfx/imagemagick", "media-gfx/imageworsener", "media-gfx/img2pdf", "media-gfx/img2pdf", "media-gfx/imv", "media-gfx/imv", "media-gfx/inkscape", "media-gfx/inkscape", "media-gfx/iscan-data", "media-gfx/iscan-plugin-esdip", "media-gfx/iscan-plugin-gt-f500", "media-gfx/iscan-plugin-gt-f720", "media-gfx/iscan-plugin-gt-x770", "media-gfx/iscan-plugin-gt-x820", "media-gfx/iscan-plugin-network-nt", "media-gfx/iscan-plugin-perfection-v370", "media-gfx/iscan", "media-gfx/iscan", "media-gfx/iscan", "media-gfx/jhead", "media-gfx/jigl", "media-gfx/jp2a", "media-gfx/jpeg2ps", "media-gfx/jpeginfo", "media-gfx/jpegoptim", "media-gfx/jpegpixi", "media-gfx/jpegtoavi", "media-gfx/kcoloredit", "media-gfx/kgeotag", "media-gfx/kgraphviewer", "media-gfx/kphotoalbum", "media-gfx/kphotoalbum", "media-gfx/krita", "media-gfx/krita", "media-gfx/krita", "media-gfx/kuickshow", "media-gfx/kxstitch", "media-gfx/libimagequant", "media-gfx/libimagequant", "media-gfx/libimagequant", "media-gfx/librecad", "media-gfx/librecad", "media-gfx/libredwg", "media-gfx/llgal", "media-gfx/luminance-hdr", "media-gfx/lximage-qt", "media-gfx/lximage-qt", "media-gfx/maim", "media-gfx/maim", "media-gfx/mandelbulber", "media-gfx/mcomix", "media-gfx/mcomix", "media-gfx/mcomix", "media-gfx/meshlab", "media-gfx/metapixel", "media-gfx/mkgallery", "media-gfx/monica", "media-gfx/mscgen", "media-gfx/mypaint-brushes", "media-gfx/mypaint", "media-gfx/netpaint", "media-gfx/nomacs", "media-gfx/nvidia-cg-toolkit", "media-gfx/nvidia-texture-tools", "media-gfx/nvidia-texture-tools", "media-gfx/openclipart", "media-gfx/opencsg", "media-gfx/openmesh", "media-gfx/openscad", "media-gfx/openscad", "media-gfx/opentoonz", "media-gfx/openvdb", "media-gfx/openvdb", "media-gfx/openvdb", "media-gfx/optipng", "media-gfx/panini", "media-gfx/pdf2svg", "media-gfx/pencil", "media-gfx/peps", "media-gfx/photopc", "media-gfx/photoqt", "media-gfx/phototonic", "media-gfx/pixels2pgf", "media-gfx/pixels2pgf", "media-gfx/plantuml", "media-gfx/png2ico", "media-gfx/pngcheck", "media-gfx/pngcrush", "media-gfx/pngnq", "media-gfx/pngquant", "media-gfx/pngquant", "media-gfx/pngrewrite", "media-gfx/pngtoico", "media-gfx/pngtools", "media-gfx/potrace", "media-gfx/potrace", "media-gfx/povray", "media-gfx/pqiv", "media-gfx/pqiv", "media-gfx/pqstego", "media-gfx/propaganda", "media-gfx/prusaslicer", "media-gfx/psftools", "media-gfx/pstoedit", "media-gfx/qimgv", "media-gfx/qiv", "media-gfx/qrencode", "media-gfx/quat", "media-gfx/qvv", "media-gfx/raw-thumbnailer", "media-gfx/rawtherapee", "media-gfx/rawtherapee", "media-gfx/recoverjpeg", "media-gfx/ristretto", "media-gfx/ristretto", "media-gfx/rotoscope", "media-gfx/sam2p", "media-gfx/sane-backends", "media-gfx/sane-frontends", "media-gfx/scantailor-advanced", "media-gfx/scour", "media-gfx/scrot", "media-gfx/scrot", "media-gfx/sfftobmp", "media-gfx/shotwell", "media-gfx/shotwell", "media-gfx/simple-scan", "media-gfx/slic3r", "media-gfx/slic3r", "media-gfx/slic3r", "media-gfx/solvespace", "media-gfx/solvespace", "media-gfx/springgraph", "media-gfx/svg2rlg", "media-gfx/sxiv", "media-gfx/sxiv", "media-gfx/symboleditor", "media-gfx/tachyon", "media-gfx/termtosvg", "media-gfx/tgif", "media-gfx/tif22pnm", "media-gfx/tintii", "media-gfx/transfig", "media-gfx/ttygif", "media-gfx/tuxpaint-stamps", "media-gfx/tuxpaint", "media-gfx/valentina", "media-gfx/valentina", "media-gfx/viewer", "media-gfx/viewnior", "media-gfx/w3mimgfb", "media-gfx/waifu2x-ncnn-vulkan", "media-gfx/wings", "media-gfx/word_cloud", "media-gfx/xdot", "media-gfx/xdot", "media-gfx/xfig", "media-gfx/xli", "media-gfx/xloadimage", "media-gfx/xpaint", "media-gfx/xsane", "media-gfx/xv", "media-gfx/xzgv", "media-gfx/yafaray", "media-gfx/yafaray", "media-gfx/zbar", "media-gfx/zgv", "media-libs/Field3D", "media-libs/SoQt", "media-libs/SoXt", "media-libs/a52dec", "media-libs/aalib", "media-libs/aften", "media-libs/allegro", "media-libs/allegro", "media-libs/allegro", "media-libs/alsa-lib", "media-libs/alsa-lib", "media-libs/alsa-lib", "media-libs/alsa-oss", "media-libs/alsa-topology-conf", "media-libs/alsa-topology-conf", "media-libs/alsa-topology-conf", "media-libs/alsa-ucm-conf", "media-libs/alsa-ucm-conf", "media-libs/alsa-ucm-conf", "media-libs/alure", "media-libs/ampache_browser", "media-libs/aribb24", "media-libs/assimp", "media-libs/aubio", "media-libs/audiofile", "media-libs/avidemux-core", "media-libs/avidemux-plugins", "media-libs/babl", "media-libs/babl", "media-libs/babl", "media-libs/bcg729", "media-libs/bio2jack", "media-libs/blib", "media-libs/cal3d", "media-libs/chromaprint", "media-libs/cimg", "media-libs/clutter-gst", "media-libs/clutter-gtk", "media-libs/clutter", "media-libs/codec2", "media-libs/codec2", "media-libs/cogl", "media-libs/coin", "media-libs/compface", "media-libs/ctl", "media-libs/ctl", "media-libs/dav1d", "media-libs/dav1d", "media-libs/dav1d", "media-libs/dav1d", "media-libs/dav1d", "media-libs/devil", "media-libs/dssi", "media-libs/dumb", "media-libs/dumb", "media-libs/elgato-streamdeck", "media-libs/elgato-streamdeck", "media-libs/elles_icc_profiles", "media-libs/embree", "media-libs/esdl", "media-libs/exempi", "media-libs/exiftool", "media-libs/faac", "media-libs/faad2", "media-libs/fdk-aac", "media-libs/ffmpegsource", "media-libs/ffmpegsource", "media-libs/fidlib", "media-libs/flac", "media-libs/flickcurl", "media-libs/fluidsynth-dssi", "media-libs/fontconfig", "media-libs/fontconfig", "media-libs/freealut", "media-libs/freeglut", "media-libs/freeimage", "media-libs/freetype", "media-libs/freetype", "media-libs/freetype", "media-libs/freetype", "media-libs/freeverb3", "media-libs/ftgl", "media-libs/game-music-emu", "media-libs/ganv", "media-libs/gavl", "media-libs/gd", "media-libs/gd", "media-libs/gd", "media-libs/gegl", "media-libs/gegl", "media-libs/gegl", "media-libs/gegl", "media-libs/gexiv2", "media-libs/giblib", "media-libs/giflib", "media-libs/glew", "media-libs/glew", "media-libs/glew", "media-libs/glfw", "media-libs/glfw", "media-libs/glm", "media-libs/glm", "media-libs/glm", "media-libs/glm", "media-libs/glpng", "media-libs/glu", "media-libs/glu", "media-libs/glyr", "media-libs/gmmlib", "media-libs/gmmlib", "media-libs/gmmlib", "media-libs/gmmlib", "media-libs/gmmlib", "media-libs/gmmlib", "media-libs/gmmlib", "media-libs/gmmlib", "media-libs/gnonlin", "media-libs/graphene", "media-libs/grilo", "media-libs/gsound", "media-libs/gst-plugins-bad", "media-libs/gst-plugins-bad", "media-libs/gst-plugins-base", "media-libs/gst-plugins-base", "media-libs/gst-plugins-good", "media-libs/gst-plugins-good", "media-libs/gst-plugins-ugly", "media-libs/gst-plugins-ugly", "media-libs/gst-rtsp-server", "media-libs/gst-rtsp-server", "media-libs/gstreamer-editing-services", "media-libs/gstreamer", "media-libs/gstreamer", "media-libs/guilib", "media-libs/gupnp-dlna", "media-libs/gupnp-dlna", "media-libs/hamlib", "media-libs/hamlib", "media-libs/harfbuzz", "media-libs/harfbuzz", "media-libs/harfbuzz", "media-libs/harfbuzz", "media-libs/harfbuzz", "media-libs/icc-profiles-basiccolor-printing2009", "media-libs/icc-profiles-openicc", "media-libs/icclib", "media-libs/id3lib", "media-libs/ilmbase", "media-libs/ilmbase", "media-libs/imlib", "media-libs/imlib2", "media-libs/imlib2", "media-libs/intel-mediasdk", "media-libs/intel-mediasdk", "media-libs/jbig2dec", "media-libs/jbig2dec", "media-libs/jbig2enc", "media-libs/jbig2enc", "media-libs/jbigkit", "media-libs/kcolorpicker", "media-libs/kcolorpicker", "media-libs/kimageannotator", "media-libs/kimageannotator", "media-libs/kimageannotator", "media-libs/kodi-platform", "media-libs/kquickimageeditor", "media-libs/kvazaar", "media-libs/kvazaar", "media-libs/kvazaar", "media-libs/ladspa-sdk", "media-libs/lasi", "media-libs/lastfmlib", "media-libs/lcms", "media-libs/lcms", "media-libs/lensfun", "media-libs/leptonica", "media-libs/leptonica", "media-libs/leptonica", "media-libs/lib3ds", "media-libs/lib3ds", "media-libs/lib3mf", "media-libs/libaacplus", "media-libs/libaacs", "media-libs/libafterimage", "media-libs/libafterimage", "media-libs/libao", "media-libs/libaom", "media-libs/libaom", "media-libs/libaom", "media-libs/libaom", "media-libs/libaom", "media-libs/libaom", "media-libs/libart_lgpl", "media-libs/libass", "media-libs/libavif", "media-libs/libavif", "media-libs/libavif", "media-libs/libavif", "media-libs/libavif", "media-libs/libbdplus", "media-libs/libbdplus", "media-libs/libbluray", "media-libs/libbluray", "media-libs/libbluray", "media-libs/libbluray", "media-libs/libbs2b", "media-libs/libbsb", "media-libs/libcaca", "media-libs/libcanberra", "media-libs/libcdaudio", "media-libs/libcddb", "media-libs/libcdr", "media-libs/libcdr", "media-libs/libchamplain", "media-libs/libclastfm", "media-libs/libcue", "media-libs/libcuefile", "media-libs/libdc1394", "media-libs/libdc1394", "media-libs/libdca", "media-libs/libde265", "media-libs/libde265", "media-libs/libdiscid", "media-libs/libdmtx", "media-libs/libdv", "media-libs/libdvbcsa", "media-libs/libdvbcsa", "media-libs/libdvbpsi", "media-libs/libdvbpsi", "media-libs/libdvd-audio", "media-libs/libdvdcss", "media-libs/libdvdcss", "media-libs/libdvdnav", "media-libs/libdvdnav", "media-libs/libdvdnav", "media-libs/libdvdread", "media-libs/libdvdread", "media-libs/libdvdread", "media-libs/libebur128", "media-libs/libemf", "media-libs/libeot", "media-libs/libeot", "media-libs/libepoxy", "media-libs/libepoxy", "media-libs/libepoxy", "media-libs/libexif", "media-libs/libextractor", "media-libs/libfame", "media-libs/libffado", "media-libs/libfishsound", "media-libs/libfpx", "media-libs/libfreehand", "media-libs/libfreehand", "media-libs/libggi", "media-libs/libggigcp", "media-libs/libggimisc", "media-libs/libggiwmh", "media-libs/libgig", "media-libs/libgig", "media-libs/libgii", "media-libs/libglvnd", "media-libs/libglvnd", "media-libs/libglvnd", "media-libs/libgphoto2", "media-libs/libgpod", "media-libs/libgroove", "media-libs/libharu", "media-libs/libhdhomerun", "media-libs/libhdhomerun", "media-libs/libheif", "media-libs/libheif", "media-libs/libicns", "media-libs/libid3tag", "media-libs/libid3tag", "media-libs/libiec61883", "media-libs/libifp", "media-libs/libilbc", "media-libs/libilbc", "media-libs/libinsane", "media-libs/libinsane", "media-libs/libinsane", "media-libs/libiptcdata", "media-libs/libirman", "media-libs/libjpeg-turbo", "media-libs/libjpeg-turbo", "media-libs/libjpeg-turbo", "media-libs/libjsw", "media-libs/libkate", "media-libs/libkeyfinder", "media-libs/libkeyfinder", "media-libs/liblastfm", "media-libs/libldac", "media-libs/liblingoteach", "media-libs/liblo", "media-libs/liblqr", "media-libs/liblrdf", "media-libs/liblscp", "media-libs/liblscp", "media-libs/libltc", "media-libs/libltc", "media-libs/libmad", "media-libs/libmatemixer", "media-libs/libmatroska", "media-libs/libmatroska", "media-libs/libmediaart", "media-libs/libmediainfo", "media-libs/libmetalink", "media-libs/libmikmod", "media-libs/libmms", "media-libs/libmng", "media-libs/libmodplug", "media-libs/libmp3splt", "media-libs/libmp4v2", "media-libs/libmpd", "media-libs/libmpdclient", "media-libs/libmpeg2", "media-libs/libmpeg3", "media-libs/libmpris2client", "media-libs/libmtp", "media-libs/libmtp", "media-libs/libmygpo-qt", "media-libs/libmygpo-qt", "media-libs/libmypaint", "media-libs/libnjb", "media-libs/libnsbmp", "media-libs/libnsgif", "media-libs/libnspsl", "media-libs/libofa", "media-libs/libogg", "media-libs/liboggz", "media-libs/libopenaptx", "media-libs/libopenaptx", "media-libs/libopenaptx", "media-libs/libopenglrecorder", "media-libs/libopenmpt", "media-libs/libopenraw", "media-libs/libopenshot-audio", "media-libs/libopenshot", "media-libs/libopusenc", "media-libs/libpagemaker", "media-libs/libpagemaker", "media-libs/libpano13", "media-libs/libpano13", "media-libs/libpgf", "media-libs/libplacebo", "media-libs/libplacebo", "media-libs/libplacebo", "media-libs/libplacebo", "media-libs/libplacebo", "media-libs/libpng-compat", "media-libs/libpng-compat", "media-libs/libpng", "media-libs/libpqstego", "media-libs/libprojectm", "media-libs/libprojectm", "media-libs/libqaccessibilityclient", "media-libs/libquicktime", "media-libs/libquvi-scripts", "media-libs/libquvi", "media-libs/libraw", "media-libs/libreplaygain", "media-libs/librosprite", "media-libs/libsamplerate", "media-libs/libsamplerate", "media-libs/libsbsms", "media-libs/libsdl", "media-libs/libsdl2", "media-libs/libsdl2", "media-libs/libsdl2", "media-libs/libsfml", "media-libs/libshout", "media-libs/libsidplay", "media-libs/libsidplay", "media-libs/libsidplayfp", "media-libs/libsidplayfp", "media-libs/libsixel", "media-libs/libsmf", "media-libs/libsndfile", "media-libs/libsndfile", "media-libs/libsoundio", "media-libs/libsoundtouch", "media-libs/libsoundtouch", "media-libs/libsvgtiny", "media-libs/libtaginfo", "media-libs/libtgvoip", "media-libs/libtheora", "media-libs/libtiger", "media-libs/libtimidity", "media-libs/libuninameslist", "media-libs/libuninameslist", "media-libs/libuninameslist", "media-libs/libuvc", "media-libs/libv4l", "media-libs/libvisio", "media-libs/libvisio", "media-libs/libvisual", "media-libs/libvorbis", "media-libs/libvpx", "media-libs/libvpx", "media-libs/libvpx", "media-libs/libwebp", "media-libs/libwebp", "media-libs/libwmf", "media-libs/libxmi", "media-libs/libxspf", "media-libs/libxtract", "media-libs/libyami", "media-libs/libyami", "media-libs/libzen", "media-libs/libzmf", "media-libs/libzmf", "media-libs/lilv", "media-libs/lsp-plugins", "media-libs/lsp-plugins", "media-libs/lsp-plugins", "media-libs/lsp-plugins", "media-libs/lv2", "media-libs/lvtk", "media-libs/mesa", "media-libs/mesa", "media-libs/mesa", "media-libs/mlt", "media-libs/mlt", "media-libs/munt-mt32emu", "media-libs/munt-mt32emu", "media-libs/musicbrainz", "media-libs/mutagen", "media-libs/nas", "media-libs/netpbm", "media-libs/netpbm", "media-libs/netpbm", "media-libs/noise-suppression-for-voice", "media-libs/noise-suppression-for-voice", "media-libs/noise-suppression-for-voice", "media-libs/nv-codec-headers", "media-libs/nv-codec-headers", "media-libs/nv-codec-headers", "media-libs/nv-codec-headers", "media-libs/nv-codec-headers", "media-libs/nv-codec-headers", "media-libs/oidn", "media-libs/oidn", "media-libs/openal", "media-libs/opencollada", "media-libs/opencolorio", "media-libs/opencolorio", "media-libs/opencolorio", "media-libs/opencore-amr", "media-libs/openctm", "media-libs/opencv", "media-libs/opencv", "media-libs/opencv", "media-libs/openexr", "media-libs/openexr", "media-libs/openexr", "media-libs/openexr", "media-libs/openglide", "media-libs/openh264", "media-libs/openimageio", "media-libs/openimageio", "media-libs/openimageio", "media-libs/openimageio", "media-libs/openimageio", "media-libs/openjpeg", "media-libs/opensubdiv", "media-libs/opus", "media-libs/opusfile", "media-libs/osl", "media-libs/osl", "media-libs/osl", "media-libs/partio", "media-libs/partio", "media-libs/pcaudiolib", "media-libs/phat", "media-libs/phonon-gstreamer", "media-libs/phonon-vlc", "media-libs/phonon", "media-libs/plib", "media-libs/plib", "media-libs/plotutils", "media-libs/pnglite", "media-libs/portaudio", "media-libs/portmidi", "media-libs/ptex", "media-libs/pulseaudio-qt", "media-libs/qhull", "media-libs/qtav", "media-libs/quarter", "media-libs/quesoglc", "media-libs/quesoglc", "media-libs/quvi", "media-libs/raptor", "media-libs/raspberrypi-userland-bin", "media-libs/raspberrypi-userland", "media-libs/raspberrypi-userland", "media-libs/raspberrypi-userland", "media-libs/resid", "media-libs/rlottie", "media-libs/rnnoise", "media-libs/rtaudio", "media-libs/rubberband", "media-libs/sbc", "media-libs/sdl-gfx", "media-libs/sdl-image", "media-libs/sdl-mixer", "media-libs/sdl-net", "media-libs/sdl-net", "media-libs/sdl-pango", "media-libs/sdl-sound", "media-libs/sdl-terminal", "media-libs/sdl-ttf", "media-libs/sdl2-gfx", "media-libs/sdl2-image", "media-libs/sdl2-mixer", "media-libs/sdl2-net", "media-libs/sdl2-ttf", "media-libs/sg", "media-libs/sge", "media-libs/shaderc", "media-libs/shaderc", "media-libs/shaderc", "media-libs/simage", "media-libs/simage", "media-libs/simage", "media-libs/smpeg", "media-libs/smpeg", "media-libs/smpeg2", "media-libs/smpeg2", "media-libs/soxr", "media-libs/spandsp", "media-libs/speex", "media-libs/speexdsp", "media-libs/sratom", "media-libs/stimg", "media-libs/stk", "media-libs/stops", "media-libs/suil", "media-libs/svgalib", "media-libs/svt-av1", "media-libs/svt-av1", "media-libs/t1lib", "media-libs/taglib-extras", "media-libs/taglib", "media-libs/tg_owt", "media-libs/theoraplay", "media-libs/tiff", "media-libs/tremor", "media-libs/tse3", "media-libs/urt", "media-libs/vamp-plugin-sdk", "media-libs/vidstab", "media-libs/vidstab", "media-libs/vigra", "media-libs/vigra", "media-libs/virglrenderer", "media-libs/virglrenderer", "media-libs/virglrenderer", "media-libs/vitamtp", "media-libs/vitamtp", "media-libs/vo-aacenc", "media-libs/vo-aacenc", "media-libs/vo-amrwbenc", "media-libs/vo-amrwbenc", "media-libs/volpack", "media-libs/vulkan-layers", "media-libs/vulkan-layers", "media-libs/vulkan-layers", "media-libs/vulkan-loader", "media-libs/vulkan-loader", "media-libs/vulkan-loader", "media-libs/waffle", "media-libs/waffle", "media-libs/webrtc-audio-processing", "media-libs/woff2", "media-libs/woff2", "media-libs/wxsvg", "media-libs/x264", "media-libs/x264", "media-libs/x265", "media-libs/x265", "media-libs/x265", "media-libs/xine-lib", "media-libs/xine-lib", "media-libs/xine-lib", "media-libs/xvid", "media-libs/zimg", "media-libs/zimg", "media-libs/zimg", "media-libs/zimg", "media-libs/zita-alsa-pcmi", "media-libs/zita-convolver", "media-libs/zita-resampler", "media-libs/zmusic", "media-libs/zvbi", "media-libs/zxing-cpp", "media-libs/libfreeaptx", "media-libs/libfreeaptx", "media-plugins/alsa-plugins", "media-plugins/alsa-plugins", "media-plugins/alsaequal", "media-plugins/amb-plugins", "media-plugins/ams-lv2", "media-plugins/audacious-plugins", "media-plugins/audacious-plugins", "media-plugins/audacious-plugins", "media-plugins/calf", "media-plugins/calf", "media-plugins/caps-plugins", "media-plugins/cmt-plugins", "media-plugins/fil-plugins", "media-plugins/frei0r-plugins", "media-plugins/g2reverb", "media-plugins/gimp-lqr", "media-plugins/gkrellmpc", "media-plugins/gmpc-alarm", "media-plugins/gmpc-albumview", "media-plugins/gmpc-avahi", "media-plugins/gmpc-awn", "media-plugins/gmpc-discogs", "media-plugins/gmpc-extraplaylist", "media-plugins/gmpc-jamendo", "media-plugins/gmpc-last-fm", "media-plugins/gmpc-libnotify", "media-plugins/gmpc-lyrics", "media-plugins/gmpc-lyricwiki", "media-plugins/gmpc-magnatune", "media-plugins/gmpc-mdcover", "media-plugins/gmpc-mmkeys", "media-plugins/gmpc-mserver", "media-plugins/gmpc-playlistsort", "media-plugins/gmpc-shout", "media-plugins/gmpc-tagedit", "media-plugins/grilo-plugins", "media-plugins/gst-plugins-a52dec", "media-plugins/gst-plugins-a52dec", "media-plugins/gst-plugins-amr", "media-plugins/gst-plugins-amr", "media-plugins/gst-plugins-aom", "media-plugins/gst-plugins-assrender", "media-plugins/gst-plugins-assrender", "media-plugins/gst-plugins-bluez", "media-plugins/gst-plugins-bluez", "media-plugins/gst-plugins-bs2b", "media-plugins/gst-plugins-bs2b", "media-plugins/gst-plugins-cairo", "media-plugins/gst-plugins-cairo", "media-plugins/gst-plugins-cdio", "media-plugins/gst-plugins-cdio", "media-plugins/gst-plugins-cdparanoia", "media-plugins/gst-plugins-cdparanoia", "media-plugins/gst-plugins-chromaprint", "media-plugins/gst-plugins-chromaprint", "media-plugins/gst-plugins-colormanagement", "media-plugins/gst-plugins-colormanagement", "media-plugins/gst-plugins-dash", "media-plugins/gst-plugins-dash", "media-plugins/gst-plugins-dtls", "media-plugins/gst-plugins-dtls", "media-plugins/gst-plugins-dts", "media-plugins/gst-plugins-dts", "media-plugins/gst-plugins-dv", "media-plugins/gst-plugins-dv", "media-plugins/gst-plugins-dvb", "media-plugins/gst-plugins-dvb", "media-plugins/gst-plugins-dvdread", "media-plugins/gst-plugins-dvdread", "media-plugins/gst-plugins-faac", "media-plugins/gst-plugins-faac", "media-plugins/gst-plugins-faad", "media-plugins/gst-plugins-faad", "media-plugins/gst-plugins-flac", "media-plugins/gst-plugins-flac", "media-plugins/gst-plugins-gdkpixbuf", "media-plugins/gst-plugins-gdkpixbuf", "media-plugins/gst-plugins-gtk", "media-plugins/gst-plugins-gtk", "media-plugins/gst-plugins-hls", "media-plugins/gst-plugins-hls", "media-plugins/gst-plugins-jack", "media-plugins/gst-plugins-jack", "media-plugins/gst-plugins-jpeg", "media-plugins/gst-plugins-jpeg", "media-plugins/gst-plugins-kate", "media-plugins/gst-plugins-kate", "media-plugins/gst-plugins-ladspa", "media-plugins/gst-plugins-ladspa", "media-plugins/gst-plugins-lame", "media-plugins/gst-plugins-lame", "media-plugins/gst-plugins-libav", "media-plugins/gst-plugins-libav", "media-plugins/gst-plugins-libde265", "media-plugins/gst-plugins-libde265", "media-plugins/gst-plugins-libmms", "media-plugins/gst-plugins-libmms", "media-plugins/gst-plugins-libnice", "media-plugins/gst-plugins-libpng", "media-plugins/gst-plugins-libpng", "media-plugins/gst-plugins-libvisual", "media-plugins/gst-plugins-libvisual", "media-plugins/gst-plugins-lv2", "media-plugins/gst-plugins-lv2", "media-plugins/gst-plugins-meta", "media-plugins/gst-plugins-meta", "media-plugins/gst-plugins-modplug", "media-plugins/gst-plugins-modplug", "media-plugins/gst-plugins-mpeg2dec", "media-plugins/gst-plugins-mpeg2dec", "media-plugins/gst-plugins-mpeg2enc", "media-plugins/gst-plugins-mpeg2enc", "media-plugins/gst-plugins-mpg123", "media-plugins/gst-plugins-mpg123", "media-plugins/gst-plugins-mplex", "media-plugins/gst-plugins-mplex", "media-plugins/gst-plugins-neon", "media-plugins/gst-plugins-neon", "media-plugins/gst-plugins-ofa", "media-plugins/gst-plugins-ofa", "media-plugins/gst-plugins-opencv", "media-plugins/gst-plugins-opencv", "media-plugins/gst-plugins-openh264", "media-plugins/gst-plugins-openh264", "media-plugins/gst-plugins-opus", "media-plugins/gst-plugins-opus", "media-plugins/gst-plugins-oss", "media-plugins/gst-plugins-oss", "media-plugins/gst-plugins-pulse", "media-plugins/gst-plugins-pulse", "media-plugins/gst-plugins-raw1394", "media-plugins/gst-plugins-raw1394", "media-plugins/gst-plugins-resindvd", "media-plugins/gst-plugins-resindvd", "media-plugins/gst-plugins-rtmp", "media-plugins/gst-plugins-rtmp", "media-plugins/gst-plugins-shout2", "media-plugins/gst-plugins-shout2", "media-plugins/gst-plugins-sidplay", "media-plugins/gst-plugins-sidplay", "media-plugins/gst-plugins-smoothstreaming", "media-plugins/gst-plugins-smoothstreaming", "media-plugins/gst-plugins-sndio", "media-plugins/gst-plugins-soundtouch", "media-plugins/gst-plugins-soundtouch", "media-plugins/gst-plugins-soup", "media-plugins/gst-plugins-soup", "media-plugins/gst-plugins-speex", "media-plugins/gst-plugins-speex", "media-plugins/gst-plugins-srt", "media-plugins/gst-plugins-srt", "media-plugins/gst-plugins-srtp", "media-plugins/gst-plugins-srtp", "media-plugins/gst-plugins-taglib", "media-plugins/gst-plugins-taglib", "media-plugins/gst-plugins-twolame", "media-plugins/gst-plugins-twolame", "media-plugins/gst-plugins-uvch264", "media-plugins/gst-plugins-uvch264", "media-plugins/gst-plugins-v4l2", "media-plugins/gst-plugins-v4l2", "media-plugins/gst-plugins-vaapi", "media-plugins/gst-plugins-vaapi", "media-plugins/gst-plugins-voaacenc", "media-plugins/gst-plugins-voaacenc", "media-plugins/gst-plugins-voamrwbenc", "media-plugins/gst-plugins-voamrwbenc", "media-plugins/gst-plugins-vpx", "media-plugins/gst-plugins-vpx", "media-plugins/gst-plugins-wavpack", "media-plugins/gst-plugins-wavpack", "media-plugins/gst-plugins-webrtc", "media-plugins/gst-plugins-webrtc", "media-plugins/gst-plugins-x264", "media-plugins/gst-plugins-x264", "media-plugins/gst-plugins-x265", "media-plugins/gst-plugins-x265", "media-plugins/gst-plugins-ximagesrc", "media-plugins/gst-plugins-ximagesrc", "media-plugins/gst-plugins-zbar", "media-plugins/gst-plugins-zbar", "media-plugins/gst-transcoder", "media-plugins/hdx-realtime-media-engine", "media-plugins/hdx-realtime-media-engine", "media-plugins/hexter", "media-plugins/imlib2_loaders", "media-plugins/imlib2_loaders", "media-plugins/ir_lv2", "media-plugins/kodi-audiodecoder-modplug", "media-plugins/kodi-audiodecoder-modplug", "media-plugins/kodi-audiodecoder-nosefart", "media-plugins/kodi-audiodecoder-nosefart", "media-plugins/kodi-audiodecoder-sacd", "media-plugins/kodi-audiodecoder-sacd", "media-plugins/kodi-audiodecoder-sidplay", "media-plugins/kodi-audiodecoder-sidplay", "media-plugins/kodi-audiodecoder-snesapu", "media-plugins/kodi-audiodecoder-snesapu", "media-plugins/kodi-audiodecoder-stsound", "media-plugins/kodi-audiodecoder-stsound", "media-plugins/kodi-audiodecoder-timidity", "media-plugins/kodi-audiodecoder-timidity", "media-plugins/kodi-audiodecoder-vgmstream", "media-plugins/kodi-audiodecoder-vgmstream", "media-plugins/kodi-audioencoder-flac", "media-plugins/kodi-audioencoder-flac", "media-plugins/kodi-audioencoder-flac", "media-plugins/kodi-audioencoder-lame", "media-plugins/kodi-audioencoder-lame", "media-plugins/kodi-audioencoder-lame", "media-plugins/kodi-audioencoder-vorbis", "media-plugins/kodi-audioencoder-vorbis", "media-plugins/kodi-audioencoder-vorbis", "media-plugins/kodi-audioencoder-wav", "media-plugins/kodi-audioencoder-wav", "media-plugins/kodi-audioencoder-wav", "media-plugins/kodi-game-libretro-bnes", "media-plugins/kodi-game-libretro-bnes", "media-plugins/kodi-game-libretro-dosbox", "media-plugins/kodi-game-libretro-dosbox", "media-plugins/kodi-game-libretro-fceumm", "media-plugins/kodi-game-libretro-nestopia", "media-plugins/kodi-game-libretro-nestopia", "media-plugins/kodi-game-libretro-snes9x", "media-plugins/kodi-game-libretro-snes9x", "media-plugins/kodi-game-libretro-twentyfortyeight", "media-plugins/kodi-game-libretro-twentyfortyeight", "media-plugins/kodi-game-libretro", "media-plugins/kodi-game-libretro", "media-plugins/kodi-imagedecoder-heif", "media-plugins/kodi-imagedecoder-heif", "media-plugins/kodi-imagedecoder-heif", "media-plugins/kodi-imagedecoder-heif", "media-plugins/kodi-imagedecoder-raw", "media-plugins/kodi-imagedecoder-raw", "media-plugins/kodi-imagedecoder-raw", "media-plugins/kodi-inputstream-adaptive", "media-plugins/kodi-inputstream-adaptive", "media-plugins/kodi-inputstream-adaptive", "media-plugins/kodi-inputstream-adaptive", "media-plugins/kodi-inputstream-adaptive", "media-plugins/kodi-inputstream-adaptive", "media-plugins/kodi-inputstream-adaptive", "media-plugins/kodi-inputstream-ffmpegdirect", "media-plugins/kodi-inputstream-ffmpegdirect", "media-plugins/kodi-inputstream-ffmpegdirect", "media-plugins/kodi-inputstream-ffmpegdirect", "media-plugins/kodi-inputstream-ffmpegdirect", "media-plugins/kodi-inputstream-rtmp", "media-plugins/kodi-inputstream-rtmp", "media-plugins/kodi-inputstream-rtmp", "media-plugins/kodi-inputstream-rtmp", "media-plugins/kodi-peripheral-joystick", "media-plugins/kodi-peripheral-joystick", "media-plugins/kodi-peripheral-steamcontroller", "media-plugins/kodi-pvr-argustv", "media-plugins/kodi-pvr-argustv", "media-plugins/kodi-pvr-argustv", "media-plugins/kodi-pvr-argustv", "media-plugins/kodi-pvr-argustv", "media-plugins/kodi-pvr-argustv", "media-plugins/kodi-pvr-demo", "media-plugins/kodi-pvr-demo", "media-plugins/kodi-pvr-demo", "media-plugins/kodi-pvr-dvblink", "media-plugins/kodi-pvr-dvblink", "media-plugins/kodi-pvr-dvblink", "media-plugins/kodi-pvr-dvblink", "media-plugins/kodi-pvr-dvblink", "media-plugins/kodi-pvr-dvbviewer", "media-plugins/kodi-pvr-dvbviewer", "media-plugins/kodi-pvr-dvbviewer", "media-plugins/kodi-pvr-dvbviewer", "media-plugins/kodi-pvr-dvbviewer", "media-plugins/kodi-pvr-dvbviewer", "media-plugins/kodi-pvr-dvbviewer", "media-plugins/kodi-pvr-dvbviewer", "media-plugins/kodi-pvr-filmon", "media-plugins/kodi-pvr-filmon", "media-plugins/kodi-pvr-filmon", "media-plugins/kodi-pvr-filmon", "media-plugins/kodi-pvr-filmon", "media-plugins/kodi-pvr-hts", "media-plugins/kodi-pvr-hts", "media-plugins/kodi-pvr-hts", "media-plugins/kodi-pvr-hts", "media-plugins/kodi-pvr-hts", "media-plugins/kodi-pvr-hts", "media-plugins/kodi-pvr-hts", "media-plugins/kodi-pvr-iptvsimple", "media-plugins/kodi-pvr-iptvsimple", "media-plugins/kodi-pvr-iptvsimple", "media-plugins/kodi-pvr-iptvsimple", "media-plugins/kodi-pvr-iptvsimple", "media-plugins/kodi-pvr-iptvsimple", "media-plugins/kodi-pvr-mediaportal-tvserver", "media-plugins/kodi-pvr-mediaportal-tvserver", "media-plugins/kodi-pvr-mediaportal-tvserver", "media-plugins/kodi-pvr-mythtv", "media-plugins/kodi-pvr-mythtv", "media-plugins/kodi-pvr-nextpvr", "media-plugins/kodi-pvr-nextpvr", "media-plugins/kodi-pvr-nextpvr", "media-plugins/kodi-pvr-nextpvr", "media-plugins/kodi-pvr-nextpvr", "media-plugins/kodi-pvr-njoy", "media-plugins/kodi-pvr-njoy", "media-plugins/kodi-pvr-njoy", "media-plugins/kodi-pvr-njoy", "media-plugins/kodi-pvr-pctv", "media-plugins/kodi-pvr-pctv", "media-plugins/kodi-pvr-pctv", "media-plugins/kodi-pvr-pctv", "media-plugins/kodi-pvr-stalker", "media-plugins/kodi-pvr-stalker", "media-plugins/kodi-pvr-stalker", "media-plugins/kodi-pvr-stalker", "media-plugins/kodi-pvr-stalker", "media-plugins/kodi-pvr-stalker", "media-plugins/kodi-pvr-vbox", "media-plugins/kodi-pvr-vbox", "media-plugins/kodi-pvr-vbox", "media-plugins/kodi-pvr-vbox", "media-plugins/kodi-pvr-vbox", "media-plugins/kodi-pvr-vbox", "media-plugins/kodi-pvr-vbox", "media-plugins/kodi-pvr-vbox", "media-plugins/kodi-pvr-vdr-vnsi", "media-plugins/kodi-pvr-vdr-vnsi", "media-plugins/kodi-pvr-vdr-vnsi", "media-plugins/kodi-pvr-vuplus", "media-plugins/kodi-pvr-vuplus", "media-plugins/kodi-pvr-vuplus", "media-plugins/kodi-pvr-vuplus", "media-plugins/kodi-pvr-vuplus", "media-plugins/kodi-pvr-vuplus", "media-plugins/kodi-pvr-vuplus", "media-plugins/kodi-pvr-wmc", "media-plugins/kodi-pvr-wmc", "media-plugins/kodi-pvr-wmc", "media-plugins/kodi-pvr-zattoo", "media-plugins/kodi-pvr-zattoo", "media-plugins/kodi-screensaver-asteroids", "media-plugins/kodi-screensaver-asteroids", "media-plugins/kodi-screensaver-asterwave", "media-plugins/kodi-screensaver-asterwave", "media-plugins/kodi-screensaver-biogenesis", "media-plugins/kodi-screensaver-biogenesis", "media-plugins/kodi-screensaver-cpblobs", "media-plugins/kodi-screensaver-cpblobs", "media-plugins/kodi-screensaver-greynetic", "media-plugins/kodi-screensaver-greynetic", "media-plugins/kodi-screensaver-matrixtrails", "media-plugins/kodi-screensaver-matrixtrails", "media-plugins/kodi-screensaver-pingpong", "media-plugins/kodi-screensaver-pingpong", "media-plugins/kodi-screensaver-pyro", "media-plugins/kodi-screensaver-pyro", "media-plugins/kodi-screensaver-shadertoy", "media-plugins/kodi-screensaver-shadertoy", "media-plugins/kodi-screensaver-stars", "media-plugins/kodi-screensaver-stars", "media-plugins/kodi-vfs-libarchive", "media-plugins/kodi-vfs-libarchive", "media-plugins/kodi-vfs-rar", "media-plugins/kodi-vfs-rar", "media-plugins/kodi-vfs-sftp", "media-plugins/kodi-vfs-sftp", "media-plugins/kodi-visualization-fishbmc", "media-plugins/kodi-visualization-fishbmc", "media-plugins/kodi-visualization-goom", "media-plugins/kodi-visualization-goom", "media-plugins/kodi-visualization-projectm", "media-plugins/kodi-visualization-projectm", "media-plugins/kodi-visualization-shadertoy", "media-plugins/kodi-visualization-shadertoy", "media-plugins/kodi-visualization-shadertoy", "media-plugins/kodi-visualization-spectrum", "media-plugins/kodi-visualization-spectrum", "media-plugins/kodi-visualization-spectrum", "media-plugins/kodi-visualization-starburst", "media-plugins/kodi-visualization-starburst", "media-plugins/kodi-visualization-starburst", "media-plugins/kodi-visualization-starburst", "media-plugins/kodi-visualization-waveform", "media-plugins/kodi-visualization-waveform", "media-plugins/kodi-visualization-waveform", "media-plugins/ladspa-bs2b", "media-plugins/libvisual-plugins", "media-plugins/libvisual-projectm", "media-plugins/live", "media-plugins/mcp-plugins", "media-plugins/mda-lv2", "media-plugins/mythplugins", "media-plugins/mythplugins", "media-plugins/noise-repellent", "media-plugins/qmmp-plugin-pack", "media-plugins/rev-plugins", "media-plugins/swh-lv2", "media-plugins/swh-plugins", "media-plugins/tap-plugins", "media-plugins/tap-plugins", "media-plugins/vamp-aubio-plugins", "media-plugins/vamp-aubio-plugins", "media-plugins/vamp-libxtract-plugins", "media-plugins/vco-plugins", "media-plugins/vdr-actuator", "media-plugins/vdr-actuator", "media-plugins/vdr-avards", "media-plugins/vdr-avards", "media-plugins/vdr-beep", "media-plugins/vdr-burn-templates", "media-plugins/vdr-burn", "media-plugins/vdr-burn", "media-plugins/vdr-calc", "media-plugins/vdr-cdplayer", "media-plugins/vdr-cinebars", "media-plugins/vdr-clock", "media-plugins/vdr-ddci2", "media-plugins/vdr-ddci2", "media-plugins/vdr-ddci2", "media-plugins/vdr-devstatus", "media-plugins/vdr-dummydevice", "media-plugins/vdr-duplicates", "media-plugins/vdr-duplicates", "media-plugins/vdr-duplicates", "media-plugins/vdr-duplicates", "media-plugins/vdr-dvbapi", "media-plugins/vdr-dvbapi", "media-plugins/vdr-dvbhddevice", "media-plugins/vdr-dvbhddevice", "media-plugins/vdr-dvbsddevice", "media-plugins/vdr-dvbsddevice", "media-plugins/vdr-dvd", "media-plugins/vdr-dvd", "media-plugins/vdr-dvdswitch", "media-plugins/vdr-dvdswitch", "media-plugins/vdr-epgsearch", "media-plugins/vdr-epgsearch", "media-plugins/vdr-epgsearch", "media-plugins/vdr-epgsync", "media-plugins/vdr-epgsync", "media-plugins/vdr-exec", "media-plugins/vdr-extrecmenu", "media-plugins/vdr-extrecmenu", "media-plugins/vdr-femon", "media-plugins/vdr-femon", "media-plugins/vdr-femon", "media-plugins/vdr-ffnetdev", "media-plugins/vdr-filebrowser", "media-plugins/vdr-freecell", "media-plugins/vdr-freecell", "media-plugins/vdr-fritzbox", "media-plugins/vdr-fritzbox", "media-plugins/vdr-graphlcd", "media-plugins/vdr-imonlcd", "media-plugins/vdr-iptv", "media-plugins/vdr-iptv", "media-plugins/vdr-joystick", "media-plugins/vdr-launcher", "media-plugins/vdr-lcdproc", "media-plugins/vdr-lcdproc", "media-plugins/vdr-live", "media-plugins/vdr-loadepg", "media-plugins/vdr-menuorg", "media-plugins/vdr-mlist", "media-plugins/vdr-mp3ng", "media-plugins/vdr-mplayer", "media-plugins/vdr-newsticker", "media-plugins/vdr-noepg", "media-plugins/vdr-noepg", "media-plugins/vdr-osdserver", "media-plugins/vdr-osdteletext", "media-plugins/vdr-osdteletext", "media-plugins/vdr-osdteletext", "media-plugins/vdr-osdteletext", "media-plugins/vdr-osdteletext", "media-plugins/vdr-peer", "media-plugins/vdr-permashift", "media-plugins/vdr-permashift", "media-plugins/vdr-pin", "media-plugins/vdr-pin", "media-plugins/vdr-powermate", "media-plugins/vdr-pvr350", "media-plugins/vdr-radio", "media-plugins/vdr-radio", "media-plugins/vdr-rcu", "media-plugins/vdr-recsearch", "media-plugins/vdr-remote", "media-plugins/vdr-remote", "media-plugins/vdr-remoteosd", "media-plugins/vdr-remoteosd", "media-plugins/vdr-remotetimers", "media-plugins/vdr-remotetimers", "media-plugins/vdr-rpihddevice", "media-plugins/vdr-rpihddevice", "media-plugins/vdr-rssreader", "media-plugins/vdr-rssreader", "media-plugins/vdr-rssreader", "media-plugins/vdr-rssreader", "media-plugins/vdr-satip", "media-plugins/vdr-satip", "media-plugins/vdr-scheduler", "media-plugins/vdr-scheduler", "media-plugins/vdr-screenshot", "media-plugins/vdr-serial", "media-plugins/vdr-skincurses", "media-plugins/vdr-skinelchi", "media-plugins/vdr-skinelchi", "media-plugins/vdr-skinsoppalusikka", "media-plugins/vdr-skinsoppalusikka", "media-plugins/vdr-skinsoppalusikka", "media-plugins/vdr-sleeptimer", "media-plugins/vdr-sleeptimer", "media-plugins/vdr-sndctl", "media-plugins/vdr-solitaire", "media-plugins/vdr-span", "media-plugins/vdr-streamdev", "media-plugins/vdr-streamdev", "media-plugins/vdr-streamdev", "media-plugins/vdr-suspendoutput", "media-plugins/vdr-svdrposd", "media-plugins/vdr-svdrpservice", "media-plugins/vdr-svdrpservice", "media-plugins/vdr-systeminfo", "media-plugins/vdr-ttxtsubs", "media-plugins/vdr-ttxtsubs", "media-plugins/vdr-undelete", "media-plugins/vdr-undelete", "media-plugins/vdr-undelete", "media-plugins/vdr-vaapidevice", "media-plugins/vdr-vcd", "media-plugins/vdr-vcd", "media-plugins/vdr-vdrmanager", "media-plugins/vdr-vompserver", "media-plugins/vdr-vompserver", "media-plugins/vdr-vompserver", "media-plugins/vdr-weatherng", "media-plugins/vdr-wirbelscan", "media-plugins/vdr-wirbelscan", "media-plugins/vdr-xineliboutput", "media-plugins/vdr-xineliboutput", "media-plugins/vdr-xineliboutput", "media-plugins/vdr-zappilot", "media-plugins/vdr-zappilot", "media-plugins/x42-avldrums", "media-plugins/x42-avldrums", "media-plugins/x42-plugins", "media-plugins/x42-plugins", "media-plugins/xsynth-dssi", "media-plugins/zam-plugins", "media-radio/KochMorse", "media-radio/adifmerg", "media-radio/ax25-apps", "media-radio/ax25-tools", "media-radio/cqrlog", "media-radio/cwdaemon", "media-radio/direwolf", "media-radio/dxcc", "media-radio/dxcc", "media-radio/flamp", "media-radio/flamp", "media-radio/fldigi", "media-radio/fldigi", "media-radio/fldigi", "media-radio/flmsg", "media-radio/flmsg", "media-radio/flrig", "media-radio/flrig", "media-radio/flrig", "media-radio/flrig", "media-radio/fsync-mdc1200-decode", "media-radio/fsync-mdc1200-decode", "media-radio/gpredict", "media-radio/gpredict", "media-radio/grig", "media-radio/ibp", "media-radio/js8call", "media-radio/qrq", "media-radio/qsstv", "media-radio/qsstv", "media-radio/svxlink", "media-radio/tlf", "media-radio/tlf", "media-radio/tqsl", "media-radio/tucnak", "media-radio/tucnak", "media-radio/tucnak", "media-radio/unixcw", "media-radio/wsjtx", "media-radio/wsjtx", "media-radio/xastir", "media-radio/xdx", "media-radio/xlog", "media-radio/xwxapt", "media-sound/SmarTagger", "media-sound/a2jmidid", "media-sound/a2jmidid", "media-sound/abcde", "media-sound/abcm2ps", "media-sound/abcmidi", "media-sound/aeolus", "media-sound/alac_decoder", "media-sound/alsa-tools", "media-sound/alsa-tools", "media-sound/alsa-utils", "media-sound/alsa-utils", "media-sound/alsa-utils", "media-sound/alsamixer-app", "media-sound/alsamixergui", "media-sound/alsaplayer", "media-sound/amsynth", "media-sound/apetag", "media-sound/apulse", "media-sound/aqualung", "media-sound/ardour", "media-sound/ardour", "media-sound/ardour", "media-sound/ario", "media-sound/aseqview", "media-sound/asunder", "media-sound/aucatctl", "media-sound/aucdtect", "media-sound/audacious", "media-sound/audacious", "media-sound/audacious", "media-sound/audacity", "media-sound/audex", "media-sound/audicle", "media-sound/audiocompress", "media-sound/audiotag", "media-sound/audiotools", "media-sound/aumix", "media-sound/awesfx", "media-sound/aylet", "media-sound/baudline", "media-sound/beets", "media-sound/beets", "media-sound/bempc", "media-sound/bitmeter", "media-sound/bluez-alsa", "media-sound/bluez-alsa", "media-sound/bluez-alsa", "media-sound/bplay", "media-sound/bpmdetect", "media-sound/bristol", "media-sound/brutefir", "media-sound/cadence", "media-sound/cadence", "media-sound/cantata", "media-sound/cd-discid", "media-sound/cdcd", "media-sound/cdparanoia", "media-sound/cdplay", "media-sound/cdstatus", "media-sound/cdtool", "media-sound/chordii", "media-sound/chuck", "media-sound/clementine", "media-sound/clementine", "media-sound/cmix", "media-sound/cmus", "media-sound/cmus", "media-sound/cmusfm", "media-sound/cmusfm", "media-sound/combine_wave", "media-sound/coquillo", "media-sound/csound", "media-sound/csound", "media-sound/csound", "media-sound/cvoicecontrol", "media-sound/dagrab", "media-sound/darkice", "media-sound/darksnow", "media-sound/daudio", "media-sound/dbmeasure", "media-sound/dcadec", "media-sound/dcaenc", "media-sound/dcd", "media-sound/deadbeef", "media-sound/deadbeef", "media-sound/deadbeef", "media-sound/declick", "media-sound/deinvert", "media-sound/denemo", "media-sound/denemo", "media-sound/din", "media-sound/dir2ogg", "media-sound/drumstick", "media-sound/dvda-author", "media-sound/easyeffects", "media-sound/easyeffects", "media-sound/easyeffects", "media-sound/easytag", "media-sound/ecasound", "media-sound/elisa", "media-sound/elisa", "media-sound/erec", "media-sound/exaile", "media-sound/exaile", "media-sound/ezstream", "media-sound/fapg", "media-sound/flac-image", "media-sound/flac123", "media-sound/flack", "media-sound/flacon", "media-sound/flake", "media-sound/fluid-soundfont", "media-sound/fluidsynth", "media-sound/fmdrv", "media-sound/fmit", "media-sound/fmtools", "media-sound/frescobaldi", "media-sound/gbsplay", "media-sound/gigedit", "media-sound/gigedit", "media-sound/gimmix", "media-sound/glurp", "media-sound/gmorgan", "media-sound/gmpc", "media-sound/gmtp", "media-sound/gmusicbrowser", "media-sound/gmusicbrowser", "media-sound/gnomad", "media-sound/gnome-music", "media-sound/gnome-sound-recorder", "media-sound/gnump3d", "media-sound/gogglesmm", "media-sound/gom", "media-sound/gpodder", "media-sound/gpodder", "media-sound/gpodder", "media-sound/gqradio", "media-sound/grip", "media-sound/gsm", "media-sound/gst123", "media-sound/gstreamripper", "media-sound/gtick", "media-sound/gtkguitune", "media-sound/guayadeque", "media-sound/guayadeque", "media-sound/guitarix", "media-sound/guitarix", "media-sound/helm", "media-sound/herrie", "media-sound/horgand", "media-sound/hydrogen", "media-sound/hydrogen", "media-sound/icecream", "media-sound/id3", "media-sound/id3ed", "media-sound/id3ted", "media-sound/id3tool", "media-sound/id3v2", "media-sound/jaaa", "media-sound/jack-audio-connection-kit", "media-sound/jack-keyboard", "media-sound/jack-rack", "media-sound/jack-smf-utils", "media-sound/jack", "media-sound/jack2", "media-sound/jack2", "media-sound/jack_capture", "media-sound/jack_capture", "media-sound/jalv", "media-sound/jamin", "media-sound/justeport", "media-sound/kid3", "media-sound/klick", "media-sound/kmetronome", "media-sound/kmidimon", "media-sound/lame", "media-sound/lash", "media-sound/lilypond", "media-sound/lilypond", "media-sound/lilypond", "media-sound/lilypond", "media-sound/lilypond", "media-sound/lingot", "media-sound/linuxsampler", "media-sound/linuxsampler", "media-sound/litestream", "media-sound/lltag", "media-sound/lmms", "media-sound/lmms", "media-sound/lollypop", "media-sound/lollypop", "media-sound/lxmusic", "media-sound/mac", "media-sound/madplay", "media-sound/mangler", "media-sound/marrie", "media-sound/marrie", "media-sound/mcdp", "media-sound/meterbridge", "media-sound/mhwaveedit", "media-sound/mikmod", "media-sound/milkytracker", "media-sound/mixxx", "media-sound/mixxx", "media-sound/mixxx", "media-sound/mmix", "media-sound/moc", "media-sound/moc", "media-sound/modplugtools", "media-sound/mp32ogg", "media-sound/mp3asm", "media-sound/mp3blaster", "media-sound/mp3c", "media-sound/mp3cat", "media-sound/mp3check", "media-sound/mp3diags", "media-sound/mp3gain", "media-sound/mp3info", "media-sound/mp3report", "media-sound/mp3splt-gtk", "media-sound/mp3splt", "media-sound/mp3unicode", "media-sound/mp3val", "media-sound/mp3wrap", "media-sound/mpc", "media-sound/mpck", "media-sound/mpd", "media-sound/mpd", "media-sound/mpd", "media-sound/mpd", "media-sound/mpd", "media-sound/mpd", "media-sound/mpd", "media-sound/mpd", "media-sound/mpd", "media-sound/mpdas", "media-sound/mpdscribble", "media-sound/mpdscribble", "media-sound/mpfc", "media-sound/mpg123", "media-sound/mpg123", "media-sound/mpg321", "media-sound/mplay", "media-sound/mps-youtube", "media-sound/mps-youtube", "media-sound/mt-daapd", "media-sound/multimux", "media-sound/mumble", "media-sound/mumble", "media-sound/munt-mt32emu-alsadrv", "media-sound/mup", "media-sound/murmur", "media-sound/murmur", "media-sound/murmur", "media-sound/muse", "media-sound/musepack-tools", "media-sound/musescore", "media-sound/musescore", "media-sound/music-file-organizer", "media-sound/musique", "media-sound/ncmpc", "media-sound/ncmpcpp", "media-sound/ncmpcpp", "media-sound/normalize", "media-sound/ogg2mp3", "media-sound/oggtst", "media-sound/ogmtools", "media-sound/openmpt123", "media-sound/opus-tools", "media-sound/orpheus", "media-sound/pamix", "media-sound/pamix", "media-sound/paprefs", "media-sound/pasystray", "media-sound/patchage", "media-sound/pavucontrol-qt", "media-sound/pavucontrol-qt", "media-sound/pavucontrol", "media-sound/pavucontrol", "media-sound/pavumeter", "media-sound/peercast", "media-sound/pianobar", "media-sound/pianobar", "media-sound/picard", "media-sound/picard", "media-sound/picard", "media-sound/picoxine", "media-sound/pitchtune", "media-sound/pithos", "media-sound/playerctl", "media-sound/pms", "media-sound/pms", "media-sound/pnmixer", "media-sound/poc", "media-sound/podcatcher", "media-sound/podget", "media-sound/podracer", "media-sound/potamus", "media-sound/pragha", "media-sound/ptabtools", "media-sound/puddletag", "media-sound/pulseaudio-ctl", "media-sound/pulseaudio-ctl", "media-sound/pulseaudio-ctl", "media-sound/pulseaudio-ctl", "media-sound/pulseaudio-modules-bt", "media-sound/pulseaudio", "media-sound/pulseaudio", "media-sound/pulseeffects", "media-sound/pulsemixer", "media-sound/pulsemixer", "media-sound/pwavecat", "media-sound/qastools", "media-sound/qjackctl", "media-sound/qjackctl", "media-sound/qmidiarp", "media-sound/qmidiroute", "media-sound/qmmp", "media-sound/qmmp", "media-sound/qsampler", "media-sound/qsampler", "media-sound/qsynth", "media-sound/qsynth", "media-sound/qtagger", "media-sound/qtgain", "media-sound/qtractor", "media-sound/qtscrobbler", "media-sound/quimup", "media-sound/quodlibet", "media-sound/rawrec", "media-sound/rcenter", "media-sound/redoflacs", "media-sound/retrovol", "media-sound/rexima", "media-sound/rhythmbox", "media-sound/rip", "media-sound/ripperx", "media-sound/rosegarden", "media-sound/rplay", "media-sound/saydate", "media-sound/schismtracker", "media-sound/scmpc", "media-sound/scream", "media-sound/scream", "media-sound/seq24", "media-sound/setmixer", "media-sound/sexypsf", "media-sound/shnflacverify", "media-sound/shntool", "media-sound/shorten", "media-sound/sidplay", "media-sound/sidplayfp", "media-sound/smixer", "media-sound/snapcast", "media-sound/snd", "media-sound/sndfile-tools", "media-sound/sndfile-tools", "media-sound/sndio", "media-sound/sndio", "media-sound/sndio", "media-sound/sndpeek", "media-sound/solfege", "media-sound/sonata", "media-sound/sonic-visualiser", "media-sound/sooperlooper", "media-sound/sound-juicer", "media-sound/soundconverter", "media-sound/soundkonverter", "media-sound/sox", "media-sound/sox", "media-sound/spek", "media-sound/splay", "media-sound/split2flac", "media-sound/split2flac", "media-sound/spotify-tray", "media-sound/spotify", "media-sound/spotify", "media-sound/strawberry", "media-sound/strawberry", "media-sound/streamripper", "media-sound/streamtranscoder", "media-sound/streamtranscoder", "media-sound/subsonic-bin", "media-sound/substract_wave", "media-sound/supercollider", "media-sound/synaesthesia", "media-sound/taginfo", "media-sound/tagtool", "media-sound/tap-reverbed", "media-sound/teamspeak-client", "media-sound/teamspeak-client", "media-sound/teamspeak-server", "media-sound/tempest_for_eliza", "media-sound/terminatorx", "media-sound/timemachine", "media-sound/timidity++", "media-sound/timidity-eawpatches", "media-sound/timidity-freepats", "media-sound/tk707", "media-sound/toolame", "media-sound/ttaenc", "media-sound/tudor-volumed", "media-sound/twolame", "media-sound/umix", "media-sound/umurmur", "media-sound/umurmur", "media-sound/umurmur", "media-sound/umurmur", "media-sound/upmpdcli", "media-sound/upmpdcli", "media-sound/vb2rip", "media-sound/vbrfixc", "media-sound/vimpc", "media-sound/vimpc", "media-sound/vimpc", "media-sound/vkeybd", "media-sound/vlevel", "media-sound/vlorb", "media-sound/vmpk", "media-sound/volumeicon", "media-sound/volwheel", "media-sound/vorbis-tools", "media-sound/vorbisgain", "media-sound/vsound", "media-sound/wav2json", "media-sound/wavbreaker", "media-sound/wavegain", "media-sound/wavpack", "media-sound/wavplay", "media-sound/wavsplit", "media-sound/whipper", "media-sound/whipper", "media-sound/wildmidi", "media-sound/wildmidi", "media-sound/wmsound-data", "media-sound/xfmpc", "media-sound/xineadump", "media-sound/xmms2", "media-sound/xmms2", "media-sound/xnoise", "media-sound/xwax", "media-sound/xwax", "media-sound/yarock", "media-sound/yoshimi", "media-sound/yoshimi", "media-sound/zynaddsubfx", "media-tv/channeleditor", "media-tv/dtv-scan-tables", "media-tv/dtv-scan-tables", "media-tv/dtv-scan-tables", "media-tv/dtv-scan-tables", "media-tv/dvbstream", "media-tv/dvbtune", "media-tv/gentoo-vdr-scripts", "media-tv/gtk-v4l", "media-tv/ivtv-utils", "media-tv/ivtvplayer", "media-tv/kodi", "media-tv/kodi", "media-tv/kodi", "media-tv/kodi", "media-tv/linuxtv-dvb-apps", "media-tv/mythtv-status", "media-tv/mythtv", "media-tv/mythtv", "media-tv/nvtv", "media-tv/plex-media-server", "media-tv/plex-media-server", "media-tv/shoutcast2vdr", "media-tv/tvbrowser-bin", "media-tv/tvheadend", "media-tv/tvheadend", "media-tv/tvnamer", "media-tv/tvnamer", "media-tv/v4l-dvb-saa716x", "media-tv/v4l-utils", "media-tv/w_scan", "media-tv/xmltv", "media-tv/xmltv", "media-video/acidrip", "media-video/aegisub", "media-video/aegisub", "media-video/alevt", "media-video/aravis", "media-video/aravis", "media-video/aravis", "media-video/asfrecorder", "media-video/atomicparsley-wez", "media-video/atomicparsley", "media-video/avidemux", "media-video/baka-mplayer", "media-video/baka-mplayer", "media-video/baka-mplayer", "media-video/bashnapi", "media-video/bbtools", "media-video/bdsup2sub", "media-video/binkplayer", "media-video/bino", "media-video/blind", "media-video/blinkensim", "media-video/blinkenthemes", "media-video/blinkentools", "media-video/bluray_info", "media-video/ccextractor", "media-video/ccextractor", "media-video/cclive", "media-video/celluloid", "media-video/celluloid", "media-video/chaplin", "media-video/cheese", "media-video/cheese", "media-video/clive", "media-video/cpvts", "media-video/devedeng", "media-video/dirac", "media-video/droidcam", "media-video/dv2sub", "media-video/dvbackup", "media-video/dvbsnoop", "media-video/dvd9to5", "media-video/dvd_info", "media-video/dvdauthor", "media-video/dvdauthor", "media-video/dvdbackup", "media-video/dvdimagecmp", "media-video/dvdrip", "media-video/dvdstyler", "media-video/dvgrab", "media-video/ffcast", "media-video/ffdiaporama", "media-video/ffmpeg", "media-video/ffmpeg", "media-video/ffmpeg", "media-video/ffmpeg", "media-video/ffmpeg", "media-video/ffmpeg2theora", "media-video/ffmpegthumbnailer", "media-video/ffmpegthumbnailer", "media-video/flvstreamer", "media-video/frameworks", "media-video/gaupol", "media-video/gaupol", "media-video/gnome-video-effects", "media-video/google2srt", "media-video/gpac", "media-video/gpac", "media-video/guvcview", "media-video/gxine", "media-video/h264enc", "media-video/handbrake", "media-video/handbrake", "media-video/harvid", "media-video/imagination", "media-video/isight-firmware-tools", "media-video/jubler", "media-video/kaffeine", "media-video/kino", "media-video/libva-utils", "media-video/libva-utils", "media-video/libva-utils", "media-video/libva-utils", "media-video/libva-utils", "media-video/libva-utils", "media-video/libva-utils", "media-video/libva-utils", "media-video/libva-utils", "media-video/libva-utils", "media-video/lsdvd", "media-video/luvcview", "media-video/lxdvdrip", "media-video/m2vrequantizer", "media-video/makemkv", "media-video/matroxset", "media-video/mediainfo", "media-video/mediainfo", "media-video/mjpegtools", "media-video/mjpg-streamer", "media-video/mjpg-streamer", "media-video/mkclean", "media-video/mkvalidator", "media-video/mkvtoolnix", "media-video/mkvtoolnix", "media-video/mkvtoolnix", "media-video/mkvtoolnix", "media-video/motion", "media-video/motiontrack", "media-video/movit", "media-video/mpeg-tools", "media-video/mpeg2vidcodec", "media-video/mpglen", "media-video/mpgtx", "media-video/mplay-sh", "media-video/mplayer-sh", "media-video/mplayer-sh", "media-video/mplayer", "media-video/mplayer", "media-video/mpv", "media-video/mpv", "media-video/noad", "media-video/noad", "media-video/noad", "media-video/nvidia-video-codec", "media-video/nvidia-video-codec", "media-video/nvidia-video-codec", "media-video/nvidia-video-codec", "media-video/nvidia_video_sdk", "media-video/obs-studio", "media-video/obs-studio", "media-video/obs-studio", "media-video/obs-v4l2sink", "media-video/ogmrip", "media-video/openshot", "media-video/openshot", "media-video/oxine", "media-video/parole", "media-video/peek", "media-video/pgmfindclip", "media-video/pipewire", "media-video/pipewire", "media-video/pipewire", "media-video/pipewire", "media-video/pipewire", "media-video/pitivi", "media-video/projectx", "media-video/qmplay2", "media-video/qmplay2", "media-video/qmplay2", "media-video/qmplay2", "media-video/raspberrypi-omxplayer", "media-video/rav1e", "media-video/rav1e", "media-video/recmpeg", "media-video/recordmydesktop", "media-video/rovclock", "media-video/rtmpdump", "media-video/rtmpdump", "media-video/rtmpdump", "media-video/setpwc", "media-video/shotcut", "media-video/shotcut", "media-video/shotcut", "media-video/shrip", "media-video/simplescreenrecorder", "media-video/simplescreenrecorder", "media-video/simplescreenrecorder", "media-video/smplayer", "media-video/smplayer", "media-video/smplayer", "media-video/snappy", "media-video/sonic-snap", "media-video/streamdeck-ui", "media-video/streamdeck-ui", "media-video/streamdvd", "media-video/sub2srt", "media-video/subcheck", "media-video/subliminal", "media-video/subliminal", "media-video/submux-dvd", "media-video/subsync", "media-video/subtitlecomposer", "media-video/subtitleeditor", "media-video/subtitler-yuv", "media-video/subtitleripper", "media-video/super_demux", "media-video/tcmplex-panteltje", "media-video/tivodecode", "media-video/totem", "media-video/transcode", "media-video/tsmuxer", "media-video/ttcut", "media-video/unifi-video", "media-video/unifi-video", "media-video/unifi-video", "media-video/ushare", "media-video/v4l2loopback", "media-video/v4l2loopback", "media-video/vamps", "media-video/vcdimager", "media-video/vcsi", "media-video/vdr", "media-video/vdr", "media-video/vdr", "media-video/vdr", "media-video/vdr", "media-video/vdr2jpeg", "media-video/vdr2jpeg", "media-video/vdrsync", "media-video/vdrsync", "media-video/vdrtools-genindex", "media-video/vidcutter", "media-video/vidcutter", "media-video/videotrans", "media-video/vidify-audiosync", "media-video/vidify", "media-video/vlc", "media-video/vlc", "media-video/vlc", "media-video/vlc", "media-video/vobcopy", "media-video/vstrip", "media-video/webcamoid", "media-video/x264-encoder", "media-video/x264-encoder", "media-video/xine-ui", "media-video/xvattr", "media-video/xvid4conf", "media-video/yle-dl", "net-analyzer/2ping", "net-analyzer/alive", "net-analyzer/alive", "net-analyzer/amap", "net-analyzer/angst", "net-analyzer/apinger", "net-analyzer/argus-clients", "net-analyzer/argus", "net-analyzer/arp-scan", "net-analyzer/arp-scan", "net-analyzer/arp-sk", "net-analyzer/arping", "net-analyzer/arping", "net-analyzer/arping", "net-analyzer/arpoison", "net-analyzer/arpon", "net-analyzer/arptools", "net-analyzer/arpwatch", "net-analyzer/authforce", "net-analyzer/authforce", "net-analyzer/barnyard", "net-analyzer/barnyard2", "net-analyzer/bigeye", "net-analyzer/bing", "net-analyzer/bmon", "net-analyzer/bmon", "net-analyzer/braa", "net-analyzer/bwbar", "net-analyzer/bwm-ng", "net-analyzer/bwm-ng", "net-analyzer/bwmon", "net-analyzer/bwping", "net-analyzer/cacti-spine", "net-analyzer/cacti-spine", "net-analyzer/cacti-spine", "net-analyzer/cacti", "net-analyzer/cacti", "net-analyzer/calamaris", "net-analyzer/carl", "net-analyzer/cbm", "net-analyzer/cbm", "net-analyzer/chaosreader", "net-analyzer/check_mk_agent", "net-analyzer/chronograf", "net-analyzer/chronograf", "net-analyzer/chronograf", "net-analyzer/chronograf", "net-analyzer/cloudshark", "net-analyzer/cnet", "net-analyzer/cryptcat", "net-analyzer/cutter", "net-analyzer/darkstat", "net-analyzer/darkstat", "net-analyzer/dhcp_probe", "net-analyzer/dhcpdump", "net-analyzer/dnsenum", "net-analyzer/dnsmap", "net-analyzer/dnstracer", "net-analyzer/dnstracer", "net-analyzer/driftnet", "net-analyzer/echoping", "net-analyzer/egressor", "net-analyzer/etherape", "net-analyzer/ethloop", "net-analyzer/ettercap", "net-analyzer/ettercap", "net-analyzer/fail2ban", "net-analyzer/fail2ban", "net-analyzer/fail2ban", "net-analyzer/firewalk", "net-analyzer/flent", "net-analyzer/flow-tools", "net-analyzer/flowgrind", "net-analyzer/fping", "net-analyzer/fprobe", "net-analyzer/fprobe", "net-analyzer/fragroute", "net-analyzer/ftester", "net-analyzer/fwlogwatch", "net-analyzer/gensink", "net-analyzer/gnome-nettool", "net-analyzer/goaccess", "net-analyzer/goaccess", "net-analyzer/gr-fosphor", "net-analyzer/gr-fosphor", "net-analyzer/graphite-web", "net-analyzer/graphite-web", "net-analyzer/greenbone-security-assistant", "net-analyzer/greenbone-security-assistant", "net-analyzer/gspoof", "net-analyzer/gvm-libs", "net-analyzer/gvm-libs", "net-analyzer/gvm-libs", "net-analyzer/gvm-tools", "net-analyzer/gvm-tools", "net-analyzer/gvm-tools", "net-analyzer/gvm", "net-analyzer/gvm", "net-analyzer/gvm", "net-analyzer/gvmd", "net-analyzer/gvmd", "net-analyzer/hexinject", "net-analyzer/hping", "net-analyzer/httping", "net-analyzer/httping", "net-analyzer/hunt", "net-analyzer/hydra", "net-analyzer/hydra", "net-analyzer/hydra", "net-analyzer/ibmonitor", "net-analyzer/icinga2", "net-analyzer/icinga2", "net-analyzer/icinga2", "net-analyzer/icinga2", "net-analyzer/ifmetric", "net-analyzer/ifstat", "net-analyzer/ifstatus", "net-analyzer/ifstatus", "net-analyzer/iftop", "net-analyzer/iftop", "net-analyzer/ike-scan", "net-analyzer/ike-scan", "net-analyzer/ipaudit", "net-analyzer/ipband", "net-analyzer/ipcad", "net-analyzer/ipgen", "net-analyzer/ipguard", "net-analyzer/iplog", "net-analyzer/iplog", "net-analyzer/ippl", "net-analyzer/ipsumdump", "net-analyzer/iptraf-ng", "net-analyzer/iptraf-ng", "net-analyzer/iptstate", "net-analyzer/ipv6toolkit", "net-analyzer/ipv6toolkit", "net-analyzer/isic", "net-analyzer/jmx2munin", "net-analyzer/jnettop", "net-analyzer/kapacitor", "net-analyzer/knocker", "net-analyzer/knocker", "net-analyzer/labrea", "net-analyzer/lft", "net-analyzer/lilac", "net-analyzer/linkchecker", "net-analyzer/linkchecker", "net-analyzer/linkchecker", "net-analyzer/macchanger", "net-analyzer/masscan", "net-analyzer/mbrowse", "net-analyzer/mdns-scan", "net-analyzer/monitoring-plugins", "net-analyzer/mping", "net-analyzer/mrtg-ping-probe", "net-analyzer/mrtg", "net-analyzer/mtr", "net-analyzer/mtr", "net-analyzer/multimon-ng", "net-analyzer/multimon-ng", "net-analyzer/multipath-tcp-tools", "net-analyzer/multipath-tcp-tools", "net-analyzer/munin-plugins-zfs", "net-analyzer/munin", "net-analyzer/munin", "net-analyzer/munin", "net-analyzer/nagios-check_dnssec", "net-analyzer/nagios-check_fail2ban", "net-analyzer/nagios-check_glsa2", "net-analyzer/nagios-check_ipmi_sensor", "net-analyzer/nagios-check_ipmi_sensor", "net-analyzer/nagios-check_linux_bonding", "net-analyzer/nagios-check_logfiles", "net-analyzer/nagios-check_multiple", "net-analyzer/nagios-check_multiple", "net-analyzer/nagios-check_mysql_health", "net-analyzer/nagios-check_pidfile", "net-analyzer/nagios-check_rbl", "net-analyzer/nagios-core", "net-analyzer/nagios-icinga-openvpn", "net-analyzer/nagios-icinga-openvpn", "net-analyzer/nagios-plugin-check_lm_sensors", "net-analyzer/nagios-plugin-check_raid", "net-analyzer/nagios-plugin-check_raid", "net-analyzer/nagios-plugins-linux-madrisan", "net-analyzer/nagios-plugins-linux-madrisan", "net-analyzer/nagios-plugins-snmp", "net-analyzer/nagios-plugins", "net-analyzer/nagios-plugins", "net-analyzer/nagios", "net-analyzer/nagircbot", "net-analyzer/nagstamon", "net-analyzer/nagstamon", "net-analyzer/nagtrap", "net-analyzer/nast", "net-analyzer/nbtscan", "net-analyzer/nbwmon", "net-analyzer/ndoutils", "net-analyzer/ndsad", "net-analyzer/nessus-agent-bin", "net-analyzer/nessus-bin", "net-analyzer/net-snmp", "net-analyzer/net-snmp", "net-analyzer/net-snmp", "net-analyzer/net-snmp", "net-analyzer/netcat", "net-analyzer/netcat", "net-analyzer/netdata", "net-analyzer/netdata", "net-analyzer/netdata", "net-analyzer/netdata", "net-analyzer/netdata", "net-analyzer/netdata", "net-analyzer/netdata", "net-analyzer/netdata", "net-analyzer/netdiscover", "net-analyzer/nethogs", "net-analyzer/neti", "net-analyzer/netio", "net-analyzer/netperf", "net-analyzer/netpipe", "net-analyzer/netselect", "net-analyzer/netselect", "net-analyzer/netselect", "net-analyzer/nettop", "net-analyzer/netwag", "net-analyzer/netwatch", "net-analyzer/netwox", "net-analyzer/nfdump", "net-analyzer/ngrep", "net-analyzer/nikto", "net-analyzer/nikto", "net-analyzer/nipper", "net-analyzer/nload", "net-analyzer/nmap", "net-analyzer/nmap", "net-analyzer/nmap", "net-analyzer/nmap", "net-analyzer/nmapsi", "net-analyzer/nmbscan", "net-analyzer/nrpe", "net-analyzer/nrpe", "net-analyzer/nrpe", "net-analyzer/nsat", "net-analyzer/nsca", "net-analyzer/nstats", "net-analyzer/ntopng", "net-analyzer/nttcp", "net-analyzer/nuttcp", "net-analyzer/odhcploc", "net-analyzer/oinkmaster", "net-analyzer/openbsd-netcat", "net-analyzer/openbsd-netcat", "net-analyzer/openbsd-netcat", "net-analyzer/openvas-scanner", "net-analyzer/openvas-scanner", "net-analyzer/openvas-scanner", "net-analyzer/opsgenie-lamp", "net-analyzer/ospd-openvas", "net-analyzer/ospd-openvas", "net-analyzer/ospd", "net-analyzer/ospd", "net-analyzer/ossec-hids", "net-analyzer/ostinato", "net-analyzer/p0f", "net-analyzer/packit", "net-analyzer/packit", "net-analyzer/pathload", "net-analyzer/pbnj", "net-analyzer/pinger", "net-analyzer/pktstat", "net-analyzer/pmacct", "net-analyzer/pmacct", "net-analyzer/pmacct", "net-analyzer/pnp4nagios", "net-analyzer/pnp4nagios", "net-analyzer/poink", "net-analyzer/portmon", "net-analyzer/portsentry", "net-analyzer/prelude-correlator", "net-analyzer/prelude-lml-rules", "net-analyzer/prelude-lml-rules", "net-analyzer/prelude-lml", "net-analyzer/prelude-lml", "net-analyzer/prettyping", "net-analyzer/pypacker", "net-analyzer/python-gvm", "net-analyzer/quidscor", "net-analyzer/raddump", "net-analyzer/rain", "net-analyzer/rrdcollect", "net-analyzer/rrdtool", "net-analyzer/rtpbreak", "net-analyzer/sancp", "net-analyzer/sarg", "net-analyzer/sbd", "net-analyzer/scanlogd", "net-analyzer/scanlogd", "net-analyzer/scanssh", "net-analyzer/scapy", "net-analyzer/scapy", "net-analyzer/scapy", "net-analyzer/scli", "net-analyzer/sec", "net-analyzer/sflowtool", "net-analyzer/sguil-client", "net-analyzer/sguil-sensor", "net-analyzer/sinfo", "net-analyzer/siphon", "net-analyzer/slurm", "net-analyzer/smokeping", "net-analyzer/snallygaster", "net-analyzer/snallygaster", "net-analyzer/snallygaster", "net-analyzer/sngrep", "net-analyzer/sniffit", "net-analyzer/snmpclitools", "net-analyzer/snmptt", "net-analyzer/snort", "net-analyzer/snortalog", "net-analyzer/snortsam", "net-analyzer/softflowd", "net-analyzer/speedtest-cli", "net-analyzer/sqlninja", "net-analyzer/squid-graph", "net-analyzer/squidsites", "net-analyzer/squidview", "net-analyzer/ssldump", "net-analyzer/sslscan", "net-analyzer/sslscan", "net-analyzer/sslscan", "net-analyzer/sslscan", "net-analyzer/sslsplit", "net-analyzer/sslsplit", "net-analyzer/sslsplit", "net-analyzer/ssmping", "net-analyzer/suricata", "net-analyzer/suricata", "net-analyzer/symon", "net-analyzer/synscan", "net-analyzer/syweb", "net-analyzer/tcpdump", "net-analyzer/tcpdump", "net-analyzer/tcpdump", "net-analyzer/tcpdump", "net-analyzer/tcpflow", "net-analyzer/tcping", "net-analyzer/tcpreen", "net-analyzer/tcpreplay", "net-analyzer/tcpreplay", "net-analyzer/tcpslice", "net-analyzer/tcpstat", "net-analyzer/tcptrace", "net-analyzer/tcptraceroute", "net-analyzer/tcptrack", "net-analyzer/telegraf", "net-analyzer/telegraf", "net-analyzer/telegraf", "net-analyzer/telegraf", "net-analyzer/telegraf", "net-analyzer/telegraf", "net-analyzer/telegraf", "net-analyzer/testssl", "net-analyzer/testssl", "net-analyzer/thc-ipv6", "net-analyzer/thc-ipv6", "net-analyzer/thcrut", "net-analyzer/thrulay", "net-analyzer/tleds", "net-analyzer/tptest", "net-analyzer/tracebox", "net-analyzer/traceproto", "net-analyzer/traceroute-nanog", "net-analyzer/traceroute", "net-analyzer/trafshow", "net-analyzer/tsung", "net-analyzer/ttcp", "net-analyzer/upnpscan", "net-analyzer/vnstat", "net-analyzer/vnstat", "net-analyzer/vnstat", "net-analyzer/vnstat", "net-analyzer/wapiti", "net-analyzer/wapiti", "net-analyzer/wapiti", "net-analyzer/wapiti", "net-analyzer/webfuzzer", "net-analyzer/wireshark", "net-analyzer/wireshark", "net-analyzer/wireshark", "net-analyzer/xnetload", "net-analyzer/xprobe", "net-analyzer/yersinia", "net-analyzer/yersinia", "net-analyzer/zabbix", "net-analyzer/zabbix", "net-analyzer/zabbix", "net-analyzer/zabbix", "net-analyzer/zabbix", "net-analyzer/zabbix", "net-analyzer/zabbix", "net-analyzer/zabbix", "net-analyzer/zabbix", "net-analyzer/zabbix", "net-analyzer/zabbix", "net-analyzer/zmap", "net-analyzer/zmap", "net-analyzer/zniper", "net-dialup/accel-ppp", "net-dialup/accel-ppp", "net-dialup/cistronradius", "net-dialup/cutecom", "net-dialup/dial", "net-dialup/dwun", "net-dialup/fbgetty", "net-dialup/freeradius-client", "net-dialup/freeradius", "net-dialup/freeradius", "net-dialup/freeradius", "net-dialup/isdn-firmware", "net-dialup/kpnadsl4linux", "net-dialup/linux-atm", "net-dialup/lrzsz", "net-dialup/mgetty", "net-dialup/mingetty", "net-dialup/minicom", "net-dialup/minicom", "net-dialup/moserial", "net-dialup/moserial", "net-dialup/mwavem", "net-dialup/neocon", "net-dialup/openl2tp", "net-dialup/picocom", "net-dialup/ppp-scripts", "net-dialup/ppp", "net-dialup/ppp", "net-dialup/pppconfig", "net-dialup/pptpclient", "net-dialup/radiusclient-ng", "net-dialup/rp-l2tp", "net-dialup/rp-pppoe", "net-dialup/rp-pppoe", "net-dialup/sendpage", "net-dialup/sercd", "net-dialup/speedtouch-usb", "net-dialup/wvdial", "net-dialup/xc", "net-dialup/xl2tpd", "net-dialup/xl2tpd", "net-dns/avahi", "net-dns/bind-tools", "net-dns/bind-tools", "net-dns/bind", "net-dns/bind", "net-dns/c-ares", "net-dns/c-ares", "net-dns/coredns", "net-dns/coredns", "net-dns/coredns", "net-dns/ddclient", "net-dns/djbdns", "net-dns/dnrd", "net-dns/dnscap", "net-dns/dnscrypt-proxy", "net-dns/dnscrypt-proxy", "net-dns/dnscrypt-proxy", "net-dns/dnsdist", "net-dns/dnsdist", "net-dns/dnshijacker", "net-dns/dnsmasq", "net-dns/dnssec-check", "net-dns/dnssec-root", "net-dns/dnssec-tools", "net-dns/dnssec-validator", "net-dns/dnstop", "net-dns/dnsviz", "net-dns/dnsviz", "net-dns/dnsviz", "net-dns/dnswalk", "net-dns/dog", "net-dns/ez-ipupdate", "net-dns/fpdns", "net-dns/getdns", "net-dns/hash-slinger", "net-dns/https_dns_proxy", "net-dns/https_dns_proxy", "net-dns/idnkit", "net-dns/knot", "net-dns/ldns-utils", "net-dns/libidn", "net-dns/libidn", "net-dns/libidn2", "net-dns/libidn2", "net-dns/maradns", "net-dns/maradns", "net-dns/mdns-repeater", "net-dns/mydns", "net-dns/ndu", "net-dns/nsd", "net-dns/nsd", "net-dns/odsclient", "net-dns/opendnssec", "net-dns/openresolv", "net-dns/pdns-recursor", "net-dns/pdns-recursor", "net-dns/pdns-recursor", "net-dns/pdns-recursor", "net-dns/pdns-recursor", "net-dns/pdns", "net-dns/pdns", "net-dns/pdnsd", "net-dns/rbldnsd", "net-dns/resolv_wrapper", "net-dns/resolvconf-symlink", "net-dns/s6-dns", "net-dns/s6-dns", "net-dns/s6-dns", "net-dns/s6-dns", "net-dns/s6-dns", "net-dns/s6-dns", "net-dns/totd", "net-dns/unbound", "net-dns/unbound", "net-dns/unbound", "net-dns/unbound", "net-dns/updatedd", "net-dns/updatedd", "net-dns/valtz", "net-firewall/arno-iptables-firewall", "net-firewall/arptables", "net-firewall/conntrack-tools", "net-firewall/conntrack-tools", "net-firewall/ebtables", "net-firewall/ferm", "net-firewall/ferm", "net-firewall/firehol", "net-firewall/firehol", "net-firewall/firewalld", "net-firewall/firewalld", "net-firewall/firewalld", "net-firewall/fwbuilder", "net-firewall/fwbuilder", "net-firewall/fwknop", "net-firewall/ipkungfu", "net-firewall/ipset", "net-firewall/ipset", "net-firewall/ipt_netflow", "net-firewall/ipt_netflow", "net-firewall/iptables", "net-firewall/itval", "net-firewall/lutelwall", "net-firewall/nfacct", "net-firewall/nftables", "net-firewall/nftables", "net-firewall/nftables", "net-firewall/nftables", "net-firewall/nftlb", "net-firewall/nufw", "net-firewall/pglinux", "net-firewall/psad", "net-firewall/rtsp-conntrack", "net-firewall/sanewall", "net-firewall/shorewall", "net-firewall/ufw", "net-firewall/xtables-addons", "net-firewall/xtables-addons", "net-fs/autofs", "net-fs/autofs", "net-fs/btfs", "net-fs/btfs", "net-fs/cifs-utils", "net-fs/curlftpfs", "net-fs/cvmfs", "net-fs/cvmfs", "net-fs/davfs2", "net-fs/docker-volume-netshare", "net-fs/libnfs", "net-fs/libnfs", "net-fs/mc", "net-fs/mc", "net-fs/mc", "net-fs/minio", "net-fs/netatalk", "net-fs/netatalk", "net-fs/nfs-utils", "net-fs/nfs-utils", "net-fs/nfs4-acl-tools", "net-fs/openafs-legacy", "net-fs/openafs", "net-fs/s3backer", "net-fs/s3backer", "net-fs/s3fs", "net-fs/s3fs", "net-fs/samba", "net-fs/samba", "net-fs/samba", "net-fs/samba", "net-fs/samba", "net-fs/smbnetfs", "net-fs/smbtad", "net-fs/sshfs", "net-fs/sshfs", "net-fs/wdfs", "net-ftp/atftp", "net-ftp/cmdftp", "net-ftp/filezilla", "net-ftp/filezilla", "net-ftp/filezilla", "net-ftp/filezilla", "net-ftp/frox", "net-ftp/ftp", "net-ftp/ftpbase", "net-ftp/gftp", "net-ftp/gproftpd", "net-ftp/lftp", "net-ftp/lftp", "net-ftp/linksys-tftp", "net-ftp/ncftp", "net-ftp/proftpd", "net-ftp/proftpd", "net-ftp/proftpd", "net-ftp/profxp", "net-ftp/pure-ftpd", "net-ftp/pure-ftpd", "net-ftp/pureadmin", "net-ftp/tftp-hpa", "net-ftp/tnftp", "net-ftp/tnftp", "net-ftp/uftpd", "net-ftp/vsftpd", "net-ftp/vsftpd", "net-ftp/vsftpd", "net-ftp/yafc", "net-im/bitlbee-facebook", "net-im/bitlbee-facebook", "net-im/bitlbee-steam", "net-im/bitlbee-steam", "net-im/bitlbee", "net-im/bitlbee", "net-im/centerim", "net-im/choqok", "net-im/corebird", "net-im/coturn", "net-im/coturn", "net-im/cpop", "net-im/dianara", "net-im/dino", "net-im/dino", "net-im/discord-bin", "net-im/ejabberd", "net-im/ejabberd", "net-im/ekg2", "net-im/ekg2", "net-im/element-desktop-bin", "net-im/empathy", "net-im/err", "net-im/gajim", "net-im/gajim", "net-im/gg-transport", "net-im/gitter-bin", "net-im/gitter-bin", "net-im/jabber-base", "net-im/kouchat", "net-im/libcommuni", "net-im/librvp", "net-im/mattermost-desktop-bin", "net-im/mcabber", "net-im/mcabber", "net-im/neochat", "net-im/openmittsu", "net-im/pidgin", "net-im/pidgin", "net-im/poezio", "net-im/poezio", "net-im/profanity", "net-im/prosody-modules", "net-im/prosody-modules", "net-im/prosody", "net-im/psi", "net-im/psi", "net-im/psimedia", "net-im/purple-events", "net-im/qtox", "net-im/qtox", "net-im/qtox", "net-im/ricochet", "net-im/ricochet", "net-im/rocketchat-desktop-bin", "net-im/sendxmpp", "net-im/signal-cli-bin", "net-im/signal-cli-bin", "net-im/signal-desktop-bin", "net-im/skype-dbus-mock", "net-im/skypeforlinux", "net-im/skypeforlinux", "net-im/skypeforlinux", "net-im/skypeforlinux", "net-im/skypeforlinux", "net-im/slack", "net-im/slack", "net-im/spectrum2", "net-im/swift", "net-im/teams", "net-im/teams", "net-im/telegram-desktop-bin", "net-im/telegram-desktop-bin", "net-im/telegram-desktop", "net-im/telegram-desktop", "net-im/telegram-desktop", "net-im/telepathy-connection-managers", "net-im/telepathy-logger", "net-im/telepathy-mission-control", "net-im/tkabber", "net-im/toxic", "net-im/toxic", "net-im/toxic", "net-im/transwhat", "net-im/vacuum", "net-im/vacuum", "net-im/webex", "net-im/webex", "net-im/webex", "net-im/whatsapp-desktop-bin", "net-im/yowsup", "net-im/ysm", "net-im/zoom", "net-im/zoom", "net-im/zoom", "net-irc/anope", "net-irc/anope", "net-irc/atheme-services", "net-irc/bnc", "net-irc/cgiirc", "net-irc/dccserver", "net-irc/eggdrop", "net-irc/eggdrop", "net-irc/eggdrop", "net-irc/emech", "net-irc/epic5", "net-irc/ergo", "net-irc/hexchat", "net-irc/hexchat", "net-irc/ii", "net-irc/ii", "net-irc/inspircd", "net-irc/inspircd", "net-irc/irccloud-desktop-bin", "net-irc/ircii", "net-irc/ircmap", "net-irc/ircstats", "net-irc/irker", "net-irc/iroffer-dinoex", "net-irc/irssi-xmpp", "net-irc/irssi", "net-irc/irssi", "net-irc/irssistats", "net-irc/konversation", "net-irc/konversation", "net-irc/kvirc", "net-irc/kvirc", "net-irc/kvirc", "net-irc/limnoria-plugins-chantracker", "net-irc/limnoria-plugins-chantracker", "net-irc/limnoria-plugins-jlu5", "net-irc/limnoria-plugins-jlu5", "net-irc/limnoria-plugins-progval", "net-irc/limnoria-plugins-progval", "net-irc/limnoria", "net-irc/limnoria", "net-irc/limnoria", "net-irc/muh", "net-irc/ngircd", "net-irc/ninja", "net-irc/onis", "net-irc/pisg", "net-irc/polari", "net-irc/polari", "net-irc/polari", "net-irc/psybnc", "net-irc/quassel", "net-irc/quassel", "net-irc/quasselgrep", "net-irc/rbot", "net-irc/rhapsody", "net-irc/scrollz", "net-irc/sic", "net-irc/telepathy-idle", "net-irc/unrealircd", "net-irc/unrealircd", "net-irc/weechat", "net-irc/weechat", "net-irc/weechat", "net-irc/znc-clientbuffer", "net-irc/znc-igloo-push", "net-irc/znc-palaver", "net-irc/znc-playback", "net-irc/znc", "net-irc/znc", "net-irc/znc", "net-libs/NativeThread", "net-libs/accounts-qml", "net-libs/accounts-qt", "net-libs/aqbanking", "net-libs/axtls", "net-libs/balde-markdown", "net-libs/balde", "net-libs/biblesync", "net-libs/c-client", "net-libs/canlock", "net-libs/courier-authlib", "net-libs/courier-authlib", "net-libs/courier-authlib", "net-libs/courier-authlib", "net-libs/courier-authlib", "net-libs/courier-authlib", "net-libs/courier-unicode", "net-libs/courier-unicode", "net-libs/courier-unicode", "net-libs/courier-unicode", "net-libs/cppzmq", "net-libs/cvm", "net-libs/czmq", "net-libs/daq", "net-libs/davix", "net-libs/dleyna-connector-dbus", "net-libs/dleyna-core", "net-libs/dleyna-renderer", "net-libs/enet", "net-libs/enet", "net-libs/enet", "net-libs/farstream", "net-libs/freaklabs-chibiarduino", "net-libs/freaklabs-chibiarduino", "net-libs/glib-networking", "net-libs/glib-networking", "net-libs/gloox", "net-libs/gnet", "net-libs/gnome-online-accounts", "net-libs/gnutls", "net-libs/gnutls", "net-libs/google-cloud-cpp", "net-libs/google-cloud-cpp", "net-libs/google-cloud-cpp", "net-libs/google-cloud-cpp", "net-libs/google-cloud-cpp", "net-libs/grpc", "net-libs/grpc", "net-libs/gsnmp", "net-libs/gsoap", "net-libs/gsoap", "net-libs/gssdp", "net-libs/gssdp", "net-libs/gssdp", "net-libs/gtk-vnc", "net-libs/gupnp-av", "net-libs/gupnp-av", "net-libs/gupnp-av", "net-libs/gupnp-igd", "net-libs/gupnp-igd", "net-libs/gupnp", "net-libs/gupnp", "net-libs/http-parser", "net-libs/iax", "net-libs/ignition-msgs", "net-libs/ignition-transport", "net-libs/jreen", "net-libs/kdav2", "net-libs/kdsoap-ws-discovery-client", "net-libs/kdsoap", "net-libs/kimap2", "net-libs/ldns", "net-libs/ldns", "net-libs/libaccounts-glib", "net-libs/libad9361-iio", "net-libs/libad9361-iio", "net-libs/libasr", "net-libs/libasyncns", "net-libs/libaxc", "net-libs/libaxc", "net-libs/libbitcoinconsensus", "net-libs/libbitcoinconsensus", "net-libs/libbitcoinconsensus", "net-libs/libblkmaker", "net-libs/libbloom", "net-libs/libbloom", "net-libs/libbtbb", "net-libs/libbtbb", "net-libs/libbtbb", "net-libs/libbtbb", "net-libs/libcapi", "net-libs/libcork", "net-libs/libcorkipset", "net-libs/libcrafter", "net-libs/libcrafter", "net-libs/libdmapsharing", "net-libs/libdom", "net-libs/libecap", "net-libs/libesmtp", "net-libs/libesmtp", "net-libs/libetpan", "net-libs/libflowmanager", "net-libs/libgadu", "net-libs/libgadu", "net-libs/libgfbgraph", "net-libs/libgrss", "net-libs/libgsasl", "net-libs/libgssglue", "net-libs/libhackrf", "net-libs/libhackrf", "net-libs/libhtp", "net-libs/libhubbub", "net-libs/libident", "net-libs/libiio", "net-libs/libiio", "net-libs/libircclient", "net-libs/libiscsi", "net-libs/libiscsi", "net-libs/libiscsi", "net-libs/libisds", "net-libs/libisds", "net-libs/libktorrent", "net-libs/libktorrent", "net-libs/liblockfile", "net-libs/liblockfile", "net-libs/libmbim", "net-libs/libmbim", "net-libs/libmediawiki", "net-libs/libmicrodns", "net-libs/libmicrodns", "net-libs/libmicrohttpd", "net-libs/libmicrohttpd", "net-libs/libmicrohttpd", "net-libs/libmirisdr", "net-libs/libmnl", "net-libs/libmrss", "net-libs/libnatpmp", "net-libs/libndp", "net-libs/libnet", "net-libs/libnet", "net-libs/libnet", "net-libs/libnetconf2", "net-libs/libnetfilter_acct", "net-libs/libnetfilter_conntrack", "net-libs/libnetfilter_conntrack", "net-libs/libnetfilter_conntrack", "net-libs/libnetfilter_cthelper", "net-libs/libnetfilter_cttimeout", "net-libs/libnetfilter_log", "net-libs/libnetfilter_queue", "net-libs/libnetfilter_queue", "net-libs/libnetfilter_queue", "net-libs/libnfnetlink", "net-libs/libnfsidmap", "net-libs/libnftnl", "net-libs/libnftnl", "net-libs/libnftnl", "net-libs/libnice", "net-libs/libnids", "net-libs/libnipper", "net-libs/libnma", "net-libs/libnma", "net-libs/libnpupnp", "net-libs/libnsl", "net-libs/libnsl", "net-libs/libnsl", "net-libs/libntlm", "net-libs/libnxml", "net-libs/liboauth", "net-libs/libomemo", "net-libs/liboping", "net-libs/libosmo-dsp", "net-libs/libosmo-dsp", "net-libs/libosmocore", "net-libs/libosmocore", "net-libs/libotr", "net-libs/libpcap", "net-libs/libpcap", "net-libs/libpcap", "net-libs/libpcapnav", "net-libs/libpri", "net-libs/libprotoident", "net-libs/libprotoident", "net-libs/libproxy", "net-libs/libpsl", "net-libs/libpsl", "net-libs/libqmi", "net-libs/libqmi", "net-libs/libqmi", "net-libs/libquotient", "net-libs/libquotient", "net-libs/librouteros", "net-libs/librsync", "net-libs/librsync", "net-libs/libsearpc", "net-libs/libsignal-protocol-c", "net-libs/libsignal-protocol-c", "net-libs/libsignal-protocol-c", "net-libs/libsignon-glib", "net-libs/libslirp", "net-libs/libsmi", "net-libs/libsoup", "net-libs/libsoup", "net-libs/libsrsirc", "net-libs/libsrtp", "net-libs/libsrtp", "net-libs/libsrtp", "net-libs/libssh", "net-libs/libssh", "net-libs/libssh", "net-libs/libssh2", "net-libs/libssh2", "net-libs/libssh2", "net-libs/libtelnet", "net-libs/libtelnet", "net-libs/libtirpc", "net-libs/libtorrent-rasterbar", "net-libs/libtorrent-rasterbar", "net-libs/libtorrent-rasterbar", "net-libs/libtorrent-rasterbar", "net-libs/libtorrent-rasterbar", "net-libs/libtorrent-rasterbar", "net-libs/libtorrent-rasterbar", "net-libs/libtorrent", "net-libs/libtorrent", "net-libs/libtorrent", "net-libs/libtrace", "net-libs/libtrace", "net-libs/libupnp", "net-libs/libupnpp", "net-libs/libupnpp", "net-libs/libvncserver", "net-libs/libwebsockets", "net-libs/libwebsockets", "net-libs/libwebsockets", "net-libs/libyang", "net-libs/libzapojit", "net-libs/liquid-dsp", "net-libs/liquid-dsp", "net-libs/loudmouth", "net-libs/loudmouth", "net-libs/loudmouth", "net-libs/mbedtls", "net-libs/mbedtls", "net-libs/mbedtls", "net-libs/mbedtls", "net-libs/mbedtls", "net-libs/meanwhile", "net-libs/miniupnpc", "net-libs/miniupnpc", "net-libs/nDPI", "net-libs/nDPI", "net-libs/nativebiginteger", "net-libs/nativebiginteger", "net-libs/neon", "net-libs/neon", "net-libs/neon", "net-libs/neon", "net-libs/net6", "net-libs/netwib", "net-libs/nghttp2", "net-libs/nghttp2", "net-libs/nghttp2", "net-libs/nghttp2", "net-libs/nghttp3", "net-libs/nghttp3", "net-libs/ngtcp2", "net-libs/ngtcp2", "net-libs/nodejs", "net-libs/nodejs", "net-libs/nodejs", "net-libs/nodejs", "net-libs/nodejs", "net-libs/nodejs", "net-libs/nodejs", "net-libs/nodejs", "net-libs/ntirpc", "net-libs/obby", "net-libs/onion", "net-libs/onion", "net-libs/ortp", "net-libs/pacparser", "net-libs/phodav", "net-libs/pjproject", "net-libs/pjproject", "net-libs/quiche", "net-libs/quiche", "net-libs/quiche", "net-libs/quiche", "net-libs/quiche", "net-libs/quiche", "net-libs/quiche", "net-libs/qxmpp", "net-libs/qxmpp", "net-libs/qxmpp", "net-libs/rabbitmq-c", "net-libs/rest", "net-libs/rpc2", "net-libs/rpcsvc-proto", "net-libs/rpcsvc-proto", "net-libs/rtrlib", "net-libs/serf", "net-libs/shairplay", "net-libs/shairplay", "net-libs/shairplay", "net-libs/shairplay", "net-libs/signon-oauth2", "net-libs/signon-ui", "net-libs/signond", "net-libs/socket_wrapper", "net-libs/sofia-sip", "net-libs/srt", "net-libs/srt", "net-libs/srt", "net-libs/stem", "net-libs/telepathy-accounts-signon", "net-libs/telepathy-farstream", "net-libs/telepathy-glib", "net-libs/telepathy-logger-qt", "net-libs/telepathy-qt", "net-libs/telepathy-qt", "net-libs/tox", "net-libs/tox", "net-libs/tox", "net-libs/udns", "net-libs/uhttpmock", "net-libs/usrsctp", "net-libs/usrsctp", "net-libs/wandio", "net-libs/webkit-gtk", "net-libs/wvstreams", "net-libs/wvstreams", "net-libs/xrootd-ceph", "net-libs/xrootd-ceph", "net-libs/xrootd-ceph", "net-libs/xrootd", "net-libs/xrootd", "net-libs/xrootd", "net-libs/zeromq", "net-libs/zeromq", "net-libs/zmqpp", "net-mail/altermime", "net-mail/amavis-logwatch", "net-mail/amavis-logwatch", "net-mail/asmail", "net-mail/automx2", "net-mail/autorespond", "net-mail/autorespond", "net-mail/b4", "net-mail/checkpassword-pam", "net-mail/checkpassword", "net-mail/cmd5checkpw", "net-mail/cmd5checkpw", "net-mail/courier-imap", "net-mail/courier-imap", "net-mail/courierpassd", "net-mail/cyrus-imapd", "net-mail/cyrus-imapd", "net-mail/cyrus-imapd", "net-mail/cyrus-imapd", "net-mail/dbmail", "net-mail/dbmail", "net-mail/django-mailman3", "net-mail/dot-forward", "net-mail/dovecot", "net-mail/dovecot", "net-mail/dovecot", "net-mail/email", "net-mail/eps", "net-mail/ezmlm-idx", "net-mail/ezmlm-idx", "net-mail/fdm", "net-mail/fetchmail", "net-mail/fetchmail", "net-mail/getmail", "net-mail/gnubiff", "net-mail/grepmail", "net-mail/hyperkitty", "net-mail/imapsync", "net-mail/isync", "net-mail/isync", "net-mail/isync", "net-mail/lbdb", "net-mail/libdbx", "net-mail/list-remote-forwards", "net-mail/mailbase", "net-mail/mailbase", "net-mail/mailbox-count", "net-mail/mailfront", "net-mail/mailgraph", "net-mail/mailman-meta", "net-mail/mailman", "net-mail/mailmanclient", "net-mail/mailshears", "net-mail/mailutils", "net-mail/mailutils", "net-mail/mairix", "net-mail/mboxgrep", "net-mail/mess822", "net-mail/metamail", "net-mail/mhonarc-gentoo", "net-mail/mhonarc", "net-mail/mlmmj", "net-mail/mpack", "net-mail/mpop", "net-mail/mswatch", "net-mail/mu", "net-mail/mu", "net-mail/mu", "net-mail/mu", "net-mail/mu", "net-mail/mu", "net-mail/muchsync", "net-mail/nmzmail", "net-mail/notmuch", "net-mail/notmuch", "net-mail/notmuch", "net-mail/onionrouter", "net-mail/onionrouter", "net-mail/pflogsumm", "net-mail/pflogsumm", "net-mail/pfqueue", "net-mail/pop-before-smtp", "net-mail/pop2imap", "net-mail/popa3d", "net-mail/poppassd_ceti", "net-mail/poppassd_ceti", "net-mail/postfix-logwatch", "net-mail/postfix-logwatch", "net-mail/postorius", "net-mail/qlogtools", "net-mail/qmail-autoresponder", "net-mail/qmail-autoresponder", "net-mail/qmail-notify", "net-mail/qmailadmin", "net-mail/qmailadmin", "net-mail/qmailanalog", "net-mail/qmhandle", "net-mail/qmrtg", "net-mail/qprint", "net-mail/qtools", "net-mail/queue-fix", "net-mail/queue-repair", "net-mail/randomsig", "net-mail/relay-ctrl", "net-mail/relay-ctrl", "net-mail/relay-ctrl", "net-mail/renattach", "net-mail/ripmime", "net-mail/ripole", "net-mail/rss2email", "net-mail/rss2email", "net-mail/rss2email", "net-mail/rss2email", "net-mail/safecat", "net-mail/sendEmail", "net-mail/serialmail", "net-mail/signify", "net-mail/smtptools", "net-mail/swaks", "net-mail/t-prot", "net-mail/tnef", "net-mail/tpop3d", "net-mail/vchkuser", "net-mail/vpopmail", "net-mail/vqadmin", "net-mail/ytnef", "net-misc/AQtion", "net-misc/AQtion", "net-misc/AQtion", "net-misc/adjtimex", "net-misc/aget", "net-misc/aggregate", "net-misc/anydesk", "net-misc/anydesk", "net-misc/anydesk", "net-misc/anydesk", "net-misc/anydesk", "net-misc/apt-cacher-ng", "net-misc/apt-cacher-ng", "net-misc/aria2", "net-misc/aria2", "net-misc/arpd", "net-misc/arpsponge", "net-misc/asterisk-core-sounds", "net-misc/asterisk-extra-sounds", "net-misc/asterisk-g729", "net-misc/asterisk-g729", "net-misc/asterisk-g729", "net-misc/asterisk-moh-opsound", "net-misc/asterisk-opus", "net-misc/asterisk-opus", "net-misc/asterisk-opus", "net-misc/asterisk", "net-misc/asterisk", "net-misc/asterisk", "net-misc/astmanproxy", "net-misc/autossh", "net-misc/autoupnp", "net-misc/autoupnp", "net-misc/axel", "net-misc/axel", "net-misc/axel", "net-misc/babeld", "net-misc/babeld", "net-misc/balance", "net-misc/batctl", "net-misc/bfgminer", "net-misc/bgpq3", "net-misc/bgpq3", "net-misc/bird", "net-misc/bird", "net-misc/blinkperl", "net-misc/bopm", "net-misc/bridge-utils", "net-misc/bsdwhois", "net-misc/buka", "net-misc/bwwhois", "net-misc/cadaver", "net-misc/calico-cni-plugin", "net-misc/calicoctl", "net-misc/casync", "net-misc/cbqinit", "net-misc/cbugzilla", "net-misc/cfengine", "net-misc/cgminer", "net-misc/chrome-remote-desktop", "net-misc/chrony", "net-misc/chrony", "net-misc/chrony", "net-misc/clockspeed", "net-misc/clusterssh", "net-misc/clusterssh", "net-misc/clusterssh", "net-misc/cmst", "net-misc/cni-plugins", "net-misc/cni-plugins", "net-misc/cni-plugins", "net-misc/cni-plugins", "net-misc/connect", "net-misc/connman-gtk", "net-misc/connman-json-client", "net-misc/connman-notify", "net-misc/connman-notify", "net-misc/connman-ui", "net-misc/connman-ui", "net-misc/connman", "net-misc/connman", "net-misc/croc", "net-misc/croc", "net-misc/csync", "net-misc/curl", "net-misc/curl", "net-misc/curl", "net-misc/dahdi-tools", "net-misc/dahdi", "net-misc/dahdi", "net-misc/datapipe", "net-misc/dcetest", "net-misc/dhcdrop", "net-misc/dhcp", "net-misc/dhcpcd-ui", "net-misc/dhcpcd", "net-misc/dhcpcd", "net-misc/dhcping", "net-misc/dibbler", "net-misc/dleyna-server", "net-misc/dleyna-server", "net-misc/drive", "net-misc/drive", "net-misc/dropbear", "net-misc/dropbox-cli", "net-misc/dropbox", "net-misc/dropbox", "net-misc/econnman", "net-misc/efax", "net-misc/electron-cash", "net-misc/electron-cash", "net-misc/electrum-ltc", "net-misc/electrum", "net-misc/ena-driver", "net-misc/ena-driver", "net-misc/endlessh", "net-misc/endlessh", "net-misc/ethercard-diag", "net-misc/etherdfs", "net-misc/ethertypes", "net-misc/ethflop", "net-misc/eventd", "net-misc/exabgp", "net-misc/exabgp", "net-misc/fakeidentd", "net-misc/fatrat", "net-misc/felix", "net-misc/freerdp", "net-misc/freerdp", "net-misc/freerdp", "net-misc/freerdp", "net-misc/freerdp", "net-misc/frr", "net-misc/frr", "net-misc/gallery-dl", "net-misc/gallery-dl", "net-misc/gallery-dl", "net-misc/gcap", "net-misc/geoipupdate", "net-misc/geoipupdate", "net-misc/geoipupdate", "net-misc/geomyidae", "net-misc/gerbera", "net-misc/gerbera", "net-misc/getdate", "net-misc/gnome-online-miners", "net-misc/gnome-remote-desktop", "net-misc/gns3-gui", "net-misc/gns3-gui", "net-misc/gns3-server", "net-misc/gns3-server", "net-misc/gofish", "net-misc/grdesktop", "net-misc/grive", "net-misc/grive", "net-misc/gsasl", "net-misc/gsutil", "net-misc/gsutil", "net-misc/gupnp-tools", "net-misc/gvrpcd", "net-misc/gwhois", "net-misc/haeredes", "net-misc/hashcash", "net-misc/hath", "net-misc/htbinit", "net-misc/htpdate", "net-misc/htpdate", "net-misc/htpdate", "net-misc/httpie", "net-misc/httpstat", "net-misc/httptype", "net-misc/hylafaxplus", "net-misc/iaxmodem", "net-misc/icaclient", "net-misc/icaclient", "net-misc/icecast", "net-misc/ices", "net-misc/ifenslave", "net-misc/igmpproxy", "net-misc/ip-sentinel", "net-misc/ipcalc", "net-misc/iperf", "net-misc/iperf", "net-misc/iperf", "net-misc/iperf", "net-misc/iperf", "net-misc/ipmiview", "net-misc/iprange", "net-misc/ipsorcery", "net-misc/ipsvd", "net-misc/iputils", "net-misc/iputils", "net-misc/iputils", "net-misc/ipv6calc", "net-misc/ipv6calc", "net-misc/ipv6calc", "net-misc/ipv6calc", "net-misc/ipv6calc", "net-misc/jlj", "net-misc/jrdesktop", "net-misc/jwhois", "net-misc/kafka-bin", "net-misc/kafka-bin", "net-misc/kafka-bin", "net-misc/kafka-bin", "net-misc/kafkacat", "net-misc/kea", "net-misc/kea", "net-misc/kea", "net-misc/keychain", "net-misc/knock", "net-misc/knock", "net-misc/l7-filter-userspace", "net-misc/l7-protocols", "net-misc/lambdamoo", "net-misc/lanmap", "net-misc/libteam", "net-misc/libteam", "net-misc/linux-eoip", "net-misc/linuxptp", "net-misc/liveice", "net-misc/lksctp-tools", "net-misc/lksctp-tools", "net-misc/lldpd", "net-misc/lldpd", "net-misc/lldpd", "net-misc/lldpd", "net-misc/lyricwikia", "net-misc/mcproxy", "net-misc/megatools", "net-misc/memcached", "net-misc/memcached", "net-misc/mico", "net-misc/mico", "net-misc/midentd", "net-misc/mikutter", "net-misc/mikutter", "net-misc/mikutter", "net-misc/minidlna", "net-misc/minissdpd", "net-misc/minissdpd", "net-misc/miniupnpd", "net-misc/miniupnpd", "net-misc/mobile-broadband-provider-info", "net-misc/mobile-broadband-provider-info", "net-misc/modemmanager", "net-misc/modemmanager", "net-misc/monmotha", "net-misc/mosh", "net-misc/mosh", "net-misc/mrouted", "net-misc/mstpd", "net-misc/mulk", "net-misc/nat-traverse", "net-misc/ncman", "net-misc/ncman", "net-misc/ncp", "net-misc/ndisc6", "net-misc/ndppd", "net-misc/nemesis", "net-misc/netdate", "net-misc/netevent", "net-misc/netifrc", "net-misc/netifrc", "net-misc/netifrc", "net-misc/netifrc", "net-misc/netifrc", "net-misc/netkit-bootparamd", "net-misc/netkit-bootpd", "net-misc/netkit-fingerd", "net-misc/netkit-routed", "net-misc/netkit-rsh", "net-misc/netkit-rsh", "net-misc/netkit-talk", "net-misc/netkit-telnetd", "net-misc/netkit-timed", "net-misc/netopeer2", "net-misc/netpipe", "net-misc/netpipes", "net-misc/netsed", "net-misc/netsed", "net-misc/netstat-nat", "net-misc/networkmanager", "net-misc/networkmanager", "net-misc/networkmanager", "net-misc/nextcloud-client", "net-misc/nextcloud-client", "net-misc/nextcloud-client", "net-misc/nextcloud-client", "net-misc/nextcloud-client", "net-misc/nicstat", "net-misc/npapi-sdk", "net-misc/npapi-sdk", "net-misc/ntp", "net-misc/ntpsec", "net-misc/ntpsec", "net-misc/ntpsec", "net-misc/nx", "net-misc/nx", "net-misc/nxplayer", "net-misc/nxplayer", "net-misc/nyx", "net-misc/ofono", "net-misc/oidc-agent", "net-misc/oidc-agent", "net-misc/oidentd", "net-misc/oidentd", "net-misc/olsrd", "net-misc/olsrd", "net-misc/omniORB", "net-misc/omniORB", "net-misc/omnisync", "net-misc/openntpd", "net-misc/openntpd", "net-misc/openntpd", "net-misc/openr2", "net-misc/openssh", "net-misc/openssh", "net-misc/openssh", "net-misc/openvswitch", "net-misc/openvswitch", "net-misc/owncloud-client", "net-misc/owncloud-client", "net-misc/packETH", "net-misc/pcapfix", "net-misc/pedro", "net-misc/pedro", "net-misc/pen", "net-misc/pimpd", "net-misc/pingu", "net-misc/pingu", "net-misc/pipes", "net-misc/plowshare", "net-misc/plowshare", "net-misc/plowshare", "net-misc/pmsvn", "net-misc/portfwd", "net-misc/portspoof", "net-misc/portspoof", "net-misc/pps-tools", "net-misc/proxychains", "net-misc/proxychains", "net-misc/proxytunnel", "net-misc/proxytunnel", "net-misc/proxytunnel", "net-misc/proxytunnel", "net-misc/ps3mediaserver", "net-misc/pssh", "net-misc/ptpd", "net-misc/ptpd", "net-misc/puf", "net-misc/pulseaudio-dlna", "net-misc/putty", "net-misc/putty", "net-misc/pyhoca-cli", "net-misc/pyhoca-gui", "net-misc/python-x2go", "net-misc/qtm", "net-misc/quagga", "net-misc/r8168", "net-misc/r8168", "net-misc/r8168", "net-misc/rabbitmq-server", "net-misc/rabbitmq-server", "net-misc/radvd", "net-misc/rclone", "net-misc/rclone", "net-misc/rdate", "net-misc/rdate", "net-misc/rdesktop", "net-misc/rdesktop", "net-misc/rdesktop", "net-misc/realtek-r8152", "net-misc/realtek-r8152", "net-misc/redir", "net-misc/redir", "net-misc/remmina", "net-misc/rinetd", "net-misc/rsync", "net-misc/rsync", "net-misc/rwbs", "net-misc/rwhoisd", "net-misc/rygel", "net-misc/s3cmd", "net-misc/s3cmd", "net-misc/s6-networking", "net-misc/s6-networking", "net-misc/s6-networking", "net-misc/s6-networking", "net-misc/s6-networking", "net-misc/samplicator", "net-misc/samplicator", "net-misc/scponly", "net-misc/seafile-client", "net-misc/seafile-client", "net-misc/seafile-client", "net-misc/seafile", "net-misc/seafile", "net-misc/seafile", "net-misc/secpanel", "net-misc/selfdhcp", "net-misc/ser2net", "net-misc/sgopherd", "net-misc/shigofumi", "net-misc/shigofumi", "net-misc/shmux", "net-misc/sipcalc", "net-misc/sipp", "net-misc/sipp", "net-misc/sipsak", "net-misc/sitecopy", "net-misc/sks", "net-misc/smb4k", "net-misc/smbc", "net-misc/snarf", "net-misc/sntpd", "net-misc/sobby", "net-misc/socat", "net-misc/socat", "net-misc/socat", "net-misc/socat", "net-misc/sock", "net-misc/socket-burst-dampener", "net-misc/socket", "net-misc/spice-gtk", "net-misc/spice-gtk", "net-misc/spice-gtk", "net-misc/spice-gtk", "net-misc/spice-gtk", "net-misc/spiped", "net-misc/spiped", "net-misc/spread", "net-misc/spread", "net-misc/ssh-askpass-fullscreen", "net-misc/ssh-chain", "net-misc/sshpass", "net-misc/sshrc", "net-misc/sshrc", "net-misc/sslh", "net-misc/sslh", "net-misc/sslh", "net-misc/sslh", "net-misc/sslh", "net-misc/sslh", "net-misc/sslh", "net-misc/sslh", "net-misc/sstp-client", "net-misc/streamlink", "net-misc/streamlink", "net-misc/streamlink", "net-misc/streamtuner", "net-misc/stunnel", "net-misc/stunnel", "net-misc/stuntman", "net-misc/suite3270", "net-misc/sysrepo", "net-misc/taptap", "net-misc/taylor-uucp", "net-misc/tcpsound", "net-misc/teamviewer", "net-misc/teamviewer", "net-misc/telnet-bsd", "net-misc/throttle", "net-misc/tiers", "net-misc/tigervnc", "net-misc/tigervnc", "net-misc/tipcutils", "net-misc/ttytter", "net-misc/turbovnc", "net-misc/ubridge", "net-misc/ucarp", "net-misc/udpcast", "net-misc/udpxy", "net-misc/uftp", "net-misc/uftp", "net-misc/unison", "net-misc/unison", "net-misc/unix2tcp", "net-misc/usbip", "net-misc/utelnetd", "net-misc/valve", "net-misc/vconfig", "net-misc/vde", "net-misc/vde", "net-misc/vde", "net-misc/vde", "net-misc/vinagre", "net-misc/vino", "net-misc/vmnet", "net-misc/vmpsd", "net-misc/vncrec", "net-misc/vncsnapshot", "net-misc/vrrpd", "net-misc/wakeonlan", "net-misc/websocat", "net-misc/websocketd", "net-misc/wget", "net-misc/wget", "net-misc/wget2", "net-misc/wget2", "net-misc/whatmask", "net-misc/whois", "net-misc/whois", "net-misc/whois", "net-misc/wol", "net-misc/wput", "net-misc/x11-ssh-askpass", "net-misc/x2goclient", "net-misc/x2goserver", "net-misc/xmrig", "net-misc/xmrig", "net-misc/xmrig", "net-misc/xmrig", "net-misc/xmrig", "net-misc/xmrig", "net-misc/xmrig", "net-misc/yandex-disk", "net-misc/you-get", "net-misc/you-get", "net-misc/youtube-dl", "net-misc/youtube-dl", "net-misc/youtube-viewer", "net-misc/youtube-viewer", "net-misc/youtube-viewer", "net-misc/zerotier", "net-misc/zerotier", "net-misc/zssh", "net-misc/zsync", "net-misc/yt-dlp", "net-misc/s4cmd", "net-nds/389-ds-base", "net-nds/adtool", "net-nds/gssproxy", "net-nds/jxplorer", "net-nds/ldapvi", "net-nds/led", "net-nds/nsscache", "net-nds/openldap", "net-nds/openldap", "net-nds/openldap", "net-nds/openldap", "net-nds/phpldapadmin", "net-nds/rpcbind", "net-nds/rpcbind", "net-nds/shelldap", "net-nds/smbldap-tools", "net-nds/tac_plus", "net-nds/tac_plus", "net-nds/tac_plus", "net-nds/yp-tools", "net-news/amphetadesk", "net-news/canto-curses", "net-news/canto-daemon", "net-news/liferea", "net-news/liferea", "net-news/newsboat", "net-news/newsboat", "net-news/rssguard", "net-news/rssguard", "net-news/rsstail", "net-news/rsstail", "net-news/rsstool", "net-news/snownews", "net-news/yydecode", "net-nntp/brag", "net-nntp/leafnode", "net-nntp/newspost", "net-nntp/nzbget", "net-nntp/nzbget", "net-nntp/sabnzbd", "net-nntp/sabnzbd", "net-nntp/sabnzbd", "net-nntp/slrn", "net-nntp/suck", "net-nntp/suck", "net-nntp/tin", "net-p2p/airdcpp-webclient", "net-p2p/airdcpp-webclient", "net-p2p/amule", "net-p2p/amule", "net-p2p/automatic", "net-p2p/bitcoin-cli", "net-p2p/bitcoin-cli", "net-p2p/bitcoin-cli", "net-p2p/bitcoin-qt", "net-p2p/bitcoin-qt", "net-p2p/bitcoin-qt", "net-p2p/bitcoind", "net-p2p/bitcoind", "net-p2p/bitcoind", "net-p2p/bitflu", "net-p2p/bittornado", "net-p2p/bittornado", "net-p2p/bittornado", "net-p2p/classified-ads", "net-p2p/cpuminer-opt", "net-p2p/cpuminer-opt", "net-p2p/ctorrent", "net-p2p/dbhub", "net-p2p/deluge", "net-p2p/deluge", "net-p2p/deluge", "net-p2p/ed2k_hash", "net-p2p/eiskaltdcpp", "net-p2p/eiskaltdcpp", "net-p2p/energi3", "net-p2p/energi3", "net-p2p/energi3", "net-p2p/fms", "net-p2p/freenet", "net-p2p/gnut", "net-p2p/go-ethereum", "net-p2p/go-ethereum", "net-p2p/go-ipfs", "net-p2p/go-ipfs", "net-p2p/gtk-gnutella", "net-p2p/gtk-gnutella", "net-p2p/gtorrentviewer", "net-p2p/ktorrent", "net-p2p/ktorrent", "net-p2p/litecoind", "net-p2p/mktorrent", "net-p2p/mktorrent", "net-p2p/mldonkey", "net-p2p/ncdc", "net-p2p/ncdc", "net-p2p/nicotine+", "net-p2p/nicotine+", "net-p2p/nicotine+", "net-p2p/nicotine+", "net-p2p/opendchub", "net-p2p/qbittorrent", "net-p2p/qbittorrent", "net-p2p/qbittorrent", "net-p2p/qbittorrent", "net-p2p/qbittorrent", "net-p2p/qbittorrent", "net-p2p/resilio-sync", "net-p2p/retroshare", "net-p2p/retroshare", "net-p2p/retroshare", "net-p2p/rtorrent", "net-p2p/rtorrent", "net-p2p/rtorrent", "net-p2p/syncthing", "net-p2p/syncthing", "net-p2p/syncthing", "net-p2p/syrep", "net-p2p/torrentinfo", "net-p2p/transmission-remote-gtk", "net-p2p/transmission", "net-p2p/transmission", "net-p2p/tremc", "net-p2p/tremc", "net-p2p/tvrss", "net-p2p/vuze-coreplugins", "net-p2p/vuze", "net-p2p/vuze", "net-print/apsfilter", "net-print/brlaser", "net-print/c2esp", "net-print/cndrvcups-common-lb", "net-print/cndrvcups-lb", "net-print/cnijfilter2", "net-print/cnrdrvcups-lb", "net-print/cups-bjnp", "net-print/cups-filters", "net-print/cups-filters", "net-print/cups-filters", "net-print/cups-filters", "net-print/cups-filters", "net-print/cups-pdf", "net-print/cups-pdf", "net-print/cups-pk-helper", "net-print/cups-windows", "net-print/cups", "net-print/cups", "net-print/cups", "net-print/dymo-cups-drivers", "net-print/epson-inkjet-printer-escpr", "net-print/fax4cups", "net-print/foo2zjs", "net-print/foo2zjs", "net-print/foomatic-db-engine", "net-print/foomatic-db-ppds", "net-print/foomatic-db", "net-print/foomatic-db", "net-print/foomatic-db", "net-print/gtklp", "net-print/gutenprint", "net-print/gutenprint", "net-print/gutenprint", "net-print/hplip-plugin", "net-print/hplip-plugin", "net-print/hplip", "net-print/hplip", "net-print/ink", "net-print/ink", "net-print/kyocera-1x2x-mfp-driver", "net-print/kyocera-mita-ppds", "net-print/libgnomecups", "net-print/libinklevel", "net-print/lm1100", "net-print/mtink", "net-print/npadmin", "net-print/pnm2ppa", "net-print/poster", "net-print/splix", "net-print/sshlpr", "net-proxy/3proxy", "net-proxy/adzapper", "net-proxy/cntlm", "net-proxy/dante", "net-proxy/dnsproxy", "net-proxy/haproxy-dataplaneapi", "net-proxy/haproxy-dataplaneapi", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/haproxy", "net-proxy/hatop", "net-proxy/havp", "net-proxy/microsocks", "net-proxy/mitmproxy", "net-proxy/mitmproxy", "net-proxy/mitmproxy", "net-proxy/nutcracker", "net-proxy/obfs4proxy", "net-proxy/pingtunnel", "net-proxy/piper", "net-proxy/privoxy", "net-proxy/redsocks", "net-proxy/redsocks", "net-proxy/rejik", "net-proxy/rejik", "net-proxy/shadowsocks-libev", "net-proxy/sqtop", "net-proxy/squid", "net-proxy/squidguard", "net-proxy/squirm", "net-proxy/sshuttle", "net-proxy/tayga", "net-proxy/tayga", "net-proxy/tayga", "net-proxy/tinyproxy", "net-proxy/torsocks", "net-proxy/torsocks", "net-proxy/trojan", "net-proxy/tsocks", "net-proxy/wwwoffle", "net-proxy/ziproxy", "net-voip/captagent", "net-voip/sipvicious", "net-voip/sipvicious", "net-voip/sipvicious", "net-voip/telepathy-gabble", "net-voip/telepathy-rakia", "net-voip/telepathy-salut", "net-voip/yate", "net-voip/yate", "net-vpn/6tunnel", "net-vpn/badvpn", "net-vpn/badvpn", "net-vpn/badvpn", "net-vpn/corkscrew", "net-vpn/fp-multiuser", "net-vpn/frp", "net-vpn/frp", "net-vpn/httptunnel", "net-vpn/i2p", "net-vpn/i2p", "net-vpn/i2pd", "net-vpn/iodine", "net-vpn/ipsec-tools", "net-vpn/isatapd", "net-vpn/libreswan", "net-vpn/libreswan", "net-vpn/libreswan", "net-vpn/libreswan", "net-vpn/libreswan", "net-vpn/logmein-hamachi", "net-vpn/logmein-hamachi", "net-vpn/mullvad-netns", "net-vpn/mullvad-netns", "net-vpn/mullvad-netns", "net-vpn/networkmanager-fortisslvpn", "net-vpn/networkmanager-fortisslvpn", "net-vpn/networkmanager-fortisslvpn", "net-vpn/networkmanager-l2tp", "net-vpn/networkmanager-l2tp", "net-vpn/networkmanager-l2tp", "net-vpn/networkmanager-libreswan", "net-vpn/networkmanager-libreswan", "net-vpn/networkmanager-openconnect", "net-vpn/networkmanager-openvpn", "net-vpn/networkmanager-openvpn", "net-vpn/networkmanager-pptp", "net-vpn/networkmanager-sstp", "net-vpn/networkmanager-strongswan", "net-vpn/networkmanager-vpnc", "net-vpn/nstx", "net-vpn/ocserv", "net-vpn/ocserv", "net-vpn/ocserv", "net-vpn/openconnect", "net-vpn/openconnect", "net-vpn/openconnect", "net-vpn/openconnect", "net-vpn/openconnect", "net-vpn/openfortivpn", "net-vpn/openfortivpn", "net-vpn/openfortivpn", "net-vpn/openvpn", "net-vpn/openvpn", "net-vpn/pptpd", "net-vpn/protonvpn-cli", "net-vpn/riseup-vpn", "net-vpn/strongswan", "net-vpn/tailscale", "net-vpn/tailscale", "net-vpn/tailscale", "net-vpn/tailscale", "net-vpn/tailscale", "net-vpn/tailscale", "net-vpn/tailscale", "net-vpn/tinc", "net-vpn/tinc", "net-vpn/tor", "net-vpn/tor", "net-vpn/vpnc", "net-vpn/vpncwatch", "net-vpn/vtun", "net-vpn/wireguard-modules", "net-vpn/wireguard-tools", "net-wireless/aircrack-ng", "net-wireless/aircrack-ng", "net-wireless/airspy", "net-wireless/airspy", "net-wireless/airspy", "net-wireless/airtraf", "net-wireless/b43-fwcutter", "net-wireless/bladerf-firmware", "net-wireless/bladerf-fpga", "net-wireless/bladerf", "net-wireless/bladerf", "net-wireless/blueberry", "net-wireless/blueman", "net-wireless/blueman", "net-wireless/blueman", "net-wireless/bluez-hcidump", "net-wireless/bluez-tools", "net-wireless/bluez", "net-wireless/bluez", "net-wireless/bluez", "net-wireless/broadcom-sta", "net-wireless/bss", "net-wireless/btcrack", "net-wireless/crackle", "net-wireless/crackle", "net-wireless/crda", "net-wireless/dump1090", "net-wireless/dump1090", "net-wireless/dump1090", "net-wireless/gnome-bluetooth", "net-wireless/gnuradio", "net-wireless/gnuradio", "net-wireless/gobi_loader", "net-wireless/gqrx-scanner", "net-wireless/gqrx", "net-wireless/gqrx", "net-wireless/gr-ieee802154", "net-wireless/gr-ieee802154", "net-wireless/gr-iio", "net-wireless/gr-iio", "net-wireless/gr-iqbal", "net-wireless/gr-iqbal", "net-wireless/gr-m2k", "net-wireless/gr-osmosdr", "net-wireless/gr-osmosdr", "net-wireless/gr-paint", "net-wireless/gr-paint", "net-wireless/gr-rds", "net-wireless/gr-rds", "net-wireless/gr-scan", "net-wireless/gr-scopy", "net-wireless/gr-scopy", "net-wireless/hackrf-tools", "net-wireless/hackrf-tools", "net-wireless/hidclient", "net-wireless/horst", "net-wireless/horst", "net-wireless/hostap-utils", "net-wireless/hostapd", "net-wireless/hostapd", "net-wireless/inspectrum", "net-wireless/inspectrum", "net-wireless/iw", "net-wireless/iwd", "net-wireless/iwd", "net-wireless/iwd", "net-wireless/iwd", "net-wireless/iwd", "net-wireless/iwgtk", "net-wireless/jackit", "net-wireless/kismet-rest", "net-wireless/kismet-rest", "net-wireless/kismet", "net-wireless/kismet", "net-wireless/kismet", "net-wireless/kismet", "net-wireless/kismetdb", "net-wireless/kismetdb", "net-wireless/kismetmobiledashboard", "net-wireless/kismetmobiledashboard", "net-wireless/liblms7002m", "net-wireless/liblms7002m", "net-wireless/libm2k", "net-wireless/libm2k", "net-wireless/libusb3380", "net-wireless/libusb3380", "net-wireless/libxtrx", "net-wireless/libxtrx", "net-wireless/libxtrxdsp", "net-wireless/libxtrxdsp", "net-wireless/libxtrxll", "net-wireless/libxtrxll", "net-wireless/limesuite", "net-wireless/linssid", "net-wireless/lorcon", "net-wireless/lorcon", "net-wireless/lorcon", "net-wireless/madwimax", "net-wireless/mdk", "net-wireless/mfoc", "net-wireless/nanovna-saver", "net-wireless/nanovna-saver", "net-wireless/neard", "net-wireless/osmo-fl2k", "net-wireless/osmo-fl2k", "net-wireless/portapack-firmware", "net-wireless/portapack-havoc", "net-wireless/qdmr", "net-wireless/qdmr", "net-wireless/reaver", "net-wireless/rfkill", "net-wireless/rfkill", "net-wireless/rfkill", "net-wireless/rtl-sdr", "net-wireless/rtl-sdr", "net-wireless/rtl-sdr", "net-wireless/rtl-sdr", "net-wireless/rtl-sdr", "net-wireless/rtl_433", "net-wireless/rtl_433", "net-wireless/rtl_power_fftw", "net-wireless/rtl_power_fftw", "net-wireless/sdrplay", "net-wireless/sigdigger", "net-wireless/sigutils", "net-wireless/soapy_power", "net-wireless/soapy_power", "net-wireless/soapybladerf", "net-wireless/soapybladerf", "net-wireless/soapyhackrf", "net-wireless/soapyhackrf", "net-wireless/soapyplutosdr", "net-wireless/soapyplutosdr", "net-wireless/soapyremote", "net-wireless/soapyremote", "net-wireless/soapyrtlsdr", "net-wireless/soapyrtlsdr", "net-wireless/soapysdr", "net-wireless/soapysdr", "net-wireless/soapysdrplay", "net-wireless/soapysdrplay", "net-wireless/soapysdrplay", "net-wireless/soapyuhd", "net-wireless/soapyuhd", "net-wireless/spectools", "net-wireless/spectools", "net-wireless/srslte", "net-wireless/srslte", "net-wireless/suscan", "net-wireless/suwidgets", "net-wireless/tempestsdr", "net-wireless/tempestsdr", "net-wireless/ubertooth", "net-wireless/ubertooth", "net-wireless/ubertooth", "net-wireless/uhd", "net-wireless/uhd", "net-wireless/unifi", "net-wireless/unifi", "net-wireless/unifi", "net-wireless/unifi", "net-wireless/unifi", "net-wireless/urh", "net-wireless/urh", "net-wireless/wavemon", "net-wireless/wepattack", "net-wireless/wepdecrypt", "net-wireless/wireless-regdb", "net-wireless/wireless-regdb", "net-wireless/wireless-tools", "net-wireless/wpa_supplicant", "net-wireless/wpa_supplicant", "net-wireless/wpa_supplicant", "net-wireless/yatebts", "net-wireless/yatebts", "perl-core/Encode", "perl-core/ExtUtils-MakeMaker", "perl-core/ExtUtils-Manifest", "perl-core/File-Path", "perl-core/File-Temp", "perl-core/File-Temp", "perl-core/Getopt-Long", "perl-core/HTTP-Tiny", "perl-core/IO-Zlib", "perl-core/JSON-PP", "perl-core/Locale-Maketext-Simple", "perl-core/MIME-Base64", "perl-core/Math-BigInt", "perl-core/Math-Complex", "perl-core/Memoize", "perl-core/Module-CoreList", "perl-core/Module-Load", "perl-core/Module-Loaded", "perl-core/Module-Metadata", "perl-core/Params-Check", "perl-core/Pod-Simple", "perl-core/Scalar-List-Utils", "perl-core/Sys-Syslog", "perl-core/Term-ANSIColor", "perl-core/Test-Simple", "perl-core/Test", "perl-core/Text-Balanced", "perl-core/Text-ParseWords", "perl-core/Text-Tabs+Wrap", "perl-core/Thread-Semaphore", "perl-core/Time-HiRes", "perl-core/Unicode-Collate", "perl-core/Unicode-Collate", "perl-core/libnet", "perl-core/parent", "perl-core/podlators", "perl-core/version", "ros-meta/ament_cmake", "ros-meta/ament_cmake", "ros-meta/ament_cmake", "ros-meta/ament_cmake", "ros-meta/ament_cmake", "ros-meta/ament_cmake", "ros-meta/ament_cmake", "ros-meta/ament_cmake", "ros-meta/audio_common", "ros-meta/audio_common", "ros-meta/audio_common", "ros-meta/audio_common", "ros-meta/audio_common", "ros-meta/audio_common", "ros-meta/bond_core", "ros-meta/bond_core", "ros-meta/bond_core", "ros-meta/calibration", "ros-meta/calibration", "ros-meta/calibration", "ros-meta/common_msgs", "ros-meta/common_msgs", "ros-meta/common_msgs", "ros-meta/common_tutorials", "ros-meta/common_tutorials", "ros-meta/common_tutorials", "ros-meta/desktop", "ros-meta/desktop", "ros-meta/desktop_full", "ros-meta/desktop_full", "ros-meta/diagnostics", "ros-meta/diagnostics", "ros-meta/diagnostics", "ros-meta/diagnostics", "ros-meta/diagnostics", "ros-meta/diagnostics", "ros-meta/diagnostics", "ros-meta/driver_common", "ros-meta/driver_common", "ros-meta/driver_common", "ros-meta/executive_smach", "ros-meta/executive_smach", "ros-meta/gazebo_ros_pkgs", "ros-meta/gazebo_ros_pkgs", "ros-meta/gazebo_ros_pkgs", "ros-meta/geographic_info", "ros-meta/geographic_info", "ros-meta/geographic_info", "ros-meta/geometry", "ros-meta/geometry", "ros-meta/geometry2", "ros-meta/geometry2", "ros-meta/geometry2", "ros-meta/geometry2", "ros-meta/geometry_tutorials", "ros-meta/geometry_tutorials", "ros-meta/hector_localization", "ros-meta/hector_localization", "ros-meta/hector_localization", "ros-meta/hector_slam", "ros-meta/hector_slam", "ros-meta/hector_slam", "ros-meta/image_common", "ros-meta/image_common", "ros-meta/image_pipeline", "ros-meta/image_pipeline", "ros-meta/image_pipeline", "ros-meta/image_transport_plugins", "ros-meta/image_transport_plugins", "ros-meta/imu_pipeline", "ros-meta/imu_pipeline", "ros-meta/imu_tools", "ros-meta/imu_tools", "ros-meta/imu_tools", "ros-meta/laser_pipeline", "ros-meta/laser_pipeline", "ros-meta/mavros", "ros-meta/mavros", "ros-meta/mavros", "ros-meta/mavros", "ros-meta/mavros", "ros-meta/navigation", "ros-meta/navigation", "ros-meta/navigation", "ros-meta/nodelet_core", "ros-meta/nodelet_core", "ros-meta/nodelet_core", "ros-meta/perception", "ros-meta/perception", "ros-meta/perception_pcl", "ros-meta/perception_pcl", "ros-meta/perception_pcl", "ros-meta/pr2_common", "ros-meta/pr2_common", "ros-meta/pr2_common", "ros-meta/qt_gui_core", "ros-meta/qt_gui_core", "ros-meta/qt_gui_core", "ros-meta/robot", "ros-meta/robot", "ros-meta/robot_model", "ros-meta/robot_model", "ros-meta/ros", "ros-meta/ros", "ros-meta/ros", "ros-meta/ros", "ros-meta/ros", "ros-meta/ros_base", "ros-meta/ros_base", "ros-meta/ros_comm", "ros-meta/ros_comm", "ros-meta/ros_comm", "ros-meta/ros_comm", "ros-meta/ros_control", "ros-meta/ros_control", "ros-meta/ros_control", "ros-meta/ros_control", "ros-meta/ros_control", "ros-meta/ros_control", "ros-meta/ros_core", "ros-meta/ros_core", "ros-meta/ros_tutorials", "ros-meta/ros_tutorials", "ros-meta/ros_tutorials", "ros-meta/rosbridge_suite", "ros-meta/rosbridge_suite", "ros-meta/rosbridge_suite", "ros-meta/rosbridge_suite", "ros-meta/rosbridge_suite", "ros-meta/roscpp_core", "ros-meta/roscpp_core", "ros-meta/rosserial", "ros-meta/rosserial", "ros-meta/rosserial", "ros-meta/rosserial", "ros-meta/rqt", "ros-meta/rqt", "ros-meta/rqt_common_plugins", "ros-meta/rqt_common_plugins", "ros-meta/rqt_robot_plugins", "ros-meta/rqt_robot_plugins", "ros-meta/simulators", "ros-meta/simulators", "ros-meta/slam_gmapping", "ros-meta/slam_gmapping", "ros-meta/slam_gmapping", "ros-meta/slam_gmapping", "ros-meta/unique_identifier", "ros-meta/unique_identifier", "ros-meta/vision_opencv", "ros-meta/vision_opencv", "ros-meta/vision_visp", "ros-meta/vision_visp", "ros-meta/vision_visp", "ros-meta/visualization_tutorials", "ros-meta/visualization_tutorials", "ros-meta/viz", "ros-meta/viz", "sci-astronomy/aatm", "sci-astronomy/casa-data", "sci-astronomy/cdsclient", "sci-astronomy/celestia", "sci-astronomy/celestia", "sci-astronomy/cpl", "sci-astronomy/ds9-bin", "sci-astronomy/ds9-bin", "sci-astronomy/erfa", "sci-astronomy/esomidas", "sci-astronomy/esorex", "sci-astronomy/fitsh", "sci-astronomy/fitspng", "sci-astronomy/funtools", "sci-astronomy/galaxy", "sci-astronomy/gasgano", "sci-astronomy/gnuastro", "sci-astronomy/healpix", "sci-astronomy/idlastro", "sci-astronomy/idlastro", "sci-astronomy/kstars", "sci-astronomy/kstars", "sci-astronomy/missfits", "sci-astronomy/montage", "sci-astronomy/pal", "sci-astronomy/predict", "sci-astronomy/psfex", "sci-astronomy/pyephem", "sci-astronomy/scamp", "sci-astronomy/sextractor", "sci-astronomy/skycat", "sci-astronomy/skymaker", "sci-astronomy/sofa_c", "sci-astronomy/stellarium", "sci-astronomy/stellarium", "sci-astronomy/stellarium", "sci-astronomy/stiff", "sci-astronomy/stuff", "sci-astronomy/swarp", "sci-astronomy/wcslib", "sci-astronomy/wcslib", "sci-astronomy/wcslib", "sci-astronomy/wcstools", "sci-astronomy/weightwatcher", "sci-astronomy/xephem", "sci-astronomy/xephem", "sci-astronomy/xfitsview", "sci-biology/ApE", "sci-biology/GBrowse", "sci-biology/HTSeq", "sci-biology/HTSeq", "sci-biology/STAR", "sci-biology/aaindex", "sci-biology/abyss", "sci-biology/amap", "sci-biology/augustus", "sci-biology/bamtools", "sci-biology/bamtools", "sci-biology/bcftools", "sci-biology/bedtools", "sci-biology/bedtools", "sci-biology/bfast", "sci-biology/biogrep", "sci-biology/biopandas", "sci-biology/bioperl-db", "sci-biology/bioperl-network", "sci-biology/bioperl-run", "sci-biology/bioperl", "sci-biology/biopython", "sci-biology/biosql", "sci-biology/blat", "sci-biology/bowtie", "sci-biology/bwa", "sci-biology/cd-hit", "sci-biology/clustal-omega", "sci-biology/clustalw-mpi", "sci-biology/clustalw", "sci-biology/clustalw", "sci-biology/clustalx", "sci-biology/consed", "sci-biology/cutg", "sci-biology/dialign-tx", "sci-biology/dialign2", "sci-biology/elph", "sci-biology/embassy-cbstools", "sci-biology/embassy-clustalomega", "sci-biology/embassy-domainatrix", "sci-biology/embassy-domalign", "sci-biology/embassy-domsearch", "sci-biology/embassy-emnu", "sci-biology/embassy-esim4", "sci-biology/embassy-hmmer", "sci-biology/embassy-iprscan", "sci-biology/embassy-mse", "sci-biology/embassy-phylipnew", "sci-biology/embassy-signature", "sci-biology/embassy-structure", "sci-biology/embassy-topo", "sci-biology/embassy-vienna", "sci-biology/embassy", "sci-biology/emboss", "sci-biology/eugene", "sci-biology/exonerate", "sci-biology/express", "sci-biology/fasta", "sci-biology/fasttree", "sci-biology/fastx_toolkit", "sci-biology/finchtv", "sci-biology/foldingathome", "sci-biology/gibbs", "sci-biology/glimmer", "sci-biology/glimmerhmm", "sci-biology/gmap", "sci-biology/hmmer", "sci-biology/hmmer", "sci-biology/iedera", "sci-biology/infernal", "sci-biology/iqpnni", "sci-biology/kalign", "sci-biology/kallisto", "sci-biology/lagan", "sci-biology/libgtextutils", "sci-biology/mafft", "sci-biology/maq", "sci-biology/maqview", "sci-biology/mcl", "sci-biology/mira", "sci-biology/mosaik", "sci-biology/mothur", "sci-biology/mrbayes", "sci-biology/mummer", "sci-biology/muscle", "sci-biology/newick-utils", "sci-biology/pals", "sci-biology/paml", "sci-biology/phrap", "sci-biology/phred", "sci-biology/phylip", "sci-biology/phyml", "sci-biology/picard", "sci-biology/piler", "sci-biology/pilercr", "sci-biology/plink", "sci-biology/poa", "sci-biology/prank", "sci-biology/primer3", "sci-biology/prints", "sci-biology/probcons", "sci-biology/prodigal", "sci-biology/profphd", "sci-biology/prosite", "sci-biology/pysam", "sci-biology/qrna", "sci-biology/raxml", "sci-biology/rebase", "sci-biology/recon", "sci-biology/repeatmasker-libraries", "sci-biology/repeatmasker", "sci-biology/rmblast", "sci-biology/rnaview", "sci-biology/samtools", "sci-biology/samtools", "sci-biology/seaview", "sci-biology/seqan", "sci-biology/sibsim4", "sci-biology/sim4", "sci-biology/stride", "sci-biology/t-coffee", "sci-biology/transfac", "sci-biology/tree-puzzle", "sci-biology/treeviewx", "sci-biology/trf", "sci-biology/trnascan-se", "sci-biology/uchime", "sci-biology/ucsc-genome-browser", "sci-biology/unafold", "sci-biology/update-blastdb", "sci-biology/vcftools", "sci-biology/velvet", "sci-biology/wgs-assembler", "sci-biology/wise", "sci-biology/yass", "sci-calculators/bc-gh", "sci-calculators/bc-gh", "sci-calculators/calcoo", "sci-calculators/datamash", "sci-calculators/galculator", "sci-calculators/grpn", "sci-calculators/hcalc", "sci-calculators/hexcalc", "sci-calculators/keurocalc", "sci-calculators/orpie", "sci-calculators/pcalc", "sci-calculators/pcalc", "sci-calculators/qalculate-gtk", "sci-calculators/qalculate-gtk", "sci-calculators/qalculate-gtk", "sci-calculators/qalculate-gtk", "sci-calculators/speedcrunch", "sci-calculators/tiemu", "sci-calculators/tilp2", "sci-calculators/transcalc", "sci-calculators/units", "sci-calculators/wcalc", "sci-calculators/xsv", "sci-chemistry/GromacsWrapper", "sci-chemistry/MDAnalysis", "sci-chemistry/aqua", "sci-chemistry/autodock", "sci-chemistry/autodock_vina", "sci-chemistry/avogadro2", "sci-chemistry/bodr", "sci-chemistry/cara-bin", "sci-chemistry/chemex", "sci-chemistry/chemical-mime-data", "sci-chemistry/chemtool", "sci-chemistry/clashlist", "sci-chemistry/cluster", "sci-chemistry/dssp", "sci-chemistry/dssp", "sci-chemistry/dssp", "sci-chemistry/dssp", "sci-chemistry/easychem", "sci-chemistry/elem", "sci-chemistry/gelemental", "sci-chemistry/gnome-chemistry-utils", "sci-chemistry/gperiodic", "sci-chemistry/gromacs", "sci-chemistry/gromacs", "sci-chemistry/gromacs", "sci-chemistry/gromacs", "sci-chemistry/gromacs", "sci-chemistry/gromacs", "sci-chemistry/gromacs", "sci-chemistry/ksdssp", "sci-chemistry/mdtraj", "sci-chemistry/mm-align", "sci-chemistry/modeller", "sci-chemistry/molden", "sci-chemistry/moldy", "sci-chemistry/molequeue", "sci-chemistry/molmol", "sci-chemistry/molscript", "sci-chemistry/molsketch", "sci-chemistry/mopac7", "sci-chemistry/mpqc", "sci-chemistry/msms-bin", "sci-chemistry/mustang", "sci-chemistry/namd", "sci-chemistry/nmrglue", "sci-chemistry/numbat", "sci-chemistry/openbabel-perl", "sci-chemistry/openbabel", "sci-chemistry/openbabel", "sci-chemistry/pdbcat", "sci-chemistry/pdbcns", "sci-chemistry/pdbmat", "sci-chemistry/povscript+", "sci-chemistry/prekin", "sci-chemistry/probe", "sci-chemistry/procheck", "sci-chemistry/propka", "sci-chemistry/psi", "sci-chemistry/pymol", "sci-chemistry/pymol", "sci-chemistry/raster3d", "sci-chemistry/suitename", "sci-chemistry/surf", "sci-chemistry/theseus", "sci-chemistry/threeV", "sci-chemistry/tinker", "sci-chemistry/tm-align", "sci-chemistry/vmd", "sci-chemistry/votca-csg", "sci-chemistry/votca-csg", "sci-chemistry/votca-csg", "sci-chemistry/votca-csg", "sci-chemistry/votca-csg", "sci-chemistry/votca-csgapps", "sci-chemistry/votca-csgapps", "sci-chemistry/votca-ctp", "sci-chemistry/votca-xtp", "sci-chemistry/votca-xtp", "sci-chemistry/votca-xtp", "sci-chemistry/votca-xtp", "sci-chemistry/wxmacmolplt", "sci-chemistry/xds-bin", "sci-chemistry/xyza2pipe", "sci-electronics/Stage", "sci-electronics/Stage", "sci-electronics/drahnr-oregano", "sci-electronics/eagle", "sci-electronics/electric", "sci-electronics/electronics-menu", "sci-electronics/espresso-ab", "sci-electronics/fasthenry", "sci-electronics/freehdl", "sci-electronics/fritzing", "sci-electronics/gazebo", "sci-electronics/gazebo", "sci-electronics/gazebo", "sci-electronics/geda-suite", "sci-electronics/geda", "sci-electronics/gerbv", "sci-electronics/gnetman", "sci-electronics/gnucap", "sci-electronics/gsmc", "sci-electronics/gspeakers", "sci-electronics/gspiceui", "sci-electronics/gtkwave", "sci-electronics/gwave", "sci-electronics/irsim", "sci-electronics/iverilog", "sci-electronics/iverilog", "sci-electronics/iverilog", "sci-electronics/kicad-footprints", "sci-electronics/kicad-i18n", "sci-electronics/kicad-meta", "sci-electronics/kicad-packages3d", "sci-electronics/kicad-symbols", "sci-electronics/kicad-templates", "sci-electronics/kicad", "sci-electronics/klayout", "sci-electronics/klayout", "sci-electronics/klayout", "sci-electronics/ktechlab", "sci-electronics/labone", "sci-electronics/librepcb", "sci-electronics/librepcb", "sci-electronics/magic", "sci-electronics/magic", "sci-electronics/netgen", "sci-electronics/ngspice", "sci-electronics/ngspice", "sci-electronics/osqoop", "sci-electronics/pcb", "sci-electronics/petrify", "sci-electronics/puff", "sci-electronics/puff", "sci-electronics/pulseview", "sci-electronics/pulseview", "sci-electronics/qelectrotech", "sci-electronics/qelectrotech", "sci-electronics/quartus-prime-lite", "sci-electronics/quartus-prime-lite", "sci-electronics/sigrok-cli", "sci-electronics/sigrok-cli", "sci-electronics/sigrok-cli", "sci-electronics/spice", "sci-electronics/splat", "sci-electronics/systemc", "sci-electronics/vbs", "sci-electronics/voacapl", "sci-electronics/xcircuit", "sci-electronics/xcircuit", "sci-electronics/xnec2c", "sci-electronics/xoscope", "sci-geosciences/GeographicLib", "sci-geosciences/bt747", "sci-geosciences/congen", "sci-geosciences/dcw-gmt", "sci-geosciences/folium", "sci-geosciences/foxtrotgps", "sci-geosciences/foxtrotgps", "sci-geosciences/geocode-glib", "sci-geosciences/geopy", "sci-geosciences/gmaptool", "sci-geosciences/gmt", "sci-geosciences/gmt", "sci-geosciences/gnome-maps", "sci-geosciences/gnome-maps", "sci-geosciences/gnome-maps", "sci-geosciences/gpsbabel", "sci-geosciences/gpsbabel", "sci-geosciences/gpsbabel", "sci-geosciences/gpscorrelate", "sci-geosciences/gpsd", "sci-geosciences/gpsd", "sci-geosciences/gpsd", "sci-geosciences/gpx-viewer", "sci-geosciences/gpxlab", "sci-geosciences/gpxsee", "sci-geosciences/gpxsee", "sci-geosciences/gpxsee", "sci-geosciences/gpxsee", "sci-geosciences/gpxsee", "sci-geosciences/gpxsee", "sci-geosciences/grass", "sci-geosciences/grass", "sci-geosciences/gshhg-gmt", "sci-geosciences/gshhs-data", "sci-geosciences/gshhs", "sci-geosciences/gtk-g-rays2", "sci-geosciences/harmonics-dwf-free-noncomm", "sci-geosciences/harmonics-dwf-free", "sci-geosciences/josm", "sci-geosciences/josm", "sci-geosciences/laszip", "sci-geosciences/liblas", "sci-geosciences/libtcd", "sci-geosciences/mapserver", "sci-geosciences/mc2bsbh", "sci-geosciences/merkaartor", "sci-geosciences/merkaartor", "sci-geosciences/merkaartor", "sci-geosciences/mtkbabel", "sci-geosciences/opencpn-plugin-br24radar", "sci-geosciences/opencpn-plugin-br24radar", "sci-geosciences/opencpn-plugin-climatology", "sci-geosciences/opencpn-plugin-climatology", "sci-geosciences/opencpn-plugin-dr", "sci-geosciences/opencpn-plugin-dr", "sci-geosciences/opencpn-plugin-findit", "sci-geosciences/opencpn-plugin-findit", "sci-geosciences/opencpn-plugin-gxradar", "sci-geosciences/opencpn-plugin-gxradar", "sci-geosciences/opencpn-plugin-iacfleet", "sci-geosciences/opencpn-plugin-iacfleet", "sci-geosciences/opencpn-plugin-launcher", "sci-geosciences/opencpn-plugin-launcher", "sci-geosciences/opencpn-plugin-logbookkonni", "sci-geosciences/opencpn-plugin-logbookkonni", "sci-geosciences/opencpn-plugin-objsearch", "sci-geosciences/opencpn-plugin-objsearch", "sci-geosciences/opencpn-plugin-ocpn_draw", "sci-geosciences/opencpn-plugin-ocpn_draw", "sci-geosciences/opencpn-plugin-ocpndebugger", "sci-geosciences/opencpn-plugin-ocpndebugger", "sci-geosciences/opencpn-plugin-oesenc", "sci-geosciences/opencpn-plugin-oesenc", "sci-geosciences/opencpn-plugin-otcurrent", "sci-geosciences/opencpn-plugin-otcurrent", "sci-geosciences/opencpn-plugin-polar", "sci-geosciences/opencpn-plugin-polar", "sci-geosciences/opencpn-plugin-radar", "sci-geosciences/opencpn-plugin-radar", "sci-geosciences/opencpn-plugin-route", "sci-geosciences/opencpn-plugin-route", "sci-geosciences/opencpn-plugin-squiddio", "sci-geosciences/opencpn-plugin-squiddio", "sci-geosciences/opencpn-plugin-statusbar", "sci-geosciences/opencpn-plugin-statusbar", "sci-geosciences/opencpn-plugin-watchdog", "sci-geosciences/opencpn-plugin-watchdog", "sci-geosciences/opencpn-plugin-weather_routing", "sci-geosciences/opencpn-plugin-weather_routing", "sci-geosciences/opencpn-plugin-weatherfax", "sci-geosciences/opencpn-plugin-weatherfax", "sci-geosciences/opencpn-plugins-meta", "sci-geosciences/opencpn", "sci-geosciences/osm-gps-map", "sci-geosciences/osm2pgsql", "sci-geosciences/osm2pgsql", "sci-geosciences/osmctools", "sci-geosciences/qgis", "sci-geosciences/qgis", "sci-geosciences/qgis", "sci-geosciences/qgis", "sci-geosciences/qmapshack", "sci-geosciences/qmapshack", "sci-geosciences/readosm", "sci-geosciences/readosm", "sci-geosciences/routino", "sci-geosciences/swmm", "sci-geosciences/tcd-utils", "sci-geosciences/viking", "sci-geosciences/viking", "sci-geosciences/xtide", "sci-geosciences/josm-bin", "sci-geosciences/josm-bin", "sci-libs/ViSP", "sci-libs/adolc", "sci-libs/adolc", "sci-libs/alglib", "sci-libs/amd", "sci-libs/amd", "sci-libs/armadillo", "sci-libs/armadillo", "sci-libs/arpack", "sci-libs/arpack", "sci-libs/arprec", "sci-libs/atlas", "sci-libs/avogadrolibs", "sci-libs/beagle", "sci-libs/blis", "sci-libs/bliss", "sci-libs/bmrblib", "sci-libs/branca", "sci-libs/brial", "sci-libs/btf", "sci-libs/buddy", "sci-libs/camd", "sci-libs/camd", "sci-libs/cantera", "sci-libs/cartopy", "sci-libs/ccfits", "sci-libs/ccolamd", "sci-libs/cdd+", "sci-libs/cddlib", "sci-libs/cdf", "sci-libs/ceres-solver", "sci-libs/ceres-solver", "sci-libs/cfitsio", "sci-libs/cgcode", "sci-libs/cgnslib", "sci-libs/cholmod", "sci-libs/cholmod", "sci-libs/cifparse-obj", "sci-libs/clapack", "sci-libs/clashscore-db", "sci-libs/clblas", "sci-libs/clblast", "sci-libs/cln", "sci-libs/cminpack", "sci-libs/cmpfit", "sci-libs/coinhsl", "sci-libs/coinor-alps", "sci-libs/coinor-bcp", "sci-libs/coinor-bcps", "sci-libs/coinor-blis", "sci-libs/coinor-bonmin", "sci-libs/coinor-cbc", "sci-libs/coinor-cgl", "sci-libs/coinor-clp", "sci-libs/coinor-couenne", "sci-libs/coinor-cppad", "sci-libs/coinor-csdp", "sci-libs/coinor-dip", "sci-libs/coinor-dylp", "sci-libs/coinor-flopcpp", "sci-libs/coinor-mp", "sci-libs/coinor-netlib", "sci-libs/coinor-os", "sci-libs/coinor-osi", "sci-libs/coinor-sample", "sci-libs/coinor-smi", "sci-libs/coinor-symphony", "sci-libs/coinor-utils", "sci-libs/coinor-vol", "sci-libs/colamd", "sci-libs/colpack", "sci-libs/cqrlib", "sci-libs/cxsparse", "sci-libs/dcmtk", "sci-libs/dealii", "sci-libs/dealii", "sci-libs/dealii", "sci-libs/dealii", "sci-libs/djbfft", "sci-libs/djbfft", "sci-libs/dlib", "sci-libs/dmlc-core", "sci-libs/dsdp", "sci-libs/eccodes", "sci-libs/exodusii", "sci-libs/fcl", "sci-libs/fcl", "sci-libs/fcl", "sci-libs/fetk", "sci-libs/fflas-ffpack", "sci-libs/fftw", "sci-libs/fftw", "sci-libs/flann", "sci-libs/flann", "sci-libs/fplll", "sci-libs/fplll", "sci-libs/galib", "sci-libs/gamer", "sci-libs/gaul-devel", "sci-libs/gdal", "sci-libs/gdal", "sci-libs/gdal", "sci-libs/gdal", "sci-libs/gdal", "sci-libs/geos", "sci-libs/geos", "sci-libs/geos", "sci-libs/gerris", "sci-libs/getdata", "sci-libs/ginkgo", "sci-libs/ginkgo", "sci-libs/ginkgo", "sci-libs/givaro", "sci-libs/givaro", "sci-libs/gmsh", "sci-libs/gmsh", "sci-libs/gsl", "sci-libs/gsl", "sci-libs/gsl", "sci-libs/gts", "sci-libs/h5hut", "sci-libs/h5part", "sci-libs/hdf", "sci-libs/hdf", "sci-libs/hdf5", "sci-libs/hdf5", "sci-libs/hdf5", "sci-libs/hipCUB", "sci-libs/hipSPARSE", "sci-libs/htslib", "sci-libs/hypre", "sci-libs/hypre", "sci-libs/idlcoyote", "sci-libs/idlcoyote", "sci-libs/idlmarkwardt", "sci-libs/ignition-common", "sci-libs/ignition-fuel-tools", "sci-libs/ignition-math", "sci-libs/iml", "sci-libs/inchi", "sci-libs/indilib", "sci-libs/indilib", "sci-libs/indilib", "sci-libs/indilib", "sci-libs/io_lib", "sci-libs/io_lib", "sci-libs/ipopt", "sci-libs/itpp", "sci-libs/jama", "sci-libs/keras-applications", "sci-libs/keras-preprocessing", "sci-libs/kim-api", "sci-libs/kissfft", "sci-libs/kissfft", "sci-libs/klu", "sci-libs/klu", "sci-libs/lapack", "sci-libs/lapack", "sci-libs/lapack", "sci-libs/lapack", "sci-libs/ldl", "sci-libs/lemon", "sci-libs/levmar", "sci-libs/libaec", "sci-libs/libbraiding", "sci-libs/libbraiding", "sci-libs/libbufr", "sci-libs/libccd", "sci-libs/libccd", "sci-libs/libcerf", "sci-libs/libcmatrix", "sci-libs/libdap", "sci-libs/libecpint", "sci-libs/libexcelformat", "sci-libs/libgenome", "sci-libs/libgeodecomp", "sci-libs/libgeotiff", "sci-libs/libgeotiff", "sci-libs/libghemical", "sci-libs/libh2o", "sci-libs/libh2oxx", "sci-libs/libhomfly", "sci-libs/libigl", "sci-libs/libint", "sci-libs/libint", "sci-libs/libint", "sci-libs/libmems", "sci-libs/libmems", "sci-libs/libmuscle", "sci-libs/libnova", "sci-libs/liborigin", "sci-libs/liborigin", "sci-libs/libpdb++", "sci-libs/libpdb", "sci-libs/libqalculate", "sci-libs/libqalculate", "sci-libs/libqalculate", "sci-libs/libqalculate", "sci-libs/libsc", "sci-libs/libsc", "sci-libs/libsigrok", "sci-libs/libsigrok", "sci-libs/libsigrokdecode", "sci-libs/libsigrokdecode", "sci-libs/libspatialindex", "sci-libs/libsvm", "sci-libs/libsvm", "sci-libs/libticables2", "sci-libs/libticalcs2", "sci-libs/libticonv", "sci-libs/libtifiles2", "sci-libs/libxc", "sci-libs/libxc", "sci-libs/linbox", "sci-libs/linux-gpib-modules", "sci-libs/linux-gpib-modules", "sci-libs/linux-gpib", "sci-libs/lis", "sci-libs/lmfit", "sci-libs/lrslib", "sci-libs/lrslib", "sci-libs/m4ri", "sci-libs/m4rie", "sci-libs/mathgl", "sci-libs/matio", "sci-libs/mc", "sci-libs/med", "sci-libs/metis", "sci-libs/metis", "sci-libs/minuit", "sci-libs/mkl", "sci-libs/mpfi", "sci-libs/mpir", "sci-libs/mumps", "sci-libs/nanoflann", "sci-libs/nanoflann", "sci-libs/neartree", "sci-libs/nemesis", "sci-libs/netcdf-cxx", "sci-libs/netcdf-cxx", "sci-libs/netcdf-cxx", "sci-libs/netcdf-fortran", "sci-libs/netcdf", "sci-libs/nfft", "sci-libs/nlopt", "sci-libs/numkit", "sci-libs/o2scl", "sci-libs/oc", "sci-libs/oce", "sci-libs/octomap", "sci-libs/ogdi", "sci-libs/openblas", "sci-libs/openblas", "sci-libs/openblas", "sci-libs/openblas", "sci-libs/opencascade", "sci-libs/opencascade", "sci-libs/opencascade", "sci-libs/openlibm", "sci-libs/orocos-bfl", "sci-libs/orocos_kdl", "sci-libs/orocos_kdl", "sci-libs/p4est", "sci-libs/p4est", "sci-libs/parmetis", "sci-libs/parmetis", "sci-libs/pastix", "sci-libs/pastix", "sci-libs/pastix", "sci-libs/pcl", "sci-libs/pcl", "sci-libs/pgplot", "sci-libs/plplot", "sci-libs/primegen", "sci-libs/profnet", "sci-libs/profphd-utils", "sci-libs/proj", "sci-libs/proj", "sci-libs/proj", "sci-libs/punc", "sci-libs/pyshp", "sci-libs/qd", "sci-libs/qd", "sci-libs/qfits", "sci-libs/qrupdate", "sci-libs/qrupdate", "sci-libs/rocFFT", "sci-libs/rocPRIM", "sci-libs/rocPRIM", "sci-libs/rocRAND", "sci-libs/rocSPARSE", "sci-libs/rocSPARSE", "sci-libs/rocThrust", "sci-libs/rosetta-db", "sci-libs/rtabmap", "sci-libs/rtabmap", "sci-libs/rtree", "sci-libs/scalapack", "sci-libs/scikit-image", "sci-libs/scikit-learn", "sci-libs/scikit-optimize", "sci-libs/scotch", "sci-libs/scotch", "sci-libs/scotch", "sci-libs/shapelib", "sci-libs/shapely", "sci-libs/silo", "sci-libs/spglib", "sci-libs/spqr", "sci-libs/spr", "sci-libs/stellarsolver", "sci-libs/suitesparse", "sci-libs/suitesparseconfig", "sci-libs/sundials", "sci-libs/sundials", "sci-libs/sundials", "sci-libs/superlu", "sci-libs/superlu", "sci-libs/superlu_mt", "sci-libs/symengine", "sci-libs/symengine", "sci-libs/symmetrica", "sci-libs/szip", "sci-libs/szip", "sci-libs/ta-lib", "sci-libs/tamu_anova", "sci-libs/taucs", "sci-libs/tensorflow-estimator", "sci-libs/tensorflow-estimator", "sci-libs/tensorflow-estimator", "sci-libs/tensorflow", "sci-libs/tensorflow", "sci-libs/tensorflow", "sci-libs/tnt", "sci-libs/trilinos", "sci-libs/udunits", "sci-libs/ufconfig", "sci-libs/umfpack", "sci-libs/volk", "sci-libs/volk", "sci-libs/voro++", "sci-libs/votca-tools", "sci-libs/votca-tools", "sci-libs/votca-tools", "sci-libs/votca-tools", "sci-libs/votca-tools", "sci-libs/vtk", "sci-libs/vtk", "sci-libs/xdmf2", "sci-libs/xdrfile", "sci-libs/xgks-pmel", "sci-libs/xylib", "sci-libs/rocBLAS", "sci-libs/libcifpp", "sci-mathematics/4ti2", "sci-mathematics/agda-stdlib", "sci-mathematics/agda", "sci-mathematics/alt-ergo", "sci-mathematics/arb", "sci-mathematics/arb", "sci-mathematics/arb", "sci-mathematics/bertini", "sci-mathematics/calc", "sci-mathematics/calc", "sci-mathematics/cgal", "sci-mathematics/cgal", "sci-mathematics/cgal", "sci-mathematics/cgal", "sci-mathematics/cliquer", "sci-mathematics/cliquer", "sci-mathematics/coq", "sci-mathematics/coq", "sci-mathematics/coq", "sci-mathematics/coq", "sci-mathematics/coq", "sci-mathematics/coq", "sci-mathematics/cvc4", "sci-mathematics/cvc4", "sci-mathematics/dataplot", "sci-mathematics/diagrtb", "sci-mathematics/dsfmt", "sci-mathematics/dunshire", "sci-mathematics/eclib", "sci-mathematics/eclib", "sci-mathematics/ent", "sci-mathematics/euler", "sci-mathematics/fann", "sci-mathematics/fann", "sci-mathematics/flint", "sci-mathematics/flintqs", "sci-mathematics/form", "sci-mathematics/fricas", "sci-mathematics/fricas", "sci-mathematics/frobby", "sci-mathematics/genius", "sci-mathematics/geogebra-bin", "sci-mathematics/geomview", "sci-mathematics/gfan", "sci-mathematics/gfan", "sci-mathematics/giac", "sci-mathematics/gimps", "sci-mathematics/gimps", "sci-mathematics/gimps", "sci-mathematics/ginac", "sci-mathematics/ginac", "sci-mathematics/glpk", "sci-mathematics/glpk", "sci-mathematics/gmm", "sci-mathematics/gmm", "sci-mathematics/gmp-ecm", "sci-mathematics/gmp-ecm", "sci-mathematics/gp2c", "sci-mathematics/gp2c", "sci-mathematics/gretl", "sci-mathematics/gsl-shell", "sci-mathematics/jags", "sci-mathematics/jags", "sci-mathematics/lcalc", "sci-mathematics/lpsolve", "sci-mathematics/lrcalc", "sci-mathematics/lrcalc", "sci-mathematics/mathematica", "sci-mathematics/mathematica", "sci-mathematics/mathematica", "sci-mathematics/mathmod", "sci-mathematics/mathomatic", "sci-mathematics/maxima", "sci-mathematics/maxima", "sci-mathematics/maxima", "sci-mathematics/maxima", "sci-mathematics/minisat", "sci-mathematics/msieve", "sci-mathematics/nauty", "sci-mathematics/nauty", "sci-mathematics/nestedsums", "sci-mathematics/normaliz", "sci-mathematics/normaliz", "sci-mathematics/num-utils", "sci-mathematics/octave-epstk", "sci-mathematics/octave", "sci-mathematics/octave", "sci-mathematics/otter", "sci-mathematics/pari-data", "sci-mathematics/pari", "sci-mathematics/pari", "sci-mathematics/pari", "sci-mathematics/petsc", "sci-mathematics/petsc", "sci-mathematics/petsc", "sci-mathematics/planarity", "sci-mathematics/planarity", "sci-mathematics/polymake", "sci-mathematics/prng", "sci-mathematics/prover9", "sci-mathematics/psmt2-frontend", "sci-mathematics/pspp", "sci-mathematics/pspp", "sci-mathematics/relational", "sci-mathematics/rkward", "sci-mathematics/rngstreams", "sci-mathematics/rstudio", "sci-mathematics/rw", "sci-mathematics/sha1-polyml", "sci-mathematics/singular", "sci-mathematics/singular", "sci-mathematics/singular", "sci-mathematics/slepc", "sci-mathematics/slepc", "sci-mathematics/slepc", "sci-mathematics/spin", "sci-mathematics/sympow", "sci-mathematics/topcom", "sci-mathematics/topcom", "sci-mathematics/twelf", "sci-mathematics/unuran", "sci-mathematics/why3-for-spark", "sci-mathematics/why3-for-spark", "sci-mathematics/why3-for-spark", "sci-mathematics/why3-for-spark", "sci-mathematics/wxmaxima", "sci-mathematics/wxmaxima", "sci-mathematics/wxmaxima", "sci-mathematics/wxmaxima", "sci-mathematics/wxmaxima", "sci-mathematics/yacas", "sci-mathematics/yafu", "sci-mathematics/z3", "sci-misc/ViSP-images", "sci-misc/apertium", "sci-misc/boinc", "sci-misc/boinc", "sci-misc/boinc", "sci-misc/cdfplayer", "sci-misc/fitscut", "sci-misc/fitsverify", "sci-misc/flashdot", "sci-misc/gt-itm", "sci-misc/h5utils", "sci-misc/lttoolbox", "sci-misc/nco", "sci-misc/ncview", "sci-misc/netlogo-bin", "sci-misc/netlogo-bin", "sci-misc/oww", "sci-misc/vitables", "sci-misc/vitables", "sci-physics/bullet", "sci-physics/bullet", "sci-physics/bullet", "sci-physics/clhep", "sci-physics/clhep", "sci-physics/clhep", "sci-physics/espresso", "sci-physics/espresso", "sci-physics/fastjet", "sci-physics/geant-data", "sci-physics/geant-data", "sci-physics/geant-data", "sci-physics/geant", "sci-physics/geant", "sci-physics/geant", "sci-physics/geant", "sci-physics/hepmc", "sci-physics/heppdt", "sci-physics/herwig", "sci-physics/lammps", "sci-physics/lhapdf", "sci-physics/looptools", "sci-physics/pythia", "sci-physics/pythia", "sci-physics/qmeq", "sci-physics/reduze", "sci-physics/root", "sci-physics/root", "sci-physics/root", "sci-physics/root", "sci-physics/siscone", "sci-physics/thepeg", "sci-physics/thepeg", "sci-physics/vgm", "sci-physics/vgm", "sci-physics/vgm", "sci-physics/vmc", "sci-physics/vmc", "sci-physics/xfoil", "sci-physics/yoda", "sci-physics/yoda", "sci-physics/geant4_vmc", "sci-physics/geant4_vmc", "sci-visualization/circos", "sci-visualization/dash-core-components", "sci-visualization/dash-html-components", "sci-visualization/dash-table", "sci-visualization/dash", "sci-visualization/epix", "sci-visualization/fig2sxd", "sci-visualization/fityk", "sci-visualization/g3data", "sci-visualization/gcalc", "sci-visualization/ggobi", "sci-visualization/gle", "sci-visualization/gnuplot", "sci-visualization/gnuplot", "sci-visualization/gnuplot", "sci-visualization/gnuplot", "sci-visualization/gr", "sci-visualization/gr", "sci-visualization/grace", "sci-visualization/grace", "sci-visualization/gri", "sci-visualization/gwyddion", "sci-visualization/jupyter-dash", "sci-visualization/kst", "sci-visualization/labplot", "sci-visualization/labplot", "sci-visualization/opendx-samples", "sci-visualization/opendx", "sci-visualization/paraview", "sci-visualization/paraview", "sci-visualization/paraview", "sci-visualization/pythonprop", "sci-visualization/quickplot", "sci-visualization/quickplot", "sci-visualization/scidavis", "sci-visualization/spectromatic", "sci-visualization/spyview", "sci-visualization/spyview", "sci-visualization/tensorboard", "sci-visualization/tensorboard", "sci-visualization/veusz", "sci-visualization/veusz", "sci-visualization/xd3d", "sci-visualization/xgraph", "sci-visualization/xyscan", "sci-visualization/zhu3d", "sec-policy/apparmor-profiles", "sec-policy/apparmor-profiles", "sec-policy/selinux-abrt", "sec-policy/selinux-abrt", "sec-policy/selinux-abrt", "sec-policy/selinux-accountsd", "sec-policy/selinux-accountsd", "sec-policy/selinux-accountsd", "sec-policy/selinux-acct", "sec-policy/selinux-acct", "sec-policy/selinux-acct", "sec-policy/selinux-afs", "sec-policy/selinux-afs", "sec-policy/selinux-afs", "sec-policy/selinux-aide", "sec-policy/selinux-aide", "sec-policy/selinux-aide", "sec-policy/selinux-alsa", "sec-policy/selinux-alsa", "sec-policy/selinux-alsa", "sec-policy/selinux-amanda", "sec-policy/selinux-amanda", "sec-policy/selinux-amanda", "sec-policy/selinux-amavis", "sec-policy/selinux-amavis", "sec-policy/selinux-amavis", "sec-policy/selinux-android", "sec-policy/selinux-android", "sec-policy/selinux-android", "sec-policy/selinux-apache", "sec-policy/selinux-apache", "sec-policy/selinux-apache", "sec-policy/selinux-apcupsd", "sec-policy/selinux-apcupsd", "sec-policy/selinux-apcupsd", "sec-policy/selinux-apm", "sec-policy/selinux-apm", "sec-policy/selinux-apm", "sec-policy/selinux-arpwatch", "sec-policy/selinux-arpwatch", "sec-policy/selinux-arpwatch", "sec-policy/selinux-asterisk", "sec-policy/selinux-asterisk", "sec-policy/selinux-asterisk", "sec-policy/selinux-at", "sec-policy/selinux-at", "sec-policy/selinux-at", "sec-policy/selinux-automount", "sec-policy/selinux-automount", "sec-policy/selinux-automount", "sec-policy/selinux-avahi", "sec-policy/selinux-avahi", "sec-policy/selinux-avahi", "sec-policy/selinux-awstats", "sec-policy/selinux-awstats", "sec-policy/selinux-awstats", "sec-policy/selinux-backup", "sec-policy/selinux-backup", "sec-policy/selinux-backup", "sec-policy/selinux-bacula", "sec-policy/selinux-bacula", "sec-policy/selinux-bacula", "sec-policy/selinux-base-policy", "sec-policy/selinux-base-policy", "sec-policy/selinux-base-policy", "sec-policy/selinux-base", "sec-policy/selinux-base", "sec-policy/selinux-base", "sec-policy/selinux-bind", "sec-policy/selinux-bind", "sec-policy/selinux-bind", "sec-policy/selinux-bitcoin", "sec-policy/selinux-bitcoin", "sec-policy/selinux-bitcoin", "sec-policy/selinux-bitlbee", "sec-policy/selinux-bitlbee", "sec-policy/selinux-bitlbee", "sec-policy/selinux-bluetooth", "sec-policy/selinux-bluetooth", "sec-policy/selinux-bluetooth", "sec-policy/selinux-brctl", "sec-policy/selinux-brctl", "sec-policy/selinux-brctl", "sec-policy/selinux-cachefilesd", "sec-policy/selinux-cachefilesd", "sec-policy/selinux-cachefilesd", "sec-policy/selinux-calamaris", "sec-policy/selinux-calamaris", "sec-policy/selinux-calamaris", "sec-policy/selinux-canna", "sec-policy/selinux-canna", "sec-policy/selinux-canna", "sec-policy/selinux-ccs", "sec-policy/selinux-ccs", "sec-policy/selinux-ccs", "sec-policy/selinux-cdrecord", "sec-policy/selinux-cdrecord", "sec-policy/selinux-cdrecord", "sec-policy/selinux-ceph", "sec-policy/selinux-ceph", "sec-policy/selinux-ceph", "sec-policy/selinux-cgmanager", "sec-policy/selinux-cgmanager", "sec-policy/selinux-cgmanager", "sec-policy/selinux-cgroup", "sec-policy/selinux-cgroup", "sec-policy/selinux-cgroup", "sec-policy/selinux-chromium", "sec-policy/selinux-chromium", "sec-policy/selinux-chromium", "sec-policy/selinux-chronyd", "sec-policy/selinux-chronyd", "sec-policy/selinux-chronyd", "sec-policy/selinux-clamav", "sec-policy/selinux-clamav", "sec-policy/selinux-clamav", "sec-policy/selinux-clockspeed", "sec-policy/selinux-clockspeed", "sec-policy/selinux-clockspeed", "sec-policy/selinux-collectd", "sec-policy/selinux-collectd", "sec-policy/selinux-collectd", "sec-policy/selinux-colord", "sec-policy/selinux-colord", "sec-policy/selinux-colord", "sec-policy/selinux-corosync", "sec-policy/selinux-corosync", "sec-policy/selinux-corosync", "sec-policy/selinux-couchdb", "sec-policy/selinux-couchdb", "sec-policy/selinux-couchdb", "sec-policy/selinux-courier", "sec-policy/selinux-courier", "sec-policy/selinux-courier", "sec-policy/selinux-cpucontrol", "sec-policy/selinux-cpucontrol", "sec-policy/selinux-cpucontrol", "sec-policy/selinux-cpufreqselector", "sec-policy/selinux-cpufreqselector", "sec-policy/selinux-cpufreqselector", "sec-policy/selinux-cups", "sec-policy/selinux-cups", "sec-policy/selinux-cups", "sec-policy/selinux-cvs", "sec-policy/selinux-cvs", "sec-policy/selinux-cvs", "sec-policy/selinux-cyphesis", "sec-policy/selinux-cyphesis", "sec-policy/selinux-cyphesis", "sec-policy/selinux-daemontools", "sec-policy/selinux-daemontools", "sec-policy/selinux-daemontools", "sec-policy/selinux-dante", "sec-policy/selinux-dante", "sec-policy/selinux-dante", "sec-policy/selinux-dbadm", "sec-policy/selinux-dbadm", "sec-policy/selinux-dbadm", "sec-policy/selinux-dbskk", "sec-policy/selinux-dbskk", "sec-policy/selinux-dbskk", "sec-policy/selinux-dbus", "sec-policy/selinux-dbus", "sec-policy/selinux-dbus", "sec-policy/selinux-dcc", "sec-policy/selinux-dcc", "sec-policy/selinux-dcc", "sec-policy/selinux-ddclient", "sec-policy/selinux-ddclient", "sec-policy/selinux-ddclient", "sec-policy/selinux-ddcprobe", "sec-policy/selinux-ddcprobe", "sec-policy/selinux-ddcprobe", "sec-policy/selinux-denyhosts", "sec-policy/selinux-denyhosts", "sec-policy/selinux-denyhosts", "sec-policy/selinux-devicekit", "sec-policy/selinux-devicekit", "sec-policy/selinux-devicekit", "sec-policy/selinux-dhcp", "sec-policy/selinux-dhcp", "sec-policy/selinux-dhcp", "sec-policy/selinux-dictd", "sec-policy/selinux-dictd", "sec-policy/selinux-dictd", "sec-policy/selinux-dirmngr", "sec-policy/selinux-dirmngr", "sec-policy/selinux-dirmngr", "sec-policy/selinux-dirsrv", "sec-policy/selinux-dirsrv", "sec-policy/selinux-dirsrv", "sec-policy/selinux-distcc", "sec-policy/selinux-distcc", "sec-policy/selinux-distcc", "sec-policy/selinux-djbdns", "sec-policy/selinux-djbdns", "sec-policy/selinux-djbdns", "sec-policy/selinux-dkim", "sec-policy/selinux-dkim", "sec-policy/selinux-dkim", "sec-policy/selinux-dmidecode", "sec-policy/selinux-dmidecode", "sec-policy/selinux-dmidecode", "sec-policy/selinux-dnsmasq", "sec-policy/selinux-dnsmasq", "sec-policy/selinux-dnsmasq", "sec-policy/selinux-dovecot", "sec-policy/selinux-dovecot", "sec-policy/selinux-dovecot", "sec-policy/selinux-dpkg", "sec-policy/selinux-dpkg", "sec-policy/selinux-dpkg", "sec-policy/selinux-dracut", "sec-policy/selinux-dracut", "sec-policy/selinux-dracut", "sec-policy/selinux-dropbox", "sec-policy/selinux-dropbox", "sec-policy/selinux-dropbox", "sec-policy/selinux-entropyd", "sec-policy/selinux-entropyd", "sec-policy/selinux-entropyd", "sec-policy/selinux-evolution", "sec-policy/selinux-evolution", "sec-policy/selinux-evolution", "sec-policy/selinux-exim", "sec-policy/selinux-exim", "sec-policy/selinux-exim", "sec-policy/selinux-fail2ban", "sec-policy/selinux-fail2ban", "sec-policy/selinux-fail2ban", "sec-policy/selinux-fetchmail", "sec-policy/selinux-fetchmail", "sec-policy/selinux-fetchmail", "sec-policy/selinux-finger", "sec-policy/selinux-finger", "sec-policy/selinux-finger", "sec-policy/selinux-flash", "sec-policy/selinux-flash", "sec-policy/selinux-flash", "sec-policy/selinux-fprintd", "sec-policy/selinux-fprintd", "sec-policy/selinux-fprintd", "sec-policy/selinux-ftp", "sec-policy/selinux-ftp", "sec-policy/selinux-ftp", "sec-policy/selinux-games", "sec-policy/selinux-games", "sec-policy/selinux-games", "sec-policy/selinux-gatekeeper", "sec-policy/selinux-gatekeeper", "sec-policy/selinux-gatekeeper", "sec-policy/selinux-git", "sec-policy/selinux-git", "sec-policy/selinux-git", "sec-policy/selinux-gitosis", "sec-policy/selinux-gitosis", "sec-policy/selinux-gitosis", "sec-policy/selinux-gnome", "sec-policy/selinux-gnome", "sec-policy/selinux-gnome", "sec-policy/selinux-googletalk", "sec-policy/selinux-googletalk", "sec-policy/selinux-googletalk", "sec-policy/selinux-gorg", "sec-policy/selinux-gorg", "sec-policy/selinux-gorg", "sec-policy/selinux-gpg", "sec-policy/selinux-gpg", "sec-policy/selinux-gpg", "sec-policy/selinux-gpm", "sec-policy/selinux-gpm", "sec-policy/selinux-gpm", "sec-policy/selinux-gpsd", "sec-policy/selinux-gpsd", "sec-policy/selinux-gpsd", "sec-policy/selinux-gssproxy", "sec-policy/selinux-gssproxy", "sec-policy/selinux-gssproxy", "sec-policy/selinux-hddtemp", "sec-policy/selinux-hddtemp", "sec-policy/selinux-hddtemp", "sec-policy/selinux-howl", "sec-policy/selinux-howl", "sec-policy/selinux-howl", "sec-policy/selinux-icecast", "sec-policy/selinux-icecast", "sec-policy/selinux-icecast", "sec-policy/selinux-ifplugd", "sec-policy/selinux-ifplugd", "sec-policy/selinux-ifplugd", "sec-policy/selinux-imaze", "sec-policy/selinux-imaze", "sec-policy/selinux-imaze", "sec-policy/selinux-inetd", "sec-policy/selinux-inetd", "sec-policy/selinux-inetd", "sec-policy/selinux-inn", "sec-policy/selinux-inn", "sec-policy/selinux-inn", "sec-policy/selinux-ipsec", "sec-policy/selinux-ipsec", "sec-policy/selinux-ipsec", "sec-policy/selinux-irc", "sec-policy/selinux-irc", "sec-policy/selinux-irc", "sec-policy/selinux-ircd", "sec-policy/selinux-ircd", "sec-policy/selinux-ircd", "sec-policy/selinux-irqbalance", "sec-policy/selinux-irqbalance", "sec-policy/selinux-irqbalance", "sec-policy/selinux-jabber", "sec-policy/selinux-jabber", "sec-policy/selinux-jabber", "sec-policy/selinux-java", "sec-policy/selinux-java", "sec-policy/selinux-java", "sec-policy/selinux-kdeconnect", "sec-policy/selinux-kdeconnect", "sec-policy/selinux-kdeconnect", "sec-policy/selinux-kdump", "sec-policy/selinux-kdump", "sec-policy/selinux-kdump", "sec-policy/selinux-kerberos", "sec-policy/selinux-kerberos", "sec-policy/selinux-kerberos", "sec-policy/selinux-kerneloops", "sec-policy/selinux-kerneloops", "sec-policy/selinux-kerneloops", "sec-policy/selinux-kismet", "sec-policy/selinux-kismet", "sec-policy/selinux-kismet", "sec-policy/selinux-ksmtuned", "sec-policy/selinux-ksmtuned", "sec-policy/selinux-ksmtuned", "sec-policy/selinux-kudzu", "sec-policy/selinux-ldap", "sec-policy/selinux-ldap", "sec-policy/selinux-ldap", "sec-policy/selinux-links", "sec-policy/selinux-links", "sec-policy/selinux-links", "sec-policy/selinux-lircd", "sec-policy/selinux-lircd", "sec-policy/selinux-lircd", "sec-policy/selinux-loadkeys", "sec-policy/selinux-loadkeys", "sec-policy/selinux-loadkeys", "sec-policy/selinux-lockdev", "sec-policy/selinux-lockdev", "sec-policy/selinux-lockdev", "sec-policy/selinux-logrotate", "sec-policy/selinux-logrotate", "sec-policy/selinux-logrotate", "sec-policy/selinux-logsentry", "sec-policy/selinux-logsentry", "sec-policy/selinux-logsentry", "sec-policy/selinux-logwatch", "sec-policy/selinux-logwatch", "sec-policy/selinux-logwatch", "sec-policy/selinux-lpd", "sec-policy/selinux-lpd", "sec-policy/selinux-lpd", "sec-policy/selinux-mailman", "sec-policy/selinux-mailman", "sec-policy/selinux-mailman", "sec-policy/selinux-makewhatis", "sec-policy/selinux-makewhatis", "sec-policy/selinux-makewhatis", "sec-policy/selinux-mandb", "sec-policy/selinux-mandb", "sec-policy/selinux-mandb", "sec-policy/selinux-mcelog", "sec-policy/selinux-mcelog", "sec-policy/selinux-mcelog", "sec-policy/selinux-memcached", "sec-policy/selinux-memcached", "sec-policy/selinux-memcached", "sec-policy/selinux-milter", "sec-policy/selinux-milter", "sec-policy/selinux-milter", "sec-policy/selinux-modemmanager", "sec-policy/selinux-modemmanager", "sec-policy/selinux-modemmanager", "sec-policy/selinux-mono", "sec-policy/selinux-mono", "sec-policy/selinux-mono", "sec-policy/selinux-mozilla", "sec-policy/selinux-mozilla", "sec-policy/selinux-mozilla", "sec-policy/selinux-mpd", "sec-policy/selinux-mpd", "sec-policy/selinux-mpd", "sec-policy/selinux-mplayer", "sec-policy/selinux-mplayer", "sec-policy/selinux-mplayer", "sec-policy/selinux-mrtg", "sec-policy/selinux-mrtg", "sec-policy/selinux-mrtg", "sec-policy/selinux-munin", "sec-policy/selinux-munin", "sec-policy/selinux-munin", "sec-policy/selinux-mutt", "sec-policy/selinux-mutt", "sec-policy/selinux-mutt", "sec-policy/selinux-mysql", "sec-policy/selinux-mysql", "sec-policy/selinux-mysql", "sec-policy/selinux-nagios", "sec-policy/selinux-nagios", "sec-policy/selinux-nagios", "sec-policy/selinux-ncftool", "sec-policy/selinux-ncftool", "sec-policy/selinux-ncftool", "sec-policy/selinux-networkmanager", "sec-policy/selinux-networkmanager", "sec-policy/selinux-networkmanager", "sec-policy/selinux-nginx", "sec-policy/selinux-nginx", "sec-policy/selinux-nginx", "sec-policy/selinux-nslcd", "sec-policy/selinux-nslcd", "sec-policy/selinux-nslcd", "sec-policy/selinux-ntop", "sec-policy/selinux-ntop", "sec-policy/selinux-ntop", "sec-policy/selinux-ntp", "sec-policy/selinux-ntp", "sec-policy/selinux-ntp", "sec-policy/selinux-nut", "sec-policy/selinux-nut", "sec-policy/selinux-nut", "sec-policy/selinux-nx", "sec-policy/selinux-nx", "sec-policy/selinux-nx", "sec-policy/selinux-oddjob", "sec-policy/selinux-oddjob", "sec-policy/selinux-oddjob", "sec-policy/selinux-oident", "sec-policy/selinux-oident", "sec-policy/selinux-oident", "sec-policy/selinux-openct", "sec-policy/selinux-openct", "sec-policy/selinux-openct", "sec-policy/selinux-openrc", "sec-policy/selinux-openrc", "sec-policy/selinux-openrc", "sec-policy/selinux-openvpn", "sec-policy/selinux-openvpn", "sec-policy/selinux-openvpn", "sec-policy/selinux-pan", "sec-policy/selinux-pan", "sec-policy/selinux-pan", "sec-policy/selinux-pcmcia", "sec-policy/selinux-pcscd", "sec-policy/selinux-pcscd", "sec-policy/selinux-pcscd", "sec-policy/selinux-phpfpm", "sec-policy/selinux-phpfpm", "sec-policy/selinux-phpfpm", "sec-policy/selinux-plymouthd", "sec-policy/selinux-plymouthd", "sec-policy/selinux-plymouthd", "sec-policy/selinux-podsleuth", "sec-policy/selinux-policykit", "sec-policy/selinux-policykit", "sec-policy/selinux-policykit", "sec-policy/selinux-portmap", "sec-policy/selinux-portmap", "sec-policy/selinux-portmap", "sec-policy/selinux-postfix", "sec-policy/selinux-postfix", "sec-policy/selinux-postfix", "sec-policy/selinux-postgresql", "sec-policy/selinux-postgresql", "sec-policy/selinux-postgresql", "sec-policy/selinux-postgrey", "sec-policy/selinux-postgrey", "sec-policy/selinux-postgrey", "sec-policy/selinux-ppp", "sec-policy/selinux-ppp", "sec-policy/selinux-ppp", "sec-policy/selinux-prelink", "sec-policy/selinux-prelink", "sec-policy/selinux-prelink", "sec-policy/selinux-prelude", "sec-policy/selinux-prelude", "sec-policy/selinux-prelude", "sec-policy/selinux-privoxy", "sec-policy/selinux-privoxy", "sec-policy/selinux-privoxy", "sec-policy/selinux-procmail", "sec-policy/selinux-procmail", "sec-policy/selinux-procmail", "sec-policy/selinux-psad", "sec-policy/selinux-psad", "sec-policy/selinux-psad", "sec-policy/selinux-publicfile", "sec-policy/selinux-publicfile", "sec-policy/selinux-publicfile", "sec-policy/selinux-pulseaudio", "sec-policy/selinux-pulseaudio", "sec-policy/selinux-pulseaudio", "sec-policy/selinux-puppet", "sec-policy/selinux-puppet", "sec-policy/selinux-puppet", "sec-policy/selinux-pyicqt", "sec-policy/selinux-pyicqt", "sec-policy/selinux-pyicqt", "sec-policy/selinux-pyzor", "sec-policy/selinux-pyzor", "sec-policy/selinux-pyzor", "sec-policy/selinux-qemu", "sec-policy/selinux-qemu", "sec-policy/selinux-qemu", "sec-policy/selinux-qmail", "sec-policy/selinux-qmail", "sec-policy/selinux-qmail", "sec-policy/selinux-quota", "sec-policy/selinux-quota", "sec-policy/selinux-quota", "sec-policy/selinux-radius", "sec-policy/selinux-radius", "sec-policy/selinux-radius", "sec-policy/selinux-radvd", "sec-policy/selinux-radvd", "sec-policy/selinux-radvd", "sec-policy/selinux-razor", "sec-policy/selinux-razor", "sec-policy/selinux-razor", "sec-policy/selinux-redis", "sec-policy/selinux-redis", "sec-policy/selinux-redis", "sec-policy/selinux-remotelogin", "sec-policy/selinux-remotelogin", "sec-policy/selinux-remotelogin", "sec-policy/selinux-resolvconf", "sec-policy/selinux-resolvconf", "sec-policy/selinux-resolvconf", "sec-policy/selinux-rgmanager", "sec-policy/selinux-rgmanager", "sec-policy/selinux-rgmanager", "sec-policy/selinux-rngd", "sec-policy/selinux-rngd", "sec-policy/selinux-rngd", "sec-policy/selinux-roundup", "sec-policy/selinux-rpc", "sec-policy/selinux-rpc", "sec-policy/selinux-rpc", "sec-policy/selinux-rpcbind", "sec-policy/selinux-rpcbind", "sec-policy/selinux-rpcbind", "sec-policy/selinux-rpm", "sec-policy/selinux-rpm", "sec-policy/selinux-rpm", "sec-policy/selinux-rssh", "sec-policy/selinux-rssh", "sec-policy/selinux-rssh", "sec-policy/selinux-rtkit", "sec-policy/selinux-rtkit", "sec-policy/selinux-rtkit", "sec-policy/selinux-rtorrent", "sec-policy/selinux-rtorrent", "sec-policy/selinux-rtorrent", "sec-policy/selinux-salt", "sec-policy/selinux-salt", "sec-policy/selinux-salt", "sec-policy/selinux-samba", "sec-policy/selinux-samba", "sec-policy/selinux-samba", "sec-policy/selinux-sasl", "sec-policy/selinux-sasl", "sec-policy/selinux-sasl", "sec-policy/selinux-screen", "sec-policy/selinux-screen", "sec-policy/selinux-screen", "sec-policy/selinux-sendmail", "sec-policy/selinux-sendmail", "sec-policy/selinux-sendmail", "sec-policy/selinux-sensord", "sec-policy/selinux-sensord", "sec-policy/selinux-sensord", "sec-policy/selinux-shorewall", "sec-policy/selinux-shorewall", "sec-policy/selinux-shorewall", "sec-policy/selinux-shutdown", "sec-policy/selinux-shutdown", "sec-policy/selinux-shutdown", "sec-policy/selinux-skype", "sec-policy/selinux-skype", "sec-policy/selinux-skype", "sec-policy/selinux-slocate", "sec-policy/selinux-slocate", "sec-policy/selinux-slocate", "sec-policy/selinux-slrnpull", "sec-policy/selinux-slrnpull", "sec-policy/selinux-slrnpull", "sec-policy/selinux-smartmon", "sec-policy/selinux-smartmon", "sec-policy/selinux-smartmon", "sec-policy/selinux-smokeping", "sec-policy/selinux-smokeping", "sec-policy/selinux-smokeping", "sec-policy/selinux-snmp", "sec-policy/selinux-snmp", "sec-policy/selinux-snmp", "sec-policy/selinux-snort", "sec-policy/selinux-snort", "sec-policy/selinux-snort", "sec-policy/selinux-soundserver", "sec-policy/selinux-soundserver", "sec-policy/selinux-soundserver", "sec-policy/selinux-spamassassin", "sec-policy/selinux-spamassassin", "sec-policy/selinux-spamassassin", "sec-policy/selinux-speedtouch", "sec-policy/selinux-squid", "sec-policy/selinux-squid", "sec-policy/selinux-squid", "sec-policy/selinux-sssd", "sec-policy/selinux-sssd", "sec-policy/selinux-sssd", "sec-policy/selinux-stunnel", "sec-policy/selinux-stunnel", "sec-policy/selinux-stunnel", "sec-policy/selinux-subsonic", "sec-policy/selinux-subsonic", "sec-policy/selinux-subsonic", "sec-policy/selinux-sudo", "sec-policy/selinux-sudo", "sec-policy/selinux-sudo", "sec-policy/selinux-sxid", "sec-policy/selinux-sxid", "sec-policy/selinux-sxid", "sec-policy/selinux-syncthing", "sec-policy/selinux-syncthing", "sec-policy/selinux-syncthing", "sec-policy/selinux-sysstat", "sec-policy/selinux-sysstat", "sec-policy/selinux-sysstat", "sec-policy/selinux-tboot", "sec-policy/selinux-tboot", "sec-policy/selinux-tboot", "sec-policy/selinux-tcpd", "sec-policy/selinux-tcpd", "sec-policy/selinux-tcpd", "sec-policy/selinux-tcsd", "sec-policy/selinux-tcsd", "sec-policy/selinux-tcsd", "sec-policy/selinux-telnet", "sec-policy/selinux-telnet", "sec-policy/selinux-telnet", "sec-policy/selinux-tftp", "sec-policy/selinux-tftp", "sec-policy/selinux-tftp", "sec-policy/selinux-tgtd", "sec-policy/selinux-tgtd", "sec-policy/selinux-tgtd", "sec-policy/selinux-thunderbird", "sec-policy/selinux-thunderbird", "sec-policy/selinux-thunderbird", "sec-policy/selinux-timidity", "sec-policy/selinux-timidity", "sec-policy/selinux-timidity", "sec-policy/selinux-tmpreaper", "sec-policy/selinux-tmpreaper", "sec-policy/selinux-tmpreaper", "sec-policy/selinux-tor", "sec-policy/selinux-tor", "sec-policy/selinux-tor", "sec-policy/selinux-tripwire", "sec-policy/selinux-tripwire", "sec-policy/selinux-tripwire", "sec-policy/selinux-ucspitcp", "sec-policy/selinux-ucspitcp", "sec-policy/selinux-ucspitcp", "sec-policy/selinux-ulogd", "sec-policy/selinux-ulogd", "sec-policy/selinux-ulogd", "sec-policy/selinux-uml", "sec-policy/selinux-uml", "sec-policy/selinux-uml", "sec-policy/selinux-unconfined", "sec-policy/selinux-unconfined", "sec-policy/selinux-unconfined", "sec-policy/selinux-uptime", "sec-policy/selinux-uptime", "sec-policy/selinux-uptime", "sec-policy/selinux-usbmuxd", "sec-policy/selinux-usbmuxd", "sec-policy/selinux-usbmuxd", "sec-policy/selinux-uucp", "sec-policy/selinux-uucp", "sec-policy/selinux-uucp", "sec-policy/selinux-uwimap", "sec-policy/selinux-uwimap", "sec-policy/selinux-uwimap", "sec-policy/selinux-uwsgi", "sec-policy/selinux-uwsgi", "sec-policy/selinux-uwsgi", "sec-policy/selinux-varnishd", "sec-policy/selinux-varnishd", "sec-policy/selinux-varnishd", "sec-policy/selinux-vbetool", "sec-policy/selinux-vbetool", "sec-policy/selinux-vbetool", "sec-policy/selinux-vdagent", "sec-policy/selinux-vdagent", "sec-policy/selinux-vdagent", "sec-policy/selinux-vde", "sec-policy/selinux-vde", "sec-policy/selinux-vde", "sec-policy/selinux-virt", "sec-policy/selinux-virt", "sec-policy/selinux-virt", "sec-policy/selinux-vlock", "sec-policy/selinux-vlock", "sec-policy/selinux-vlock", "sec-policy/selinux-vmware", "sec-policy/selinux-vmware", "sec-policy/selinux-vmware", "sec-policy/selinux-vnstatd", "sec-policy/selinux-vnstatd", "sec-policy/selinux-vnstatd", "sec-policy/selinux-vpn", "sec-policy/selinux-vpn", "sec-policy/selinux-vpn", "sec-policy/selinux-watchdog", "sec-policy/selinux-watchdog", "sec-policy/selinux-watchdog", "sec-policy/selinux-webalizer", "sec-policy/selinux-webalizer", "sec-policy/selinux-webalizer", "sec-policy/selinux-wine", "sec-policy/selinux-wine", "sec-policy/selinux-wine", "sec-policy/selinux-wireguard", "sec-policy/selinux-wireguard", "sec-policy/selinux-wireshark", "sec-policy/selinux-wireshark", "sec-policy/selinux-wireshark", "sec-policy/selinux-wm", "sec-policy/selinux-wm", "sec-policy/selinux-wm", "sec-policy/selinux-xen", "sec-policy/selinux-xen", "sec-policy/selinux-xen", "sec-policy/selinux-xfs", "sec-policy/selinux-xfs", "sec-policy/selinux-xfs", "sec-policy/selinux-xprint", "sec-policy/selinux-xscreensaver", "sec-policy/selinux-xscreensaver", "sec-policy/selinux-xscreensaver", "sec-policy/selinux-xserver", "sec-policy/selinux-xserver", "sec-policy/selinux-xserver", "sec-policy/selinux-zabbix", "sec-policy/selinux-zabbix", "sec-policy/selinux-zabbix", "sys-apps/accountsservice", "sys-apps/accountsservice", "sys-apps/ack", "sys-apps/ack", "sys-apps/acl", "sys-apps/agedu", "sys-apps/agedu", "sys-apps/apmd", "sys-apps/apparmor-utils", "sys-apps/apparmor", "sys-apps/apply-default-acl", "sys-apps/arrayprobe", "sys-apps/attr", "sys-apps/attr", "sys-apps/audio-entropyd", "sys-apps/baobab", "sys-apps/bar", "sys-apps/baselayout-java", "sys-apps/baselayout-prefix", "sys-apps/baselayout", "sys-apps/baselayout", "sys-apps/baselayout", "sys-apps/baselayout", "sys-apps/baselayout", "sys-apps/bat", "sys-apps/bat", "sys-apps/bat", "sys-apps/biosdevname", "sys-apps/biosdisk", "sys-apps/bleachbit", "sys-apps/bleachbit", "sys-apps/bolt", "sys-apps/bubblewrap", "sys-apps/bubblewrap", "sys-apps/busybox", "sys-apps/busybox", "sys-apps/busybox", "sys-apps/busybox", "sys-apps/byld", "sys-apps/cciss_vol_status", "sys-apps/ccs-tools", "sys-apps/checkpolicy", "sys-apps/checkpolicy", "sys-apps/checkpolicy", "sys-apps/chname", "sys-apps/cinit", "sys-apps/ckbcomp", "sys-apps/clrngd", "sys-apps/collectl", "sys-apps/colorized-logs", "sys-apps/consolation", "sys-apps/conspy", "sys-apps/coreutils", "sys-apps/cpint", "sys-apps/cpuid", "sys-apps/cracklib-words", "sys-apps/crazydiskinfo", "sys-apps/daemonize", "sys-apps/daisydog", "sys-apps/darwin-miscutils", "sys-apps/darwin-miscutils", "sys-apps/darwin-miscutils", "sys-apps/darwin-miscutils", "sys-apps/darwin-miscutils", "sys-apps/darwin-miscutils", "sys-apps/dbus-broker", "sys-apps/dbus-broker", "sys-apps/dbus-broker", "sys-apps/dbus", "sys-apps/dcfldd", "sys-apps/dcfldd", "sys-apps/dchroot", "sys-apps/debianutils", "sys-apps/debianutils", "sys-apps/debianutils", "sys-apps/diffutils", "sys-apps/diffutils", "sys-apps/dmapi", "sys-apps/dmidecode", "sys-apps/dnotify", "sys-apps/dog", "sys-apps/dstat", "sys-apps/dtc", "sys-apps/dtc", "sys-apps/dtc", "sys-apps/dtc", "sys-apps/duc", "sys-apps/duc", "sys-apps/earlyoom", "sys-apps/earlyoom", "sys-apps/earlyoom", "sys-apps/ed", "sys-apps/edac-utils", "sys-apps/edac-utils", "sys-apps/edid-decode", "sys-apps/edid-decode", "sys-apps/edid-fixdim", "sys-apps/elfix", "sys-apps/elfix", "sys-apps/epoch", "sys-apps/epoch", "sys-apps/epoch", "sys-apps/epoch", "sys-apps/etckeeper", "sys-apps/etckeeper", "sys-apps/ethq", "sys-apps/ethq", "sys-apps/ethq", "sys-apps/ethtool", "sys-apps/ethtool", "sys-apps/ethtool", "sys-apps/exa", "sys-apps/exa", "sys-apps/fakechroot", "sys-apps/fakeroot-ng", "sys-apps/fakeroot", "sys-apps/fbset", "sys-apps/fd", "sys-apps/fd", "sys-apps/file", "sys-apps/file", "sys-apps/file", "sys-apps/findutils", "sys-apps/firejail-lts", "sys-apps/firejail-lts", "sys-apps/firejail", "sys-apps/firejail", "sys-apps/firejail", "sys-apps/fix-gnustack", "sys-apps/flashrom", "sys-apps/flashrom", "sys-apps/flatpak", "sys-apps/flatpak", "sys-apps/flatpak", "sys-apps/frandom", "sys-apps/fwts", "sys-apps/fwupd-efi", "sys-apps/fwupd", "sys-apps/fwupd", "sys-apps/fwupd", "sys-apps/fxload", "sys-apps/gawk", "sys-apps/gcp", "sys-apps/gentoo-functions", "sys-apps/gentoo-functions", "sys-apps/gentoo-functions", "sys-apps/gentoo-systemd-integration", "sys-apps/gentoo-systemd-integration", "sys-apps/gentoo-systemd-integration", "sys-apps/gentoo-systemd-integration", "sys-apps/gnome-disk-utility", "sys-apps/gnome-disk-utility", "sys-apps/gpet", "sys-apps/gptfdisk", "sys-apps/gptfdisk", "sys-apps/gptfdisk", "sys-apps/gradm", "sys-apps/gradm", "sys-apps/gradm", "sys-apps/gradm", "sys-apps/gradm", "sys-apps/grep", "sys-apps/grep", "sys-apps/grep", "sys-apps/grep", "sys-apps/grepcidr", "sys-apps/groff", "sys-apps/gscanbus", "sys-apps/gsmartcontrol", "sys-apps/haveged", "sys-apps/haveged", "sys-apps/hd-idle", "sys-apps/hdparm", "sys-apps/heirloom-tools", "sys-apps/help2man", "sys-apps/help2man", "sys-apps/help2man", "sys-apps/hexdump-esr", "sys-apps/highway", "sys-apps/hotplug2stdout", "sys-apps/hponcfg", "sys-apps/hponcfg", "sys-apps/hponcfg", "sys-apps/hponcfg", "sys-apps/hprofile", "sys-apps/hw-probe", "sys-apps/hwids", "sys-apps/hwids", "sys-apps/hwids", "sys-apps/hwinfo", "sys-apps/hwinfo", "sys-apps/hwloc", "sys-apps/hwloc", "sys-apps/hwloc", "sys-apps/i2c-tools", "sys-apps/i2c-tools", "sys-apps/ibm-powerpc-utils", "sys-apps/ibm-powerpc-utils", "sys-apps/idle3-tools", "sys-apps/ifd-gempc", "sys-apps/ifplugd", "sys-apps/init-system-helpers", "sys-apps/init-system-helpers", "sys-apps/input-utils", "sys-apps/install-xattr", "sys-apps/install-xattr", "sys-apps/intel-performance-counter-monitor", "sys-apps/intel-sa-00075-tools", "sys-apps/inxi", "sys-apps/inxi", "sys-apps/inxi", "sys-apps/iotools", "sys-apps/ipmicfg", "sys-apps/ipmitool", "sys-apps/ipmitool", "sys-apps/ipmitool", "sys-apps/ipmiutil", "sys-apps/ipmiutil", "sys-apps/ipmiutil", "sys-apps/ipmiutil", "sys-apps/iproute2", "sys-apps/iproute2", "sys-apps/iproute2", "sys-apps/irqbalance", "sys-apps/isapnptools", "sys-apps/iucode_tool", "sys-apps/kbd", "sys-apps/kbd", "sys-apps/kcheck", "sys-apps/kcheck", "sys-apps/kexec-tools", "sys-apps/kexec-tools", "sys-apps/kexec-tools", "sys-apps/keyutils", "sys-apps/keyutils", "sys-apps/kmod", "sys-apps/kmod", "sys-apps/kmod", "sys-apps/kmscon", "sys-apps/kmscon", "sys-apps/lcdsplash", "sys-apps/lcdutils", "sys-apps/less", "sys-apps/less", "sys-apps/less", "sys-apps/likwid", "sys-apps/linux-misc-apps", "sys-apps/lm-sensors", "sys-apps/lnxhc", "sys-apps/logwatch", "sys-apps/logwatch", "sys-apps/logwatch", "sys-apps/lsadb", "sys-apps/lsb-release", "sys-apps/lsd", "sys-apps/lsd", "sys-apps/lsd", "sys-apps/lshw", "sys-apps/lssbus", "sys-apps/lsvpd", "sys-apps/lsvpd", "sys-apps/makedev", "sys-apps/man-db", "sys-apps/man-db", "sys-apps/man-pages-posix", "sys-apps/man-pages", "sys-apps/man-pages", "sys-apps/man2html", "sys-apps/mawk", "sys-apps/mcstrans", "sys-apps/mcstrans", "sys-apps/mcstrans", "sys-apps/memtest86+", "sys-apps/memtest86+", "sys-apps/memtest86-bin", "sys-apps/memtest86", "sys-apps/memtester", "sys-apps/memtester", "sys-apps/miller", "sys-apps/miller", "sys-apps/miller", "sys-apps/minijail", "sys-apps/minijail", "sys-apps/minised", "sys-apps/miscfiles", "sys-apps/mlocate", "sys-apps/mlxup-bin", "sys-apps/moreutils", "sys-apps/most", "sys-apps/mount-gtk", "sys-apps/mouseemu", "sys-apps/msr-tools", "sys-apps/mtree", "sys-apps/nawk", "sys-apps/net-tools", "sys-apps/net-tools", "sys-apps/netkit-base", "sys-apps/netplug", "sys-apps/netplug", "sys-apps/noexec", "sys-apps/nosig", "sys-apps/nvme-cli", "sys-apps/nvme-cli", "sys-apps/nvme-cli", "sys-apps/nvme-cli", "sys-apps/onerng", "sys-apps/opal-utils", "sys-apps/opal-utils", "sys-apps/openrc", "sys-apps/openrc", "sys-apps/openrc", "sys-apps/opentmpfiles", "sys-apps/opentmpfiles", "sys-apps/opentmpfiles", "sys-apps/opentmpfiles", "sys-apps/opentmpfiles", "sys-apps/osinfo-db-tools", "sys-apps/osinfo-db", "sys-apps/osinfo-db", "sys-apps/osinfo-db", "sys-apps/paxctl", "sys-apps/paxctld", "sys-apps/paxctld", "sys-apps/pciutils", "sys-apps/pcmciautils", "sys-apps/pcsc-lite", "sys-apps/pcsc-lite", "sys-apps/pcsc-slb-rf72-drv", "sys-apps/pcsc-tools", "sys-apps/pcsc-tools", "sys-apps/pick", "sys-apps/pkgcore", "sys-apps/pkgcore", "sys-apps/pkgcore", "sys-apps/plocate", "sys-apps/plocate", "sys-apps/pmount-gui", "sys-apps/pmount", "sys-apps/pnputils", "sys-apps/policycoreutils", "sys-apps/policycoreutils", "sys-apps/policycoreutils", "sys-apps/portage", "sys-apps/portage", "sys-apps/portage", "sys-apps/portage", "sys-apps/portage", "sys-apps/powerpc-utils", "sys-apps/ppc64-diag", "sys-apps/prctl", "sys-apps/preload", "sys-apps/progress", "sys-apps/proot", "sys-apps/pv", "sys-apps/qcontrol", "sys-apps/qdirstat", "sys-apps/qdirstat", "sys-apps/qingy", "sys-apps/radeontool", "sys-apps/razercfg", "sys-apps/readahead-list", "sys-apps/rename", "sys-apps/renameutils", "sys-apps/restartd", "sys-apps/restorecond", "sys-apps/restorecond", "sys-apps/restorecond", "sys-apps/ripgrep-all", "sys-apps/ripgrep", "sys-apps/rkflashtool", "sys-apps/rng-tools", "sys-apps/rng-tools", "sys-apps/rng-tools", "sys-apps/rng-tools", "sys-apps/roccat-tools", "sys-apps/rootlesskit", "sys-apps/rtl-entropy", "sys-apps/s390-tools", "sys-apps/s390-tools", "sys-apps/s6-linux-init", "sys-apps/s6-linux-init", "sys-apps/s6-linux-init", "sys-apps/s6-linux-init", "sys-apps/s6-linux-init", "sys-apps/s6-linux-utils", "sys-apps/s6-linux-utils", "sys-apps/s6-linux-utils", "sys-apps/s6-linux-utils", "sys-apps/s6-linux-utils", "sys-apps/s6-portable-utils", "sys-apps/s6-portable-utils", "sys-apps/s6-portable-utils", "sys-apps/s6-portable-utils", "sys-apps/s6-portable-utils", "sys-apps/s6-rc", "sys-apps/s6-rc", "sys-apps/s6-rc", "sys-apps/s6-rc", "sys-apps/s6-rc", "sys-apps/s6-rc", "sys-apps/s6-rc", "sys-apps/s6", "sys-apps/s6", "sys-apps/s6", "sys-apps/s6", "sys-apps/s6", "sys-apps/s6", "sys-apps/s6", "sys-apps/s6", "sys-apps/salinfo", "sys-apps/sandbox", "sys-apps/sdparm", "sys-apps/secilc", "sys-apps/secilc", "sys-apps/secilc", "sys-apps/sed", "sys-apps/selinux-python", "sys-apps/selinux-python", "sys-apps/selinux-python", "sys-apps/semodule-utils", "sys-apps/semodule-utils", "sys-apps/semodule-utils", "sys-apps/sensei-raw-ctl", "sys-apps/servicelog", "sys-apps/setserial", "sys-apps/sg3_utils", "sys-apps/shadow", "sys-apps/shadow", "sys-apps/smartmontools", "sys-apps/smartmontools", "sys-apps/smc-sum-driver", "sys-apps/smc-sum", "sys-apps/smcipmitool", "sys-apps/sparc-utils", "sys-apps/sparc-utils", "sys-apps/spu-tools", "sys-apps/stroke", "sys-apps/superdiag", "sys-apps/superiotool", "sys-apps/superiotool", "sys-apps/syscriptor", "sys-apps/syslog-notify", "sys-apps/systemd-readahead", "sys-apps/systemd-tmpfiles", "sys-apps/systemd-tmpfiles", "sys-apps/systemd", "sys-apps/systemd", "sys-apps/systemd", "sys-apps/sysvinit", "sys-apps/tas", "sys-apps/tcp-wrappers", "sys-apps/tcp-wrappers", "sys-apps/texinfo", "sys-apps/texinfo", "sys-apps/the_silver_searcher", "sys-apps/the_silver_searcher", "sys-apps/thunderbolt-software-user-space", "sys-apps/tomoyo-tools", "sys-apps/toybox", "sys-apps/toybox", "sys-apps/toybox", "sys-apps/tuned", "sys-apps/uam", "sys-apps/uam", "sys-apps/ucspi-proxy", "sys-apps/ucspi-ssl", "sys-apps/ucspi-tcp", "sys-apps/ucspi-unix", "sys-apps/udevil", "sys-apps/unscd", "sys-apps/usb_modeswitch", "sys-apps/usbguard", "sys-apps/usbguard", "sys-apps/usbmon", "sys-apps/usbredir", "sys-apps/usbredir", "sys-apps/usbutils", "sys-apps/usbutils", "sys-apps/usermode-utilities", "sys-apps/utempter", "sys-apps/util-linux", "sys-apps/util-linux", "sys-apps/util-linux", "sys-apps/util-linux", "sys-apps/vbetool", "sys-apps/watchdog", "sys-apps/which", "sys-apps/x86info", "sys-apps/xdg-dbus-proxy", "sys-apps/xdg-desktop-portal-gtk", "sys-apps/xdg-desktop-portal", "sys-apps/xinetd", "sys-apps/xmbmon", "sys-apps/yarn", "sys-apps/yarn", "sys-apps/yarn", "sys-apps/zorroutils", "sys-apps/zorroutils", "sys-auth/AusweisApp2", "sys-auth/AusweisApp2", "sys-auth/docker_auth", "sys-auth/docker_auth", "sys-auth/docker_auth", "sys-auth/elogind", "sys-auth/fprintd", "sys-auth/fprintd", "sys-auth/fprintd", "sys-auth/google-authenticator-libpam-hardened", "sys-auth/google-authenticator-wrappers", "sys-auth/google-authenticator-wrappers", "sys-auth/google-authenticator-wrappers", "sys-auth/google-authenticator", "sys-auth/google-authenticator", "sys-auth/google-authenticator", "sys-auth/libfprint", "sys-auth/libfprint", "sys-auth/libfprint", "sys-auth/libnss-cache", "sys-auth/libnss-mysql", "sys-auth/libnss-nis", "sys-auth/libnss-pgsql", "sys-auth/libyubikey", "sys-auth/munge", "sys-auth/nss-mdns", "sys-auth/nss-mdns", "sys-auth/nss-myhostname", "sys-auth/nss-pam-ldapd", "sys-auth/nss_ldap", "sys-auth/nss_ldap", "sys-auth/nss_ldap", "sys-auth/oath-toolkit", "sys-auth/otpcalc", "sys-auth/pam-pgsql", "sys-auth/pam-script", "sys-auth/pam-script", "sys-auth/pam_abl", "sys-auth/pam_blue", "sys-auth/pam_dotfile", "sys-auth/pam_fprint", "sys-auth/pam_krb5", "sys-auth/pam_krb5", "sys-auth/pam_ldap", "sys-auth/pam_mktemp", "sys-auth/pam_mount", "sys-auth/pam_mount", "sys-auth/pam_mount", "sys-auth/pam_mysql", "sys-auth/pam_mysql", "sys-auth/pam_p11", "sys-auth/pam_require", "sys-auth/pam_skey", "sys-auth/pam_smb", "sys-auth/pam_ssh", "sys-auth/pam_ssh_agent_auth", "sys-auth/pam_ssh_agent_auth", "sys-auth/pam_u2f", "sys-auth/pam_yubico", "sys-auth/pambase", "sys-auth/pambase", "sys-auth/passwdqc", "sys-auth/passwdqc", "sys-auth/passwdqc", "sys-auth/passwdqc", "sys-auth/polkit-pkla-compat", "sys-auth/polkit-qt", "sys-auth/polkit", "sys-auth/polkit", "sys-auth/polkit", "sys-auth/polkit", "sys-auth/realtime-base", "sys-auth/rtkit", "sys-auth/seatd", "sys-auth/seatd", "sys-auth/seatd", "sys-auth/skey", "sys-auth/solo-python", "sys-auth/ssh-ldap-pubkey", "sys-auth/sssd", "sys-auth/sssd", "sys-auth/sssd", "sys-auth/thinkfinger", "sys-auth/ykclient", "sys-auth/ykneo-ccid-tools", "sys-auth/ykpers", "sys-auth/yubico-piv-tool", "sys-auth/yubikey-personalization-gui", "sys-block/aoetools", "sys-block/arcconf", "sys-block/arcconf", "sys-block/blktrace", "sys-block/buffer", "sys-block/buffer", "sys-block/cec", "sys-block/devio", "sys-block/di", "sys-block/disktype", "sys-block/endpoint", "sys-block/f3", "sys-block/f3", "sys-block/fio", "sys-block/flashbench", "sys-block/fwdl", "sys-block/gpart", "sys-block/gparted", "sys-block/gparted", "sys-block/hdrecover", "sys-block/hpacucli", "sys-block/hpacucli", "sys-block/hpssacli", "sys-block/hpssacli", "sys-block/hpssacli", "sys-block/io-scheduler-udev-rules", "sys-block/libfabric", "sys-block/libzbc", "sys-block/libzbc", "sys-block/libzbd", "sys-block/lsiutil", "sys-block/mbuffer", "sys-block/mbuffer", "sys-block/mbuffer", "sys-block/megacli", "sys-block/megacli", "sys-block/megactl", "sys-block/megamgr", "sys-block/megarc", "sys-block/mpt-status", "sys-block/ms-sys", "sys-block/ms-sys", "sys-block/mtx", "sys-block/nbd", "sys-block/nbd", "sys-block/ndctl", "sys-block/noflushd", "sys-block/open-iscsi", "sys-block/open-iscsi", "sys-block/open-isns", "sys-block/open-isns", "sys-block/parted", "sys-block/partimage", "sys-block/partitionmanager", "sys-block/partitionmanager", "sys-block/perccli", "sys-block/perccli", "sys-block/qla-fc-firmware", "sys-block/raid-check", "sys-block/sas2ircu", "sys-block/sas3flash", "sys-block/sas3flash", "sys-block/sas3flash", "sys-block/sas3ircu", "sys-block/scsiadd", "sys-block/scsiping", "sys-block/scsirastools", "sys-block/scsirastools", "sys-block/sedutil", "sys-block/seekwatcher", "sys-block/smp_utils", "sys-block/spindown", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/storcli", "sys-block/tapecat", "sys-block/targetcli-fb", "sys-block/tgt", "sys-block/tgt", "sys-block/thin-provisioning-tools", "sys-block/thin-provisioning-tools", "sys-block/thin-provisioning-tools", "sys-block/tw_cli", "sys-block/tw_cli", "sys-block/vblade", "sys-block/vblade", "sys-block/viaideinfo", "sys-block/whdd", "sys-block/whdd", "sys-block/zram-init", "sys-block/zram-init", "sys-block/zram-init", "sys-block/zram-init", "sys-block/zram-init", "sys-boot/aboot", "sys-boot/aboot", "sys-boot/arcload", "sys-boot/bootcreator", "sys-boot/colo", "sys-boot/cromwell-bin", "sys-boot/cromwell", "sys-boot/dvhtool", "sys-boot/efibootmgr", "sys-boot/efibootmgr", "sys-boot/efibootmgr", "sys-boot/efibootmgr", "sys-boot/elilo", "sys-boot/gnu-efi", "sys-boot/gnu-efi", "sys-boot/grub", "sys-boot/grub", "sys-boot/grub", "sys-boot/lilo", "sys-boot/makebootfat", "sys-boot/mbr-gpt", "sys-boot/mbr", "sys-boot/milo", "sys-boot/mokutil", "sys-boot/mokutil", "sys-boot/netboot", "sys-boot/nettrom", "sys-boot/os-prober", "sys-boot/palo", "sys-boot/palo", "sys-boot/plymouth-openrc-plugin", "sys-boot/plymouth", "sys-boot/plymouth", "sys-boot/raspberrypi-firmware", "sys-boot/raspberrypi-firmware", "sys-boot/raspberrypi-firmware", "sys-boot/raspberrypi-firmware", "sys-boot/raspberrypi-firmware", "sys-boot/refind", "sys-boot/refind", "sys-boot/refind", "sys-boot/sgibootcd", "sys-boot/shim", "sys-boot/silo", "sys-boot/syslinux", "sys-boot/systemd-boot", "sys-boot/systemd-boot", "sys-boot/tboot", "sys-boot/unetbootin", "sys-boot/vboot-utils", "sys-boot/vboot-utils", "sys-boot/woeusb", "sys-boot/woeusb", "sys-boot/yaboot-static", "sys-boot/yaboot", "sys-cluster/ampi", "sys-cluster/c3", "sys-cluster/ceph", "sys-cluster/ceph", "sys-cluster/ceph", "sys-cluster/ceph", "sys-cluster/ceph", "sys-cluster/ceph", "sys-cluster/ceph", "sys-cluster/charliecloud", "sys-cluster/charliecloud", "sys-cluster/charliecloud", "sys-cluster/charm", "sys-cluster/charmdebug", "sys-cluster/classads", "sys-cluster/cluster-glue", "sys-cluster/corosync", "sys-cluster/crmsh", "sys-cluster/csync2", "sys-cluster/csync2", "sys-cluster/drbd-utils", "sys-cluster/fake", "sys-cluster/galera", "sys-cluster/galera", "sys-cluster/galera", "sys-cluster/galera", "sys-cluster/galera", "sys-cluster/galera", "sys-cluster/ganglia-web", "sys-cluster/ganglia", "sys-cluster/gasnet", "sys-cluster/gasnet", "sys-cluster/gasnet", "sys-cluster/gasnet", "sys-cluster/gasnet", "sys-cluster/glusterfs", "sys-cluster/glusterfs", "sys-cluster/glusterfs", "sys-cluster/glusterfs", "sys-cluster/glusterfs", "sys-cluster/glusterfs", "sys-cluster/glusterfs", "sys-cluster/gmqtt", "sys-cluster/gmqtt", "sys-cluster/hpl", "sys-cluster/hpl", "sys-cluster/hpx", "sys-cluster/hpx", "sys-cluster/ipvsadm", "sys-cluster/ipvsadm", "sys-cluster/ipvsadm", "sys-cluster/k3s", "sys-cluster/k3s", "sys-cluster/k3s", "sys-cluster/k9scli", "sys-cluster/k9scli", "sys-cluster/k9scli", "sys-cluster/k9scli", "sys-cluster/keepalived", "sys-cluster/knem", "sys-cluster/knem", "sys-cluster/kops", "sys-cluster/kops", "sys-cluster/kronosnet", "sys-cluster/kube-apiserver", "sys-cluster/kube-apiserver", "sys-cluster/kube-apiserver", "sys-cluster/kube-apiserver", "sys-cluster/kube-apiserver", "sys-cluster/kube-apiserver", "sys-cluster/kube-apiserver", "sys-cluster/kube-controller-manager", "sys-cluster/kube-controller-manager", "sys-cluster/kube-controller-manager", "sys-cluster/kube-controller-manager", "sys-cluster/kube-controller-manager", "sys-cluster/kube-controller-manager", "sys-cluster/kube-controller-manager", "sys-cluster/kube-proxy", "sys-cluster/kube-proxy", "sys-cluster/kube-proxy", "sys-cluster/kube-proxy", "sys-cluster/kube-proxy", "sys-cluster/kube-proxy", "sys-cluster/kube-proxy", "sys-cluster/kube-router", "sys-cluster/kube-router", "sys-cluster/kube-scheduler", "sys-cluster/kube-scheduler", "sys-cluster/kube-scheduler", "sys-cluster/kube-scheduler", "sys-cluster/kube-scheduler", "sys-cluster/kube-scheduler", "sys-cluster/kube-scheduler", "sys-cluster/kubeadm", "sys-cluster/kubeadm", "sys-cluster/kubeadm", "sys-cluster/kubeadm", "sys-cluster/kubeadm", "sys-cluster/kubeadm", "sys-cluster/kubeadm", "sys-cluster/kubectl", "sys-cluster/kubectl", "sys-cluster/kubectl", "sys-cluster/kubectl", "sys-cluster/kubectl", "sys-cluster/kubectl", "sys-cluster/kubectl", "sys-cluster/kubelet", "sys-cluster/kubelet", "sys-cluster/kubelet", "sys-cluster/kubelet", "sys-cluster/kubelet", "sys-cluster/kubelet", "sys-cluster/kubelet", "sys-cluster/kubeletctl", "sys-cluster/kubeletctl", "sys-cluster/legion", "sys-cluster/legion", "sys-cluster/legion", "sys-cluster/legion", "sys-cluster/legion", "sys-cluster/legion", "sys-cluster/legion", "sys-cluster/legion", "sys-cluster/legion", "sys-cluster/legion", "sys-cluster/legion", "sys-cluster/libcircle", "sys-cluster/libqb", "sys-cluster/libquo", "sys-cluster/libquo", "sys-cluster/lmod", "sys-cluster/lmod", "sys-cluster/lmod", "sys-cluster/lustre", "sys-cluster/minikube", "sys-cluster/minikube", "sys-cluster/minikube", "sys-cluster/minikube", "sys-cluster/minikube", "sys-cluster/minikube", "sys-cluster/minikube", "sys-cluster/mpe2", "sys-cluster/mpich", "sys-cluster/mpich", "sys-cluster/mpich2", "sys-cluster/native-mpi", "sys-cluster/nomad", "sys-cluster/nullmpi", "sys-cluster/onesis", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/openmpi", "sys-cluster/pacemaker", "sys-cluster/pconsole", "sys-cluster/ploop", "sys-cluster/pmix", "sys-cluster/poolmon", "sys-cluster/poolmon", "sys-cluster/projections", "sys-cluster/rdma-core", "sys-cluster/rdma-core", "sys-cluster/rdma-core", "sys-cluster/rdma-core", "sys-cluster/rdma-core", "sys-cluster/rdma-core", "sys-cluster/rdma-core", "sys-cluster/rdma-core", "sys-cluster/rdma-core", "sys-cluster/resource-agents", "sys-cluster/resource-agents", "sys-cluster/resource-agents", "sys-cluster/sanlock", "sys-cluster/singularity", "sys-cluster/singularity", "sys-cluster/slurm", "sys-cluster/spark-bin", "sys-cluster/spark-bin", "sys-cluster/spark-bin", "sys-cluster/teleport", "sys-cluster/teleport", "sys-cluster/torque", "sys-cluster/torque", "sys-cluster/torque", "sys-cluster/ucx", "sys-cluster/ucx", "sys-cluster/ucx", "sys-cluster/ucx", "sys-cluster/ucx", "sys-cluster/vzctl", "sys-cluster/wulfware", "sys-cluster/zetcd", "sys-cluster/zookeeper-bin", "sys-cluster/zookeepercli", "sys-devel/autoconf-archive", "sys-devel/autoconf-wrapper", "sys-devel/autoconf-wrapper", "sys-devel/autoconf", "sys-devel/autoconf", "sys-devel/autoconf", "sys-devel/autoconf", "sys-devel/autoconf", "sys-devel/autogen", "sys-devel/automake-wrapper", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/automake", "sys-devel/bc", "sys-devel/bin86", "sys-devel/binutils-apple", "sys-devel/binutils-apple", "sys-devel/binutils-apple", "sys-devel/binutils-apple", "sys-devel/binutils-config", "sys-devel/binutils-config", "sys-devel/binutils-hppa64", "sys-devel/binutils-hppa64", "sys-devel/binutils-hppa64", "sys-devel/binutils", "sys-devel/binutils", "sys-devel/binutils", "sys-devel/binutils", "sys-devel/binutils", "sys-devel/binutils", "sys-devel/binutils", "sys-devel/bison", "sys-devel/bmake", "sys-devel/bmake", "sys-devel/boost-m4", "sys-devel/clang-common", "sys-devel/clang-common", "sys-devel/clang-common", "sys-devel/clang-common", "sys-devel/clang-common", "sys-devel/clang-common", "sys-devel/clang-common", "sys-devel/clang-common", "sys-devel/clang-runtime", "sys-devel/clang-runtime", "sys-devel/clang-runtime", "sys-devel/clang-runtime", "sys-devel/clang-runtime", "sys-devel/clang-runtime", "sys-devel/clang-runtime", "sys-devel/clang-runtime", "sys-devel/clang", "sys-devel/clang", "sys-devel/clang", "sys-devel/clang", "sys-devel/clang", "sys-devel/clang", "sys-devel/clang", "sys-devel/clang", "sys-devel/cons", "sys-devel/crossdev", "sys-devel/crossdev", "sys-devel/crossdev", "sys-devel/ct-ng", "sys-devel/dev86", "sys-devel/distcc", "sys-devel/distcc", "sys-devel/dwz", "sys-devel/elftoolchain", "sys-devel/elftoolchain", "sys-devel/flex", "sys-devel/gcc-apple", "sys-devel/gcc-config", "sys-devel/gcc-config", "sys-devel/gcc", "sys-devel/gcc", "sys-devel/gcc", "sys-devel/gcc", "sys-devel/gcc", "sys-devel/gcc", "sys-devel/gcc", "sys-devel/gcc", "sys-devel/gcc", "sys-devel/gcc", "sys-devel/gdb-apple", "sys-devel/gdb", "sys-devel/gdb", "sys-devel/gdb", "sys-devel/gdb", "sys-devel/gettext", "sys-devel/gnuconfig", "sys-devel/gnuconfig", "sys-devel/icecream", "sys-devel/kgcc64", "sys-devel/kgcc64", "sys-devel/kgcc64", "sys-devel/libtool", "sys-devel/libtool", "sys-devel/lld", "sys-devel/lld", "sys-devel/lld", "sys-devel/lld", "sys-devel/lld", "sys-devel/lld", "sys-devel/lld", "sys-devel/lld", "sys-devel/lld", "sys-devel/lld", "sys-devel/llvm-common", "sys-devel/llvm-common", "sys-devel/llvm-common", "sys-devel/llvm-common", "sys-devel/llvm-common", "sys-devel/llvm-common", "sys-devel/llvm-common", "sys-devel/llvm-common", "sys-devel/llvm-roc", "sys-devel/llvm-roc", "sys-devel/llvm-roc", "sys-devel/llvm-roc", "sys-devel/llvm-roc", "sys-devel/llvm-roc", "sys-devel/llvm-roc", "sys-devel/llvm-roc", "sys-devel/llvm-roc", "sys-devel/llvm-roc", "sys-devel/llvm-roc", "sys-devel/llvm", "sys-devel/llvm", "sys-devel/llvm", "sys-devel/llvm", "sys-devel/llvm", "sys-devel/llvm", "sys-devel/llvm", "sys-devel/llvm", "sys-devel/llvmgold", "sys-devel/llvmgold", "sys-devel/llvmgold", "sys-devel/llvmgold", "sys-devel/llvmgold", "sys-devel/m4", "sys-devel/m4", "sys-devel/make", "sys-devel/multilib-gcc-wrapper", "sys-devel/native-cctools", "sys-devel/native-cctools", "sys-devel/parity", "sys-devel/parity", "sys-devel/patch", "sys-devel/pmake", "sys-devel/prelink", "sys-devel/prelink", "sys-devel/qconf", "sys-devel/remake", "sys-devel/remake", "sys-devel/rust-std", "sys-devel/rust-std", "sys-devel/rust-std", "sys-devel/rust-std", "sys-devel/slibtool", "sys-devel/slibtool", "sys-devel/slibtool", "sys-devel/smatch", "sys-devel/smatch", "sys-devel/sparse", "sys-devel/sparse", "sys-devel/ucpp", "sys-fabric/dapl", "sys-fabric/ibacm", "sys-fabric/infiniband-diags", "sys-fabric/infinipath-psm", "sys-fabric/libcxgb3", "sys-fabric/libcxgb4", "sys-fabric/libehca", "sys-fabric/libibcm", "sys-fabric/libibmad", "sys-fabric/libibumad", "sys-fabric/libibverbs", "sys-fabric/libibverbs", "sys-fabric/libipathverbs", "sys-fabric/libmlx4", "sys-fabric/libmlx5", "sys-fabric/libmthca", "sys-fabric/libnes", "sys-fabric/libocrdma", "sys-fabric/librdmacm", "sys-fabric/librdmacm", "sys-fabric/mstflint", "sys-fabric/mstflint", "sys-fabric/mstflint", "sys-fabric/mstflint", "sys-fabric/mstflint", "sys-fabric/ofed", "sys-fabric/opensm", "sys-fabric/opensm", "sys-fabric/perftest", "sys-fabric/perftest", "sys-fabric/qperf", "sys-fabric/qperf", "sys-fabric/rds-tools", "sys-fabric/srptools", "sys-firmware/alsa-firmware", "sys-firmware/atmel-firmware", "sys-firmware/b43-firmware", "sys-firmware/b43-firmware", "sys-firmware/b43legacy-firmware", "sys-firmware/bluez-firmware", "sys-firmware/broadcom-bt-firmware", "sys-firmware/edk2-ovmf", "sys-firmware/edk2-ovmf", "sys-firmware/firmware-imx", "sys-firmware/intel-microcode", "sys-firmware/intel-microcode", "sys-firmware/intel-microcode", "sys-firmware/intel-microcode", "sys-firmware/intel-microcode", "sys-firmware/ipw2100-firmware", "sys-firmware/ipw2200-firmware", "sys-firmware/ipxe", "sys-firmware/ipxe", "sys-firmware/ipxe", "sys-firmware/ivtv-firmware", "sys-firmware/iwl1000-ucode", "sys-firmware/iwl3160-7260-bt-ucode", "sys-firmware/iwl3160-ucode", "sys-firmware/iwl6005-ucode", "sys-firmware/iwl6005-ucode", "sys-firmware/iwl6030-ucode", "sys-firmware/iwl6030-ucode", "sys-firmware/iwl7260-ucode", "sys-firmware/iwl8000-ucode", "sys-firmware/midisport-firmware", "sys-firmware/nvidia-firmware", "sys-firmware/raspberrypi-wifi-ucode", "sys-firmware/raspberrypi-wifi-ucode", "sys-firmware/raspberrypi-wifi-ucode", "sys-firmware/seabios", "sys-firmware/seabios", "sys-firmware/seabios", "sys-firmware/seabios", "sys-firmware/seabios", "sys-firmware/sgabios", "sys-firmware/sgabios", "sys-firmware/sigrok-firmware-fx2lafw", "sys-firmware/sigrok-firmware-fx2lafw", "sys-firmware/sof-firmware", "sys-firmware/sof-firmware", "sys-firmware/sof-firmware", "sys-firmware/tt-s2-6400-firmware", "sys-firmware/tt-s2-6400-firmware", "sys-firmware/vgabios", "sys-firmware/vgabios", "sys-firmware/vgabios", "sys-firmware/zd1201-firmware", "sys-firmware/zd1211-firmware", "sys-fs/android-file-transfer-linux", "sys-fs/android-file-transfer-linux", "sys-fs/android-file-transfer-linux", "sys-fs/android-file-transfer-linux", "sys-fs/archivemount", "sys-fs/archivemount", "sys-fs/arm-fdisk", "sys-fs/atari-fdisk", "sys-fs/aufs-headers", "sys-fs/aufs-util", "sys-fs/autorun", "sys-fs/avfs", "sys-fs/avfs", "sys-fs/avfs", "sys-fs/bashmount", "sys-fs/bcache-tools", "sys-fs/bcache-tools", "sys-fs/bees", "sys-fs/bees", "sys-fs/bindfs", "sys-fs/bindfs", "sys-fs/bindfs", "sys-fs/btrfs-progs", "sys-fs/btrfs-progs", "sys-fs/btrfs-progs", "sys-fs/btrfs-progs", "sys-fs/btrfsmaintenance", "sys-fs/btrfsmaintenance", "sys-fs/cachefilesd", "sys-fs/cachefilesd", "sys-fs/clamfs", "sys-fs/compsize", "sys-fs/compsize", "sys-fs/compsize", "sys-fs/compsize", "sys-fs/copyfs", "sys-fs/cramfs", "sys-fs/cryfs", "sys-fs/cryfs", "sys-fs/cryptmount", "sys-fs/cryptsetup", "sys-fs/cryptsetup", "sys-fs/ctmg", "sys-fs/davl", "sys-fs/dd-rescue", "sys-fs/dd-rescue", "sys-fs/ddrescue", "sys-fs/ddrescue", "sys-fs/dfc", "sys-fs/diskdev_cmds", "sys-fs/dislocker", "sys-fs/dislocker", "sys-fs/dislocker", "sys-fs/dmg2img", "sys-fs/dmraid", "sys-fs/dosfstools", "sys-fs/duperemove", "sys-fs/duperemove", "sys-fs/e2fsprogs", "sys-fs/e2fsprogs", "sys-fs/e2fsprogs", "sys-fs/e2fsprogs", "sys-fs/e2tools", "sys-fs/e4rat", "sys-fs/ecryptfs-utils", "sys-fs/encfs", "sys-fs/encfs", "sys-fs/etcd-fs", "sys-fs/eudev", "sys-fs/eudev", "sys-fs/eudev", "sys-fs/eudev", "sys-fs/eudev", "sys-fs/eudev", "sys-fs/eudev", "sys-fs/eudev", "sys-fs/exfat-utils", "sys-fs/exfatprogs", "sys-fs/exfatprogs", "sys-fs/exfatprogs", "sys-fs/ext3grep", "sys-fs/ext4magic", "sys-fs/extundelete", "sys-fs/f2fs-tools", "sys-fs/fatcat", "sys-fs/fatresize", "sys-fs/fatsort", "sys-fs/fragview", "sys-fs/fragview", "sys-fs/fscrypt", "sys-fs/fuse-common", "sys-fs/fuse-common", "sys-fs/fuse-convmvfs", "sys-fs/fuse-exfat", "sys-fs/fuse-overlayfs", "sys-fs/fuse-zip", "sys-fs/fuse", "sys-fs/fuse", "sys-fs/fuse", "sys-fs/fuse", "sys-fs/fuseiso", "sys-fs/genext2fs", "sys-fs/genfstab", "sys-fs/go-mtpfs", "sys-fs/growpart", "sys-fs/gt5", "sys-fs/hfsplusutils", "sys-fs/hfsutils", "sys-fs/inotify-tools", "sys-fs/inotify-tools", "sys-fs/inotify-tools", "sys-fs/iprutils", "sys-fs/jdiskreport-bin", "sys-fs/jfsutils", "sys-fs/jmtpfs", "sys-fs/ldapfuse", "sys-fs/lde", "sys-fs/lessfs", "sys-fs/libeatmydata", "sys-fs/libfat", "sys-fs/loop-aes", "sys-fs/loop-aes", "sys-fs/lsscsi", "sys-fs/lufis", "sys-fs/lufs", "sys-fs/lvm2", "sys-fs/lvm2", "sys-fs/lvm2", "sys-fs/lxcfs", "sys-fs/mac-fdisk", "sys-fs/mdadm", "sys-fs/mdadm", "sys-fs/mergerfs", "sys-fs/mergerfs", "sys-fs/mergerfs", "sys-fs/mergerfs", "sys-fs/mergerfs", "sys-fs/mhddfs", "sys-fs/mp3fs", "sys-fs/mp3fs", "sys-fs/mtd-utils", "sys-fs/mtd-utils", "sys-fs/mtools", "sys-fs/mtools", "sys-fs/mtools", "sys-fs/mtpfs", "sys-fs/multipath-tools", "sys-fs/multipath-tools", "sys-fs/ncdu", "sys-fs/ncdu", "sys-fs/nilfs-utils", "sys-fs/nilfs-utils", "sys-fs/ntfs3g", "sys-fs/ntfs3g", "sys-fs/progsreiserfs", "sys-fs/quota", "sys-fs/quotatool", "sys-fs/rar2fs", "sys-fs/reiser4progs", "sys-fs/reiser4progs", "sys-fs/reiser4progs", "sys-fs/reiserfs-defrag", "sys-fs/reiserfsprogs", "sys-fs/safecopy", "sys-fs/sandboxfs", "sys-fs/shake", "sys-fs/simple-mtpfs", "sys-fs/snapraid", "sys-fs/snapraid", "sys-fs/squashfs-tools-ng", "sys-fs/squashfs-tools-ng", "sys-fs/squashfs-tools", "sys-fs/squashfs-tools", "sys-fs/squashfuse", "sys-fs/squashfuse", "sys-fs/static-dev", "sys-fs/sysfsutils", "sys-fs/tmsu", "sys-fs/tmsu", "sys-fs/treesize", "sys-fs/udev-init-scripts", "sys-fs/udev-init-scripts", "sys-fs/udev-init-scripts", "sys-fs/udev", "sys-fs/udev", "sys-fs/udev", "sys-fs/udftools", "sys-fs/udiskie", "sys-fs/udiskie", "sys-fs/udisks", "sys-fs/udisks", "sys-fs/udisks", "sys-fs/unionfs-fuse", "sys-fs/unionfs-fuse", "sys-fs/vhba", "sys-fs/vhba", "sys-fs/vzquota", "sys-fs/xfsdump", "sys-fs/xfsprogs", "sys-fs/xfsprogs", "sys-fs/xfsprogs", "sys-fs/xwmfs", "sys-fs/yaffs2utils", "sys-fs/zerofree", "sys-fs/zfs-auto-snapshot", "sys-fs/zfs-auto-snapshot", "sys-fs/zfs-kmod", "sys-fs/zfs-kmod", "sys-fs/zfs-kmod", "sys-fs/zfs-kmod", "sys-fs/zfs", "sys-fs/zfs", "sys-fs/zfs", "sys-fs/zfs", "sys-kernel/bliss-initramfs", "sys-kernel/bliss-initramfs", "sys-kernel/cryptodev", "sys-kernel/cryptodev", "sys-kernel/cryptodev", "sys-kernel/dracut-crypt-ssh", "sys-kernel/dracut", "sys-kernel/dracut", "sys-kernel/dracut", "sys-kernel/genkernel", "sys-kernel/genkernel", "sys-kernel/genkernel", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel-bin", "sys-kernel/gentoo-kernel", "sys-kernel/gentoo-kernel", "sys-kernel/gentoo-kernel", "sys-kernel/gentoo-kernel", "sys-kernel/gentoo-kernel", "sys-kernel/gentoo-kernel", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/gentoo-sources", "sys-kernel/git-sources", "sys-kernel/git-sources", "sys-kernel/git-sources", "sys-kernel/git-sources", "sys-kernel/git-sources", "sys-kernel/git-sources", "sys-kernel/git-sources", "sys-kernel/installkernel-gentoo", "sys-kernel/installkernel-gentoo", "sys-kernel/installkernel-gentoo", "sys-kernel/installkernel-systemd-boot", "sys-kernel/kergen", "sys-kernel/kpatch", "sys-kernel/kpatch", "sys-kernel/kpatch", "sys-kernel/linux-docs", "sys-kernel/linux-firmware", "sys-kernel/linux-firmware", "sys-kernel/linux-firmware", "sys-kernel/linux-firmware", "sys-kernel/linux-firmware", "sys-kernel/linux-firmware", "sys-kernel/linux-firmware", "sys-kernel/linux-firmware", "sys-kernel/linux-headers", "sys-kernel/linux-headers", "sys-kernel/linux-headers", "sys-kernel/linux-headers", "sys-kernel/linux-headers", "sys-kernel/linux-headers", "sys-kernel/linux-headers", "sys-kernel/linux-headers", "sys-kernel/linux-headers", "sys-kernel/linux-headers", "sys-kernel/linux-headers", "sys-kernel/mips-sources", "sys-kernel/mips-sources", "sys-kernel/mips-sources", "sys-kernel/pf-sources", "sys-kernel/pf-sources", "sys-kernel/pf-sources", "sys-kernel/pf-sources", "sys-kernel/pf-sources", "sys-kernel/pf-sources", "sys-kernel/pf-sources", "sys-kernel/pf-sources", "sys-kernel/raspberrypi-image", "sys-kernel/raspberrypi-image", "sys-kernel/raspberrypi-image", "sys-kernel/raspberrypi-image", "sys-kernel/raspberrypi-image", "sys-kernel/raspberrypi-image", "sys-kernel/raspberrypi-sources", "sys-kernel/raspberrypi-sources", "sys-kernel/raspberrypi-sources", "sys-kernel/raspberrypi-sources", "sys-kernel/rt-sources", "sys-kernel/rt-sources", "sys-kernel/rt-sources", "sys-kernel/rt-sources", "sys-kernel/rt-sources", "sys-kernel/rt-sources", "sys-kernel/rt-sources", "sys-kernel/vanilla-kernel", "sys-kernel/vanilla-kernel", "sys-kernel/vanilla-kernel", "sys-kernel/vanilla-kernel", "sys-kernel/vanilla-kernel", "sys-kernel/vanilla-kernel", "sys-kernel/vanilla-sources", "sys-kernel/vanilla-sources", "sys-kernel/vanilla-sources", "sys-kernel/vanilla-sources", "sys-kernel/vanilla-sources", "sys-kernel/vanilla-sources", "sys-kernel/vanilla-sources", "sys-kernel/vanilla-sources", "sys-kernel/zen-sources", "sys-kernel/zen-sources", "sys-libs/argp-standalone", "sys-libs/binutils-libs", "sys-libs/binutils-libs", "sys-libs/binutils-libs", "sys-libs/binutils-libs", "sys-libs/blocksruntime", "sys-libs/compiler-rt-sanitizers", "sys-libs/compiler-rt-sanitizers", "sys-libs/compiler-rt-sanitizers", "sys-libs/compiler-rt-sanitizers", "sys-libs/compiler-rt-sanitizers", "sys-libs/compiler-rt-sanitizers", "sys-libs/compiler-rt-sanitizers", "sys-libs/compiler-rt-sanitizers", "sys-libs/compiler-rt", "sys-libs/compiler-rt", "sys-libs/compiler-rt", "sys-libs/compiler-rt", "sys-libs/compiler-rt", "sys-libs/compiler-rt", "sys-libs/compiler-rt", "sys-libs/compiler-rt", "sys-libs/cracklib", "sys-libs/csu", "sys-libs/csu", "sys-libs/cygwin-crypt", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/db", "sys-libs/e2fsprogs-libs", "sys-libs/e2fsprogs-libs", "sys-libs/e2fsprogs-libs", "sys-libs/e2fsprogs-libs", "sys-libs/efivar", "sys-libs/fortify-headers", "sys-libs/fortify-headers", "sys-libs/fortify-headers", "sys-libs/freeipmi", "sys-libs/freeipmi", "sys-libs/freeipmi", "sys-libs/fts-standalone", "sys-libs/fts-standalone", "sys-libs/gdbm", "sys-libs/gdbm", "sys-libs/gdbm", "sys-libs/glibc", "sys-libs/glibc", "sys-libs/glibc", "sys-libs/glibc", "sys-libs/glibc", "sys-libs/glibc", "sys-libs/glibc", "sys-libs/glibc", "sys-libs/glibc", "sys-libs/glibc", "sys-libs/gpm", "sys-libs/gwenhywfar", "sys-libs/kpmcore", "sys-libs/kpmcore", "sys-libs/ldb", "sys-libs/ldb", "sys-libs/ldb", "sys-libs/libaal", "sys-libs/libapparmor", "sys-libs/libavc1394", "sys-libs/libblockdev", "sys-libs/libblockdev", "sys-libs/libblockdev", "sys-libs/libcap-ng", "sys-libs/libcap", "sys-libs/libcap", "sys-libs/libcap", "sys-libs/libcap", "sys-libs/libchipcard", "sys-libs/libcxx", "sys-libs/libcxx", "sys-libs/libcxx", "sys-libs/libcxx", "sys-libs/libcxx", "sys-libs/libcxx", "sys-libs/libcxx", "sys-libs/libcxx", "sys-libs/libcxxabi", "sys-libs/libcxxabi", "sys-libs/libcxxabi", "sys-libs/libcxxabi", "sys-libs/libcxxabi", "sys-libs/libcxxabi", "sys-libs/libcxxabi", "sys-libs/libcxxabi", "sys-libs/libfaketime", "sys-libs/libfaketime", "sys-libs/libhugetlbfs", "sys-libs/libhx", "sys-libs/libhx", "sys-libs/libieee1284", "sys-libs/libixp", "sys-libs/libomp", "sys-libs/libomp", "sys-libs/libomp", "sys-libs/libomp", "sys-libs/libomp", "sys-libs/libomp", "sys-libs/libomp", "sys-libs/libomp", "sys-libs/libosinfo", "sys-libs/libraw1394", "sys-libs/librtas", "sys-libs/libseccomp", "sys-libs/libseccomp", "sys-libs/libseccomp", "sys-libs/libseccomp", "sys-libs/libselinux", "sys-libs/libselinux", "sys-libs/libselinux", "sys-libs/libsemanage", "sys-libs/libsemanage", "sys-libs/libsemanage", "sys-libs/libsepol", "sys-libs/libsepol", "sys-libs/libsepol", "sys-libs/libservicelog", "sys-libs/libservicelog", "sys-libs/libsmbios", "sys-libs/libstatgrab", "sys-libs/libstdc++-v3", "sys-libs/libstdc++-v3", "sys-libs/libtermcap-compat", "sys-libs/libudev-compat", "sys-libs/libunwind", "sys-libs/liburing", "sys-libs/liburing", "sys-libs/liburing", "sys-libs/libutempter", "sys-libs/libuuid", "sys-libs/libvpd", "sys-libs/libxcrypt", "sys-libs/libxcrypt", "sys-libs/llvm-libunwind", "sys-libs/llvm-libunwind", "sys-libs/llvm-libunwind", "sys-libs/llvm-libunwind", "sys-libs/llvm-libunwind", "sys-libs/llvm-libunwind", "sys-libs/llvm-libunwind", "sys-libs/llvm-libunwind", "sys-libs/lwp", "sys-libs/mtdev", "sys-libs/musl-nscd", "sys-libs/musl-nscd", "sys-libs/musl-nscd", "sys-libs/musl", "sys-libs/musl", "sys-libs/native-uuid", "sys-libs/ncurses-compat", "sys-libs/ncurses", "sys-libs/ncurses", "sys-libs/ncurses", "sys-libs/newlib", "sys-libs/newlib", "sys-libs/nss-usrfiles", "sys-libs/nss_wrapper", "sys-libs/nss_wrapper", "sys-libs/obstack-standalone", "sys-libs/openipmi", "sys-libs/pam", "sys-libs/pam", "sys-libs/pam_wrapper", "sys-libs/pwdb", "sys-libs/queue-standalone", "sys-libs/readline", "sys-libs/rpmatch-standalone", "sys-libs/slang", "sys-libs/talloc", "sys-libs/talloc", "sys-libs/tapi", "sys-libs/tapi", "sys-libs/tdb", "sys-libs/tdb", "sys-libs/tdb", "sys-libs/tevent", "sys-libs/tevent", "sys-libs/timezone-data", "sys-libs/uclibc-ng", "sys-libs/uclibc-ng", "sys-libs/uclibc-ng", "sys-libs/uclibc-ng", "sys-libs/uclibc-ng", "sys-libs/uid_wrapper", "sys-libs/uid_wrapper", "sys-libs/zlib-ng", "sys-libs/zlib", "sys-power/RyzenAdj", "sys-power/acpi", "sys-power/acpi_call", "sys-power/acpi_call", "sys-power/acpid", "sys-power/acpilight", "sys-power/acpilight", "sys-power/acpitool", "sys-power/apcupsd", "sys-power/athcool", "sys-power/bbswitch", "sys-power/bbswitch", "sys-power/bbswitch", "sys-power/cpupower", "sys-power/cpupower", "sys-power/dptfxtract", "sys-power/hibernate-script", "sys-power/iasl", "sys-power/iasl", "sys-power/intel-undervolt", "sys-power/intel-undervolt", "sys-power/nut", "sys-power/nvclock", "sys-power/nvclock", "sys-power/nvram-reboot", "sys-power/pmtools", "sys-power/powermgmt-base", "sys-power/powernowd", "sys-power/powerstat", "sys-power/powerstat", "sys-power/powerstat", "sys-power/powertop", "sys-power/powertop", "sys-power/sispmctl", "sys-power/suspend", "sys-power/suspend", "sys-power/switcheroo-control", "sys-power/thermald", "sys-power/thermald", "sys-power/tuxedo-cc-wmi", "sys-power/uhubctl", "sys-power/upower", "sys-power/upower", "sys-process/acct", "sys-process/acct", "sys-process/anacron", "sys-process/at", "sys-process/atop", "sys-process/audit", "sys-process/audit", "sys-process/audit", "sys-process/audit", "sys-process/bashtop", "sys-process/bcron", "sys-process/below", "sys-process/bottom", "sys-process/bpytop", "sys-process/bpytop", "sys-process/criu", "sys-process/criu", "sys-process/cronbase", "sys-process/cronie", "sys-process/cronutils", "sys-process/ctop", "sys-process/daemontools-encore", "sys-process/daemontools", "sys-process/dcron", "sys-process/dumb-init", "sys-process/dumb-init", "sys-process/evisum", "sys-process/fcron", "sys-process/fcron", "sys-process/fcron", "sys-process/ftop", "sys-process/glances", "sys-process/glances", "sys-process/gnome-usage", "sys-process/htop", "sys-process/htop", "sys-process/incron", "sys-process/iotop", "sys-process/latencytop", "sys-process/lsof", "sys-process/memwatch", "sys-process/minicoredumper", "sys-process/minit", "sys-process/nmon", "sys-process/nmon", "sys-process/nmon", "sys-process/nmon", "sys-process/numactl", "sys-process/numactl", "sys-process/numad", "sys-process/numad", "sys-process/parallel", "sys-process/parallel", "sys-process/parallel", "sys-process/pkill-darwin", "sys-process/prll", "sys-process/procenv", "sys-process/procps", "sys-process/psinfo", "sys-process/psmisc", "sys-process/rtirq", "sys-process/rtirq", "sys-process/runit", "sys-process/schedtool", "sys-process/supervise-scripts", "sys-process/systemd-cron", "sys-process/systemd-cron", "sys-process/systemd-cron", "sys-process/time", "sys-process/tini", "sys-process/tiptop", "sys-process/top-apple", "sys-process/uksmd", "sys-process/unixtop", "sys-process/usbtop", "sys-process/wait_on_pid", "sys-process/watchpid", "sys-process/xjobs", "virtual/acl", "virtual/awk", "virtual/bitcoin-leveldb", "virtual/blas", "virtual/cblas", "virtual/checkpassword", "virtual/commonlisp", "virtual/cron", "virtual/daemontools", "virtual/dev-manager", "virtual/dist-kernel", "virtual/dist-kernel", "virtual/dist-kernel", "virtual/dist-kernel", "virtual/dist-kernel", "virtual/dist-kernel", "virtual/dotnet-sdk", "virtual/editor", "virtual/fam", "virtual/fortran", "virtual/freedesktop-icon-theme", "virtual/glu", "virtual/gnustep-back", "virtual/gnustep-back", "virtual/gsasl", "virtual/httpd-basic", "virtual/httpd-cgi", "virtual/httpd-fastcgi", "virtual/httpd-php", "virtual/httpd-php", "virtual/httpd-php", "virtual/imagemagick-tools", "virtual/imap-c-client", "virtual/inetd", "virtual/jack", "virtual/jdk", "virtual/jdk", "virtual/jpeg-compat", "virtual/jpeg", "virtual/jre", "virtual/jre", "virtual/krb5", "virtual/lapack", "virtual/lapacke", "virtual/latex-base", "virtual/libc", "virtual/libcrypt", "virtual/libcrypt", "virtual/libelf", "virtual/libelf", "virtual/libiconv", "virtual/libiconv", "virtual/libiconv", "virtual/libintl", "virtual/libintl", "virtual/libintl", "virtual/libudev", "virtual/libusb", "virtual/libusb", "virtual/linux-sources", "virtual/linuxtv-dvb-headers", "virtual/logger", "virtual/mailx", "virtual/man", "virtual/mda", "virtual/mpi", "virtual/mpi", "virtual/mpi", "virtual/mta", "virtual/mysql", "virtual/notification-daemon", "virtual/ooo", "virtual/opencl", "virtual/opengl", "virtual/os-headers", "virtual/package-manager", "virtual/pager", "virtual/perl-Archive-Tar", "virtual/perl-Archive-Tar", "virtual/perl-Attribute-Handlers", "virtual/perl-AutoLoader", "virtual/perl-CPAN-Meta-Requirements", "virtual/perl-CPAN-Meta-YAML", "virtual/perl-CPAN-Meta", "virtual/perl-CPAN", "virtual/perl-CPAN", "virtual/perl-Carp", "virtual/perl-Carp", "virtual/perl-Compress-Raw-Bzip2", "virtual/perl-Compress-Raw-Bzip2", "virtual/perl-Compress-Raw-Zlib", "virtual/perl-Compress-Raw-Zlib", "virtual/perl-DB_File", "virtual/perl-DB_File", "virtual/perl-Data-Dumper", "virtual/perl-Data-Dumper", "virtual/perl-Devel-PPPort", "virtual/perl-Devel-PPPort", "virtual/perl-Digest-MD5", "virtual/perl-Digest-MD5", "virtual/perl-Digest-SHA", "virtual/perl-Digest", "virtual/perl-Digest", "virtual/perl-Dumpvalue", "virtual/perl-Encode", "virtual/perl-Encode", "virtual/perl-Encode", "virtual/perl-Exporter", "virtual/perl-Exporter", "virtual/perl-ExtUtils-CBuilder", "virtual/perl-ExtUtils-CBuilder", "virtual/perl-ExtUtils-Constant", "virtual/perl-ExtUtils-Install", "virtual/perl-ExtUtils-Install", "virtual/perl-ExtUtils-MakeMaker", "virtual/perl-ExtUtils-MakeMaker", "virtual/perl-ExtUtils-Manifest", "virtual/perl-ExtUtils-Manifest", "virtual/perl-ExtUtils-ParseXS", "virtual/perl-ExtUtils-ParseXS", "virtual/perl-File-Path", "virtual/perl-File-Path", "virtual/perl-File-Spec", "virtual/perl-File-Spec", "virtual/perl-File-Temp", "virtual/perl-File-Temp", "virtual/perl-Filter-Simple", "virtual/perl-Getopt-Long", "virtual/perl-Getopt-Long", "virtual/perl-HTTP-Tiny", "virtual/perl-I18N-LangTags", "virtual/perl-I18N-LangTags", "virtual/perl-IO-Compress", "virtual/perl-IO-Compress", "virtual/perl-IO-Socket-IP", "virtual/perl-IO-Socket-IP", "virtual/perl-IO-Zlib", "virtual/perl-IO-Zlib", "virtual/perl-IO", "virtual/perl-IO", "virtual/perl-IPC-Cmd", "virtual/perl-JSON-PP", "virtual/perl-JSON-PP", "virtual/perl-Locale-Maketext-Simple", "virtual/perl-Locale-Maketext", "virtual/perl-MIME-Base64", "virtual/perl-MIME-Base64", "virtual/perl-Math-BigInt-FastCalc", "virtual/perl-Math-BigInt", "virtual/perl-Math-BigRat", "virtual/perl-Math-Complex", "virtual/perl-Math-Complex", "virtual/perl-Memoize", "virtual/perl-Module-CoreList", "virtual/perl-Module-CoreList", "virtual/perl-Module-Load-Conditional", "virtual/perl-Module-Load-Conditional", "virtual/perl-Module-Load", "virtual/perl-Module-Load", "virtual/perl-Module-Loaded", "virtual/perl-Module-Metadata", "virtual/perl-Net-Ping", "virtual/perl-Net-Ping", "virtual/perl-Params-Check", "virtual/perl-Parse-CPAN-Meta", "virtual/perl-Perl-OSType", "virtual/perl-Pod-Escapes", "virtual/perl-Pod-Parser", "virtual/perl-Pod-Simple", "virtual/perl-Pod-Simple", "virtual/perl-Safe", "virtual/perl-Safe", "virtual/perl-Scalar-List-Utils", "virtual/perl-Scalar-List-Utils", "virtual/perl-Socket", "virtual/perl-Socket", "virtual/perl-Storable", "virtual/perl-Storable", "virtual/perl-Sys-Syslog", "virtual/perl-Term-ANSIColor", "virtual/perl-Term-ReadLine", "virtual/perl-Test-Harness", "virtual/perl-Test-Harness", "virtual/perl-Test-Simple", "virtual/perl-Test-Simple", "virtual/perl-Test", "virtual/perl-Text-Balanced", "virtual/perl-Text-Balanced", "virtual/perl-Text-ParseWords", "virtual/perl-Text-Tabs+Wrap", "virtual/perl-Thread-Queue", "virtual/perl-Thread-Semaphore", "virtual/perl-Tie-RefHash", "virtual/perl-Tie-RefHash", "virtual/perl-Time-HiRes", "virtual/perl-Time-HiRes", "virtual/perl-Time-Local", "virtual/perl-Time-Local", "virtual/perl-Time-Piece", "virtual/perl-Unicode-Collate", "virtual/perl-Unicode-Collate", "virtual/perl-Unicode-Normalize", "virtual/perl-Unicode-Normalize", "virtual/perl-XSLoader", "virtual/perl-autodie", "virtual/perl-autodie", "virtual/perl-bignum", "virtual/perl-if", "virtual/perl-if", "virtual/perl-libnet", "virtual/perl-libnet", "virtual/perl-parent", "virtual/perl-podlators", "virtual/perl-threads-shared", "virtual/perl-threads-shared", "virtual/perl-threads", "virtual/perl-threads", "virtual/perl-version", "virtual/perl-version", "virtual/perl6", "virtual/pkgconfig", "virtual/podofo-build", "virtual/python-cffi", "virtual/python-greenlet", "virtual/qmail", "virtual/resolvconf", "virtual/ruby-ssl", "virtual/rubygems", "virtual/rubygems", "virtual/rust", "virtual/rust", "virtual/rust", "virtual/secret-service", "virtual/service-manager", "virtual/skkserv", "virtual/ssh", "virtual/szip", "virtual/tex-base", "virtual/texi2dvi", "virtual/tmpfiles", "virtual/ttf-fonts", "virtual/udev", "virtual/w3m", "virtual/w3m", "virtual/wine", "virtual/yacc", "www-apache/anyterm", "www-apache/libapreq2", "www-apache/libapreq2", "www-apache/mod_auth_kerb", "www-apache/mod_auth_radius", "www-apache/mod_auth_tkt", "www-apache/mod_auth_xradius", "www-apache/mod_authnz_external", "www-apache/mod_authnz_external", "www-apache/mod_authnz_external", "www-apache/mod_authz_unixgroup", "www-apache/mod_authz_unixgroup", "www-apache/mod_backtrace", "www-apache/mod_bw", "www-apache/mod_caucho", "www-apache/mod_common_redirect", "www-apache/mod_dnssd", "www-apache/mod_evasive", "www-apache/mod_extract_forwarded", "www-apache/mod_fastcgi_handler", "www-apache/mod_fcgid", "www-apache/mod_gnutls", "www-apache/mod_gnutls", "www-apache/mod_h2", "www-apache/mod_h2", "www-apache/mod_h2", "www-apache/mod_h2", "www-apache/mod_h2", "www-apache/mod_h2", "www-apache/mod_h2", "www-apache/mod_h2", "www-apache/mod_h2", "www-apache/mod_jk", "www-apache/mod_ldap_userdir", "www-apache/mod_limitipconn", "www-apache/mod_log_rotate", "www-apache/mod_log_sql", "www-apache/mod_maxminddb", "www-apache/mod_musicindex", "www-apache/mod_nss", "www-apache/mod_perl", "www-apache/mod_qos", "www-apache/mod_qos", "www-apache/mod_qos", "www-apache/mod_qos", "www-apache/mod_rpaf", "www-apache/mod_security", "www-apache/mod_vdbh", "www-apache/mod_vhost_ldap", "www-apache/mod_whatkilledus", "www-apache/mod_wsgi", "www-apache/mod_wsgi", "www-apache/mod_xsendfile", "www-apache/mod_xsendfile", "www-apache/modsec-flameeyes", "www-apache/modsec-flameeyes", "www-apache/modsecurity-crs", "www-apache/mpm_itk", "www-apache/passenger", "www-apache/passenger", "www-apache/passenger", "www-apache/passenger", "www-apache/pwauth", "www-apps/Apache-Gallery", "www-apps/agendav", "www-apps/airdcpp-webui", "www-apps/airdcpp-webui", "www-apps/baikal", "www-apps/blazeblogger", "www-apps/blohg", "www-apps/blohg", "www-apps/bugzilla", "www-apps/cgisysinfo", "www-apps/cgit", "www-apps/cgit", "www-apps/cgit", "www-apps/cgp", "www-apps/chromedriver-bin", "www-apps/cvsweb", "www-apps/davical", "www-apps/davical", "www-apps/dokuwiki", "www-apps/dokuwiki", "www-apps/dokuwiki", "www-apps/dotproject", "www-apps/drupal", "www-apps/drupal", "www-apps/drupal", "www-apps/drupal", "www-apps/drupal", "www-apps/element", "www-apps/element", "www-apps/gitea", "www-apps/gitea", "www-apps/gitit", "www-apps/grafana-bin", "www-apps/grafana-bin", "www-apps/grafana-bin", "www-apps/grafana-bin", "www-apps/grafana-bin", "www-apps/grafana-bin", "www-apps/grafana-bin", "www-apps/hugo", "www-apps/hugo", "www-apps/icingaweb2-module-director", "www-apps/icingaweb2-module-director", "www-apps/icingaweb2-module-graphite", "www-apps/icingaweb2-module-graphite", "www-apps/icingaweb2-module-pnp4nagios", "www-apps/icingaweb2-module-pnp4nagios", "www-apps/icingaweb2", "www-apps/icingaweb2", "www-apps/icingaweb2", "www-apps/icingaweb2", "www-apps/icingaweb2", "www-apps/icingaweb2", "www-apps/ikiwiki", "www-apps/jekyll-coffeescript", "www-apps/jekyll-sass-converter", "www-apps/jekyll-sitemap", "www-apps/jekyll-watch", "www-apps/jekyll", "www-apps/jekyll", "www-apps/jekyll", "www-apps/karma-bin", "www-apps/karma-bin", "www-apps/karma-bin", "www-apps/karma-bin", "www-apps/kibana-bin", "www-apps/kibana-bin", "www-apps/kibana-bin", "www-apps/kibana-bin", "www-apps/kibana-bin", "www-apps/kibana-bin", "www-apps/kibana-bin", "www-apps/klaus", "www-apps/liquid_feedback_core", "www-apps/liquid_feedback_core", "www-apps/liquid_feedback_core", "www-apps/liquid_feedback_frontend", "www-apps/mediawiki", "www-apps/mirmon", "www-apps/moodle", "www-apps/moodle", "www-apps/moodle", "www-apps/mythweb", "www-apps/nanoblogger", "www-apps/nanoc-checking", "www-apps/nanoc-cli", "www-apps/nanoc-core", "www-apps/nanoc-core", "www-apps/nanoc-deploying", "www-apps/nanoc-spec", "www-apps/nanoc", "www-apps/nanoc", "www-apps/nextcloud-notify_push", "www-apps/nextcloud-notify_push", "www-apps/nextcloud-notify_push", "www-apps/nextcloud-notify_push", "www-apps/nextcloud", "www-apps/nextcloud", "www-apps/nextcloud", "www-apps/nextcloud", "www-apps/nextcloud", "www-apps/nextcloud", "www-apps/nextcloud", "www-apps/nikola", "www-apps/novnc", "www-apps/novnc", "www-apps/owncloud", "www-apps/owncloud", "www-apps/phpBB", "www-apps/phpsysinfo", "www-apps/piwigo", "www-apps/postfixadmin", "www-apps/prewikka", "www-apps/radicale", "www-apps/radicale", "www-apps/redmine", "www-apps/rocketwiki-lqfb", "www-apps/roundup", "www-apps/rt", "www-apps/rutorrent", "www-apps/rutorrent", "www-apps/trickster", "www-apps/tt-rss", "www-apps/tt-rss", "www-apps/webdavcgi", "www-apps/webmcp", "www-apps/webmcp", "www-apps/websvn", "www-apps/wiliki", "www-apps/wordpress", "www-apps/zeppelin-bin", "www-apps/xpra-html5", "www-client/chromium", "www-client/chromium", "www-client/chromium", "www-client/chromium", "www-client/dillo", "www-client/dillo", "www-client/dillo", "www-client/elinks", "www-client/elinks", "www-client/epiphany", "www-client/epiphany", "www-client/falkon", "www-client/fetch", "www-client/fetch", "www-client/firefox-bin", "www-client/firefox-bin", "www-client/firefox-bin", "www-client/firefox", "www-client/firefox", "www-client/firefox", "www-client/google-chrome-beta", "www-client/google-chrome-unstable", "www-client/google-chrome", "www-client/httrack", "www-client/jd", "www-client/jd", "www-client/links", "www-client/links", "www-client/luakit", "www-client/luakit", "www-client/luakit", "www-client/lynx", "www-client/lynx", "www-client/microsoft-edge-beta", "www-client/microsoft-edge-beta", "www-client/microsoft-edge-beta", "www-client/microsoft-edge-dev", "www-client/microsoft-edge-dev", "www-client/microsoft-edge-dev", "www-client/midori", "www-client/netrik", "www-client/netsurf", "www-client/opera-beta", "www-client/opera-beta", "www-client/opera-beta", "www-client/opera-developer", "www-client/opera-developer", "www-client/opera-developer", "www-client/opera", "www-client/otter", "www-client/otter", "www-client/pybugz", "www-client/pybugz", "www-client/qutebrowser", "www-client/qutebrowser", "www-client/qutebrowser", "www-client/qutebrowser", "www-client/qutebrowser", "www-client/seamonkey", "www-client/seamonkey", "www-client/surf", "www-client/surf", "www-client/surf", "www-client/surfraw", "www-client/surfraw", "www-client/uget", "www-client/uget", "www-client/vivaldi-snapshot", "www-client/vivaldi-snapshot", "www-client/vivaldi", "www-client/vivaldi", "www-client/vivaldi", "www-client/vivaldi", "www-client/w3m", "www-client/w3m", "www-client/w3m", "www-client/w3mmee", "www-misc/awstats", "www-misc/bookmarksync", "www-misc/buku", "www-misc/buku", "www-misc/fcgiwrap", "www-misc/fcgiwrap", "www-misc/htdig", "www-misc/litmus", "www-misc/log-toolkit", "www-misc/mergelog", "www-misc/monitorix", "www-misc/monitorix", "www-misc/multisort", "www-misc/profile-sync-daemon", "www-misc/profile-sync-daemon", "www-misc/profile-sync-daemon", "www-misc/profile-sync-daemon", "www-misc/shellinabox", "www-misc/urlwatch", "www-misc/urlwatch", "www-misc/vdradmin-am", "www-misc/vdradmin-am", "www-misc/visitors", "www-misc/wsmake", "www-misc/xxv", "www-plugins/browserpass", "www-plugins/chrome-binary-plugins", "www-plugins/chrome-binary-plugins", "www-plugins/chrome-binary-plugins", "www-plugins/gosuslugi-plugin", "www-plugins/lightspark", "www-plugins/lightspark", "www-plugins/lightspark", "www-plugins/lightspark", "www-plugins/passff-host", "www-plugins/pdfjs", "www-plugins/pdfjs", "www-servers/adsf", "www-servers/adsf", "www-servers/adsf", "www-servers/apache", "www-servers/boa", "www-servers/bozohttpd", "www-servers/caddy", "www-servers/caddy", "www-servers/caddy", "www-servers/civetweb", "www-servers/civetweb", "www-servers/fnord", "www-servers/gatling", "www-servers/gunicorn", "www-servers/h2o", "www-servers/h2o", "www-servers/lighttpd", "www-servers/lighttpd", "www-servers/lighttpd", "www-servers/mongrel2", "www-servers/monkeyd", "www-servers/monkeyd", "www-servers/moonbridge", "www-servers/nginx-unit", "www-servers/nginx", "www-servers/nginx", "www-servers/nginx", "www-servers/nginx", "www-servers/pound", "www-servers/pshs", "www-servers/puma", "www-servers/puma", "www-servers/servefile", "www-servers/sniproxy", "www-servers/spawn-fcgi", "www-servers/thttpd", "www-servers/thttpd", "www-servers/tomcat", "www-servers/tomcat", "www-servers/tomcat", "www-servers/tomcat", "www-servers/tomcat", "www-servers/tomcat", "www-servers/tomcat", "www-servers/tornado", "www-servers/tornado", "www-servers/uwsgi", "www-servers/uwsgi", "www-servers/varnish", "www-servers/varnish", "www-servers/xsp", "www-servers/xsp", "www-servers/thin", "x11-apps/appres", "x11-apps/bdftopcf", "x11-apps/beforelight", "x11-apps/bitmap", "x11-apps/editres", "x11-apps/fonttosfnt", "x11-apps/fslsfonts", "x11-apps/fstobdf", "x11-apps/iceauth", "x11-apps/ico", "x11-apps/igt-gpu-tools", "x11-apps/igt-gpu-tools", "x11-apps/igt-gpu-tools", "x11-apps/listres", "x11-apps/luit", "x11-apps/luit", "x11-apps/mesa-progs", "x11-apps/mesa-progs", "x11-apps/mkfontscale", "x11-apps/oclock", "x11-apps/radeon-profile-daemon", "x11-apps/radeon-profile-daemon", "x11-apps/radeon-profile", "x11-apps/radeon-profile", "x11-apps/radeon-profile", "x11-apps/rgb", "x11-apps/rstart", "x11-apps/scripts", "x11-apps/sessreg", "x11-apps/setxkbmap", "x11-apps/showfont", "x11-apps/smproxy", "x11-apps/transset", "x11-apps/viewres", "x11-apps/x11perf", "x11-apps/xauth", "x11-apps/xauth", "x11-apps/xbacklight", "x11-apps/xbiff", "x11-apps/xcalc", "x11-apps/xclipboard", "x11-apps/xclock", "x11-apps/xcmsdb", "x11-apps/xconsole", "x11-apps/xcursorgen", "x11-apps/xdbedizzy", "x11-apps/xditview", "x11-apps/xdm", "x11-apps/xdpyinfo", "x11-apps/xdriinfo", "x11-apps/xedit", "x11-apps/xev", "x11-apps/xeyes", "x11-apps/xeyes", "x11-apps/xf86dga", "x11-apps/xfd", "x11-apps/xfontsel", "x11-apps/xgamma", "x11-apps/xgc", "x11-apps/xhost", "x11-apps/xinit", "x11-apps/xinit", "x11-apps/xinput", "x11-apps/xinput_calibrator", "x11-apps/xisxwayland", "x11-apps/xisxwayland", "x11-apps/xkbcomp", "x11-apps/xkbevd", "x11-apps/xkbprint", "x11-apps/xkbutils", "x11-apps/xkill", "x11-apps/xload", "x11-apps/xlogo", "x11-apps/xlsatoms", "x11-apps/xlsclients", "x11-apps/xlsfonts", "x11-apps/xmag", "x11-apps/xman", "x11-apps/xmessage", "x11-apps/xmodmap", "x11-apps/xmore", "x11-apps/xpr", "x11-apps/xprop", "x11-apps/xrandr", "x11-apps/xrdb", "x11-apps/xrdb", "x11-apps/xrectsel", "x11-apps/xrefresh", "x11-apps/xset", "x11-apps/xsetroot", "x11-apps/xsm", "x11-apps/xstdcmap", "x11-apps/xvidtune", "x11-apps/xvinfo", "x11-apps/xwarppointer", "x11-apps/xwd", "x11-apps/xwd", "x11-apps/xwininfo", "x11-apps/xwud", "x11-apps/xrestop", "x11-apps/xrestop", "x11-base/xcb-proto", "x11-base/xorg-drivers", "x11-base/xorg-drivers", "x11-base/xorg-proto", "x11-base/xorg-proto", "x11-base/xorg-proto", "x11-base/xorg-server", "x11-base/xorg-server", "x11-base/xorg-server", "x11-base/xorg-server", "x11-base/xorg-server", "x11-base/xorg-server", "x11-base/xorg-x11", "x11-base/xwayland", "x11-base/xwayland", "x11-base/xwayland", "x11-base/xwayland", "x11-drivers/nvidia-drivers", "x11-drivers/nvidia-drivers", "x11-drivers/nvidia-drivers", "x11-drivers/nvidia-drivers", "x11-drivers/xf86-input-elographics", "x11-drivers/xf86-input-evdev", "x11-drivers/xf86-input-joystick", "x11-drivers/xf86-input-libinput", "x11-drivers/xf86-input-mtrack", "x11-drivers/xf86-input-synaptics", "x11-drivers/xf86-input-vmmouse", "x11-drivers/xf86-input-vmmouse", "x11-drivers/xf86-input-void", "x11-drivers/xf86-input-wacom", "x11-drivers/xf86-video-amdgpu", "x11-drivers/xf86-video-amdgpu", "x11-drivers/xf86-video-amdgpu", "x11-drivers/xf86-video-ast", "x11-drivers/xf86-video-ati", "x11-drivers/xf86-video-ati", "x11-drivers/xf86-video-dummy", "x11-drivers/xf86-video-fbdev", "x11-drivers/xf86-video-geode", "x11-drivers/xf86-video-glint", "x11-drivers/xf86-video-intel", "x11-drivers/xf86-video-intel", "x11-drivers/xf86-video-intel", "x11-drivers/xf86-video-intel", "x11-drivers/xf86-video-mga", "x11-drivers/xf86-video-nouveau", "x11-drivers/xf86-video-nv", "x11-drivers/xf86-video-omap", "x11-drivers/xf86-video-openchrome", "x11-drivers/xf86-video-qxl", "x11-drivers/xf86-video-r128", "x11-drivers/xf86-video-siliconmotion", "x11-drivers/xf86-video-vboxvideo", "x11-drivers/xf86-video-vesa", "x11-drivers/xf86-video-vmware", "x11-libs/agg", "x11-libs/c++-gtk-utils", "x11-libs/c++-gtk-utils", "x11-libs/c++-gtk-utils", "x11-libs/cairo", "x11-libs/cairo", "x11-libs/colord-gtk", "x11-libs/dnd", "x11-libs/fltk", "x11-libs/fltk", "x11-libs/fltk", "x11-libs/fox-wrapper", "x11-libs/fox", "x11-libs/fox", "x11-libs/gdk-pixbuf-xlib", "x11-libs/gdk-pixbuf", "x11-libs/gl2ps", "x11-libs/gnome-pty-helper", "x11-libs/goffice", "x11-libs/goffice", "x11-libs/goocanvas", "x11-libs/goocanvas", "x11-libs/gtk+", "x11-libs/gtk+", "x11-libs/gtk+extra", "x11-libs/gtk-mac-integration", "x11-libs/gtkdatabox", "x11-libs/gtkglext", "x11-libs/gtkmathview", "x11-libs/gtksourceview", "x11-libs/gtksourceview", "x11-libs/gtksourceview", "x11-libs/libFS", "x11-libs/libGLw", "x11-libs/libICE", "x11-libs/libQGLViewer", "x11-libs/libQGLViewer", "x11-libs/libSM", "x11-libs/libX11", "x11-libs/libXScrnSaver", "x11-libs/libXau", "x11-libs/libXaw", "x11-libs/libXaw3d", "x11-libs/libXaw3dXft", "x11-libs/libXcomposite", "x11-libs/libXcursor", "x11-libs/libXdamage", "x11-libs/libXdmcp", "x11-libs/libXext", "x11-libs/libXfixes", "x11-libs/libXfont2", "x11-libs/libXfont2", "x11-libs/libXfont2", "x11-libs/libXft", "x11-libs/libXft", "x11-libs/libXi", "x11-libs/libXi", "x11-libs/libXinerama", "x11-libs/libXmu", "x11-libs/libXpm", "x11-libs/libXpresent", "x11-libs/libXrandr", "x11-libs/libXrender", "x11-libs/libXres", "x11-libs/libXt", "x11-libs/libXt", "x11-libs/libXtst", "x11-libs/libXv", "x11-libs/libXvMC", "x11-libs/libXxf86dga", "x11-libs/libXxf86vm", "x11-libs/libast", "x11-libs/libclxclient", "x11-libs/libcryptui", "x11-libs/libdlo", "x11-libs/libdmx", "x11-libs/libdockapp", "x11-libs/libdrm", "x11-libs/libdrm", "x11-libs/libdrm", "x11-libs/libfakekey", "x11-libs/libfm-extra", "x11-libs/libfm-qt", "x11-libs/libfm-qt", "x11-libs/libfm", "x11-libs/libfontenc", "x11-libs/libgxim", "x11-libs/libnotify", "x11-libs/libnotify", "x11-libs/libnotify", "x11-libs/liboglappth", "x11-libs/libpciaccess", "x11-libs/librfm", "x11-libs/libtinynotify-cli", "x11-libs/libtinynotify-cli", "x11-libs/libtinynotify-systemwide", "x11-libs/libtinynotify-systemwide", "x11-libs/libtinynotify", "x11-libs/libtinynotify", "x11-libs/libva-compat", "x11-libs/libva-intel-driver", "x11-libs/libva-intel-driver", "x11-libs/libva-intel-media-driver", "x11-libs/libva-intel-media-driver", "x11-libs/libva-intel-media-driver", "x11-libs/libva-intel-media-driver", "x11-libs/libva-intel-media-driver", "x11-libs/libva-intel-media-driver", "x11-libs/libva-intel-media-driver", "x11-libs/libva-intel-media-driver", "x11-libs/libva-vdpau-driver", "x11-libs/libva", "x11-libs/libva", "x11-libs/libva", "x11-libs/libva", "x11-libs/libva", "x11-libs/libva", "x11-libs/libva", "x11-libs/libva", "x11-libs/libva", "x11-libs/libva", "x11-libs/libvdpau", "x11-libs/libvdpau", "x11-libs/libwnck", "x11-libs/libwnck", "x11-libs/libxcb", "x11-libs/libxcvt", "x11-libs/libxcvt", "x11-libs/libxkbcommon", "x11-libs/libxkbfile", "x11-libs/libxklavier", "x11-libs/libxshmfence", "x11-libs/libyui-gtk", "x11-libs/libyui-ncurses", "x11-libs/libyui-qt", "x11-libs/libyui", "x11-libs/motif", "x11-libs/mx", "x11-libs/neXtaw", "x11-libs/pango", "x11-libs/pango", "x11-libs/pango", "x11-libs/pango", "x11-libs/pango", "x11-libs/pango", "x11-libs/pixman", "x11-libs/pixman", "x11-libs/qscintilla", "x11-libs/qscintilla", "x11-libs/qtermwidget", "x11-libs/qtermwidget", "x11-libs/qtermwidget", "x11-libs/qwt", "x11-libs/qwt", "x11-libs/qwtplot3d", "x11-libs/qwtpolar", "x11-libs/rep-gtk", "x11-libs/scw", "x11-libs/snorenotify", "x11-libs/spread-sheet-widget", "x11-libs/spread-sheet-widget", "x11-libs/startup-notification", "x11-libs/tslib", "x11-libs/vte", "x11-libs/vte", "x11-libs/wxGTK", "x11-libs/wxGTK", "x11-libs/wxGTK", "x11-libs/wxGTK", "x11-libs/xapps", "x11-libs/xapps", "x11-libs/xbae", "x11-libs/xcb-util-cursor", "x11-libs/xcb-util-image", "x11-libs/xcb-util-keysyms", "x11-libs/xcb-util-renderutil", "x11-libs/xcb-util-wm", "x11-libs/xcb-util-xrm", "x11-libs/xcb-util", "x11-libs/xforms", "x11-libs/xosd", "x11-libs/xpa", "x11-libs/xtrans", "x11-libs/libfakeXinerama", "x11-misc/3ddesktop", "x11-misc/3dfb", "x11-misc/3dfm", "x11-misc/accessx", "x11-misc/alacarte", "x11-misc/albert", "x11-misc/alock", "x11-misc/appmenu-gtk-module", "x11-misc/apwal", "x11-misc/arandr", "x11-misc/autocutsel", "x11-misc/autorandr", "x11-misc/autorandr", "x11-misc/barrier", "x11-misc/bbacpi", "x11-misc/bbcd", "x11-misc/bbdate", "x11-misc/bbkeys", "x11-misc/bblaunch", "x11-misc/bbmail", "x11-misc/bbpager", "x11-misc/bbppp", "x11-misc/bbrun", "x11-misc/bbtime", "x11-misc/bbweather", "x11-misc/birdtray", "x11-misc/birdtray", "x11-misc/blockdpy", "x11-misc/bumblebee", "x11-misc/bumblebee", "x11-misc/cairo-clock", "x11-misc/cbatticon", "x11-misc/cdm", "x11-misc/chgres", "x11-misc/clipmenu", "x11-misc/clipnotify", "x11-misc/colord", "x11-misc/colord", "x11-misc/compose-tables", "x11-misc/compton", "x11-misc/copyq", "x11-misc/copyq", "x11-misc/dclock", "x11-misc/devilspie", "x11-misc/devilspie2", "x11-misc/dex", "x11-misc/dmenu", "x11-misc/dmenu", "x11-misc/dunst", "x11-misc/dunst", "x11-misc/dunst", "x11-misc/dunst", "x11-misc/dxpc", "x11-misc/dzen", "x11-misc/e16-keyedit", "x11-misc/e16menuedit2", "x11-misc/easystroke", "x11-misc/efax-gtk", "x11-misc/evolvotron", "x11-misc/fbdesk", "x11-misc/fbpager", "x11-misc/fbpager", "x11-misc/fbpanel", "x11-misc/fireflies", "x11-misc/flow-pomodoro", "x11-misc/fluxter", "x11-misc/fpm2", "x11-misc/fracplanet", "x11-misc/fraqtive", "x11-misc/ftmenu", "x11-misc/gbase", "x11-misc/gbdfed", "x11-misc/gccmakedep", "x11-misc/gccmakedep", "x11-misc/gcolor2", "x11-misc/genmenu", "x11-misc/gigolo", "x11-misc/gmrun", "x11-misc/gpaste", "x11-misc/grabc", "x11-misc/gromit", "x11-misc/grsync", "x11-misc/grsync", "x11-misc/grsync", "x11-misc/grub2-theme-preview", "x11-misc/grun", "x11-misc/gtk2fontsel", "x11-misc/gtkdialog", "x11-misc/gtkdialog", "x11-misc/gxmessage", "x11-misc/habak", "x11-misc/hsetroot", "x11-misc/i3blocks-contrib", "x11-misc/i3blocks-contrib", "x11-misc/i3blocks", "x11-misc/i3lock", "x11-misc/i3status", "x11-misc/i855crt", "x11-misc/icon-naming-utils", "x11-misc/iconbox", "x11-misc/idesk-extras", "x11-misc/idesk", "x11-misc/imake", "x11-misc/imake", "x11-misc/imwheel", "x11-misc/j4-dmenu-desktop", "x11-misc/kapow", "x11-misc/kaqaz", "x11-misc/kbdd", "x11-misc/kdocker", "x11-misc/kdocker", "x11-misc/kronometer", "x11-misc/ktsuss", "x11-misc/libinput-gestures", "x11-misc/libinput-gestures", "x11-misc/light-locker", "x11-misc/lightdm-gtk-greeter", "x11-misc/lightdm-gtk-greeter", "x11-misc/lightdm-mini-greeter", "x11-misc/lightdm-mini-greeter", "x11-misc/lightdm-mini-greeter", "x11-misc/lightdm-mini-greeter", "x11-misc/lightdm", "x11-misc/lineak-defaultplugin", "x11-misc/lineak-xosdplugin", "x11-misc/lineakd", "x11-misc/lndir", "x11-misc/lndir", "x11-misc/lsw", "x11-misc/macopix", "x11-misc/makedepend", "x11-misc/matchbox-keyboard", "x11-misc/mate-notification-daemon", "x11-misc/mate-notification-daemon", "x11-misc/menulibre", "x11-misc/menumaker", "x11-misc/mgm", "x11-misc/mixer_app", "x11-misc/mozo", "x11-misc/mozo", "x11-misc/mugshot", "x11-misc/netwmpager", "x11-misc/nitrogen", "x11-misc/nitrogen", "x11-misc/notification-daemon", "x11-misc/notification-daemon", "x11-misc/notify-osd", "x11-misc/numlockx", "x11-misc/obconf-qt", "x11-misc/obconf", "x11-misc/obmenu-generator", "x11-misc/obmenu-generator", "x11-misc/openbox-menu", "x11-misc/oroborus-deskmenu", "x11-misc/oroborus-keylaunch", "x11-misc/parcellite", "x11-misc/pcmanfm-qt", "x11-misc/pcmanfm-qt", "x11-misc/pcmanfm", "x11-misc/peksystray", "x11-misc/picom", "x11-misc/picom", "x11-misc/picom", "x11-misc/piedock", "x11-misc/polybar", "x11-misc/polybar", "x11-misc/prime-run", "x11-misc/primus", "x11-misc/projecteur", "x11-misc/py3status", "x11-misc/qarma", "x11-misc/qcomicbook", "x11-misc/qlipper", "x11-misc/qps", "x11-misc/qps", "x11-misc/qt5ct", "x11-misc/qt5ct", "x11-misc/qterm", "x11-misc/qtfm", "x11-misc/qtfm", "x11-misc/quitcount", "x11-misc/qxkb", "x11-misc/read-edid", "x11-misc/redshift", "x11-misc/redshift", "x11-misc/redshift", "x11-misc/rendercheck", "x11-misc/revelation", "x11-misc/rodent", "x11-misc/rofi-calc", "x11-misc/rofi-calc", "x11-misc/rofi", "x11-misc/rofi", "x11-misc/rss-glx", "x11-misc/safeeyes", "x11-misc/safeeyes", "x11-misc/safeeyes", "x11-misc/safeeyes", "x11-misc/screen-message", "x11-misc/screen-message", "x11-misc/screen-message", "x11-misc/screengrab", "x11-misc/screengrab", "x11-misc/screengrab", "x11-misc/screengrab", "x11-misc/screengrab", "x11-misc/screenkey", "x11-misc/screenkey", "x11-misc/screenkey", "x11-misc/sct", "x11-misc/sddm", "x11-misc/sddm", "x11-misc/seetxt", "x11-misc/sent", "x11-misc/sent", "x11-misc/set_opacity", "x11-misc/set_opacity", "x11-misc/shared-mime-info", "x11-misc/shared-mime-info", "x11-misc/shared-mime-info", "x11-misc/shared-mime-info", "x11-misc/shutter", "x11-misc/shutter", "x11-misc/simpleswitcher", "x11-misc/simpleswitcher", "x11-misc/sisctrl", "x11-misc/skippy", "x11-misc/slim", "x11-misc/slock", "x11-misc/slop", "x11-misc/slop", "x11-misc/snixembed", "x11-misc/snixembed", "x11-misc/spacefm", "x11-misc/spacefm", "x11-misc/splatmoji", "x11-misc/splatmoji", "x11-misc/spnavcfg", "x11-misc/sprop", "x11-misc/sselp", "x11-misc/sselp", "x11-misc/stalonetray", "x11-misc/stalonetray", "x11-misc/sunflower", "x11-misc/sux", "x11-misc/svkbd", "x11-misc/sw-notify-send", "x11-misc/sw-notify-send", "x11-misc/sxhkd", "x11-misc/sxhkd", "x11-misc/synergy", "x11-misc/synergy", "x11-misc/tabbed", "x11-misc/tdrop", "x11-misc/tdrop", "x11-misc/tdrop", "x11-misc/tint2", "x11-misc/tinynotify-send", "x11-misc/tinynotify-send", "x11-misc/touchcal", "x11-misc/trayer-srg", "x11-misc/trayer", "x11-misc/unclutter-xfixes", "x11-misc/unclutter-xfixes", "x11-misc/unclutter", "x11-misc/urxvt-font-size", "x11-misc/urxvt-font-size", "x11-misc/urxvt-perls", "x11-misc/urxvt-tabbedex", "x11-misc/urxvtconfig", "x11-misc/util-macros", "x11-misc/util-macros", "x11-misc/vdpauinfo", "x11-misc/vdpauinfo", "x11-misc/viewglob", "x11-misc/virtualgl", "x11-misc/vnc2swf", "x11-misc/vym", "x11-misc/vym", "x11-misc/wayv", "x11-misc/wbar", "x11-misc/wdm", "x11-misc/whaw", "x11-misc/wininfo", "x11-misc/wmctrl", "x11-misc/wmname", "x11-misc/x11vnc", "x11-misc/x11vnc", "x11-misc/x2vnc", "x11-misc/x2x", "x11-misc/xaos", "x11-misc/xautolock", "x11-misc/xautomation", "x11-misc/xbatt", "x11-misc/xbattbar", "x11-misc/xbindkeys", "x11-misc/xbindkeys", "x11-misc/xbitmaps", "x11-misc/xcalendar", "x11-misc/xcalib", "x11-misc/xcape", "x11-misc/xcave", "x11-misc/xcb", "x11-misc/xclip", "x11-misc/xclip", "x11-misc/xcompmgr", "x11-misc/xdaliclock", "x11-misc/xdesktopwaves", "x11-misc/xdg-user-dirs-gtk", "x11-misc/xdg-user-dirs", "x11-misc/xdg-utils", "x11-misc/xdg-utils", "x11-misc/xdg-utils", "x11-misc/xdialog", "x11-misc/xdiskusage", "x11-misc/xdo", "x11-misc/xdock", "x11-misc/xdotool", "x11-misc/xdotool", "x11-misc/xearth", "x11-misc/xfe", "x11-misc/xfishtank", "x11-misc/xflux-gui", "x11-misc/xflux", "x11-misc/xflux", "x11-misc/xfractint", "x11-misc/xgestures", "x11-misc/xhkeys", "x11-misc/xiccd", "x11-misc/xidle", "x11-misc/xkbd", "x11-misc/xkbd", "x11-misc/xkblayout-state", "x11-misc/xkblayout-state", "x11-misc/xkbset", "x11-misc/xkeyboard-config", "x11-misc/xkeyboard-config", "x11-misc/xkeyboard-config", "x11-misc/xkeycaps", "x11-misc/xlockmore", "x11-misc/xlockmore", "x11-misc/xmobar", "x11-misc/xmountains", "x11-misc/xnee", "x11-misc/xnots", "x11-misc/xnots", "x11-misc/xorg-cf-files", "x11-misc/xorg-cf-files", "x11-misc/xorg-cf-files", "x11-misc/xosview", "x11-misc/xosview", "x11-misc/xosview", "x11-misc/xowl", "x11-misc/xpad", "x11-misc/xplanet", "x11-misc/xprintidle", "x11-misc/xprintidle", "x11-misc/xrootconsole", "x11-misc/xscreensaver-app", "x11-misc/xscreensaver", "x11-misc/xscreensaver", "x11-misc/xsel", "x11-misc/xsel", "x11-misc/xsensors", "x11-misc/xsetleds", "x11-misc/xsettingsd", "x11-misc/xsnap", "x11-misc/xsnow", "x11-misc/xsnow", "x11-misc/xsr", "x11-misc/xsri", "x11-misc/xss-lock", "x11-misc/xssstate", "x11-misc/xteddy", "x11-misc/xtermcontrol", "x11-misc/xtitle", "x11-misc/xtoolwait", "x11-misc/xtrace", "x11-misc/xtrlock", "x11-misc/xvfb-run", "x11-misc/xvfb-run", "x11-misc/xvfb-run", "x11-misc/xvkbd", "x11-misc/xwallpaper", "x11-misc/xwallpaper", "x11-misc/xwallpaper", "x11-misc/xwit", "x11-misc/xwrits", "x11-misc/xxkb", "x11-misc/xystray", "x11-misc/yabar", "x11-misc/zim", "x11-misc/zim", "x11-misc/zim", "x11-misc/zim", "x11-misc/zim", "x11-misc/rofi-file-browser-extended", "x11-plugins/allin1", "x11-plugins/asapm", "x11-plugins/asclock", "x11-plugins/ascpu", "x11-plugins/asmem", "x11-plugins/asmon", "x11-plugins/astime", "x11-plugins/bfm", "x11-plugins/bubblemon", "x11-plugins/cputnik", "x11-plugins/docker", "x11-plugins/e16-epplets", "x11-plugins/enigmail", "x11-plugins/enigmail", "x11-plugins/enigmail", "x11-plugins/gkrellaclock", "x11-plugins/gkrellfire", "x11-plugins/gkrellkam", "x11-plugins/gkrellm-bgchanger", "x11-plugins/gkrellm-bluez", "x11-plugins/gkrellm-countdown", "x11-plugins/gkrellm-cpupower", "x11-plugins/gkrellm-imonc", "x11-plugins/gkrellm-leds", "x11-plugins/gkrellm-mailwatch", "x11-plugins/gkrellm-plugins", "x11-plugins/gkrellm-radio", "x11-plugins/gkrellm-trayicons", "x11-plugins/gkrellm-vaiobright", "x11-plugins/gkrellm-volume", "x11-plugins/gkrellm-xkb", "x11-plugins/gkrellmlaunch", "x11-plugins/gkrellmoon", "x11-plugins/gkrellmss", "x11-plugins/gkrellmwireless", "x11-plugins/gkrellshoot", "x11-plugins/gkrellstock", "x11-plugins/gkrellsun", "x11-plugins/gkrelltop", "x11-plugins/gkrellweather", "x11-plugins/gkwebmon", "x11-plugins/guifications", "x11-plugins/hexchat-javascript", "x11-plugins/i8krellm", "x11-plugins/lurch", "x11-plugins/lurch", "x11-plugins/pidgin-birthday-reminder", "x11-plugins/pidgin-bot-sentry", "x11-plugins/pidgin-encryption", "x11-plugins/pidgin-extprefs", "x11-plugins/pidgin-funyahoo-plusplus", "x11-plugins/pidgin-gnome-keyring", "x11-plugins/pidgin-gpg", "x11-plugins/pidgin-hotkeys", "x11-plugins/pidgin-indicator", "x11-plugins/pidgin-latex", "x11-plugins/pidgin-led-notification", "x11-plugins/pidgin-libnotify", "x11-plugins/pidgin-mbpurple", "x11-plugins/pidgin-mpris", "x11-plugins/pidgin-musictracker", "x11-plugins/pidgin-opensteamworks", "x11-plugins/pidgin-otr", "x11-plugins/pidgin-privacy-please", "x11-plugins/pidgin-rhythmbox", "x11-plugins/pidgin-sipe", "x11-plugins/pidgin-sipe", "x11-plugins/pidgin-skypeweb", "x11-plugins/pidgin-telegram", "x11-plugins/pidgin-window_merge", "x11-plugins/pidgin-xmpp-receipts", "x11-plugins/pidgintex", "x11-plugins/purple-facebook", "x11-plugins/purple-facebook", "x11-plugins/purple-facebook", "x11-plugins/purple-hangouts", "x11-plugins/purple-hangouts", "x11-plugins/purple-libnotify-plus", "x11-plugins/vicious", "x11-plugins/wmCalClock", "x11-plugins/wmDownload", "x11-plugins/wmMatrix", "x11-plugins/wmSMPmon", "x11-plugins/wmSpaceWeather", "x11-plugins/wmSun", "x11-plugins/wmXName", "x11-plugins/wmacpi", "x11-plugins/wmacpi", "x11-plugins/wmacpiload-ac", "x11-plugins/wmacpiload-ac", "x11-plugins/wmacpimon", "x11-plugins/wmail", "x11-plugins/wmail", "x11-plugins/wmail", "x11-plugins/wmamixer", "x11-plugins/wmamixer", "x11-plugins/wmapm", "x11-plugins/wmapmload", "x11-plugins/wmappl", "x11-plugins/wmbatteries", "x11-plugins/wmbattery", "x11-plugins/wmbiff", "x11-plugins/wmbinclock", "x11-plugins/wmbio", "x11-plugins/wmblob", "x11-plugins/wmbutton", "x11-plugins/wmcalc", "x11-plugins/wmcalc", "x11-plugins/wmcalendar", "x11-plugins/wmcdplay", "x11-plugins/wmcliphist", "x11-plugins/wmclock", "x11-plugins/wmclockmon", "x11-plugins/wmcms", "x11-plugins/wmcoincoin", "x11-plugins/wmcp", "x11-plugins/wmcpuload", "x11-plugins/wmcpuwatch", "x11-plugins/wmcube", "x11-plugins/wmdiskmon", "x11-plugins/wmdots", "x11-plugins/wmdrawer", "x11-plugins/wmfire", "x11-plugins/wmfishtime", "x11-plugins/wmforkplop", "x11-plugins/wmfortune", "x11-plugins/wmfrog", "x11-plugins/wmfsm", "x11-plugins/wmfsm", "x11-plugins/wmget", "x11-plugins/wmgrabimage", "x11-plugins/wmgtemp", "x11-plugins/wmhdplop", "x11-plugins/wmhdplop", "x11-plugins/wmifinfo", "x11-plugins/wmifs", "x11-plugins/wminet", "x11-plugins/wmitime", "x11-plugins/wmix", "x11-plugins/wmlife", "x11-plugins/wmload", "x11-plugins/wmlongrun", "x11-plugins/wmmaiload", "x11-plugins/wmmand", "x11-plugins/wmmemload", "x11-plugins/wmmenu", "x11-plugins/wmmisc", "x11-plugins/wmmixer", "x11-plugins/wmmixer", "x11-plugins/wmmon+smp", "x11-plugins/wmmon", "x11-plugins/wmmoonclock", "x11-plugins/wmmoonclock", "x11-plugins/wmmp", "x11-plugins/wmmp3", "x11-plugins/wmnd", "x11-plugins/wmnd", "x11-plugins/wmnet", "x11-plugins/wmnetload", "x11-plugins/wmpager", "x11-plugins/wmpasman", "x11-plugins/wmpinboard", "x11-plugins/wmping", "x11-plugins/wmpop3", "x11-plugins/wmpop3lb", "x11-plugins/wmpower", "x11-plugins/wmppp", "x11-plugins/wmrack", "x11-plugins/wmrecord", "x11-plugins/wmsmixer", "x11-plugins/wmstickynotes", "x11-plugins/wmswallow", "x11-plugins/wmsysmon", "x11-plugins/wmsystemtray", "x11-plugins/wmsystray", "x11-plugins/wmtime", "x11-plugins/wmtimer", "x11-plugins/wmtop", "x11-plugins/wmtz", "x11-plugins/wmudmount", "x11-plugins/wmweather+", "x11-plugins/wmweather+", "x11-plugins/wmweather", "x11-plugins/wmwifi", "x11-plugins/wmwork", "x11-plugins/wmxkb", "x11-plugins/wmxres", "x11-plugins/wmxres", "x11-terms/alacritty", "x11-terms/alacritty", "x11-terms/alacritty", "x11-terms/aterm", "x11-terms/cool-retro-term", "x11-terms/gnome-terminal", "x11-terms/gnome-terminal", "x11-terms/guake", "x11-terms/guake", "x11-terms/kitty-terminfo", "x11-terms/kitty-terminfo", "x11-terms/kitty-terminfo", "x11-terms/kitty-terminfo", "x11-terms/kitty-terminfo", "x11-terms/kitty-terminfo", "x11-terms/kitty", "x11-terms/kitty", "x11-terms/kitty", "x11-terms/kitty", "x11-terms/kitty", "x11-terms/kitty", "x11-terms/kterm", "x11-terms/lilyterm", "x11-terms/lilyterm", "x11-terms/mate-terminal", "x11-terms/mlterm", "x11-terms/mrxvt", "x11-terms/qterminal", "x11-terms/qterminal", "x11-terms/qterminal", "x11-terms/root-tail", "x11-terms/roxterm", "x11-terms/rxvt-unicode", "x11-terms/rxvt-unicode", "x11-terms/rxvt-unicode", "x11-terms/sakura", "x11-terms/st", "x11-terms/st", "x11-terms/terminator", "x11-terms/terminology", "x11-terms/tilda", "x11-terms/xfce4-terminal", "x11-terms/xfce4-terminal", "x11-terms/xterm", "x11-terms/xterm", "x11-terms/xterm", "x11-terms/yeahconsole", "x11-terms/zutty", "x11-terms/zutty", "x11-themes/QGnomePlatform", "x11-themes/adapta-gtk-theme", "x11-themes/adwaita-icon-theme", "x11-themes/adwaita-icon-theme", "x11-themes/adwaita-qt", "x11-themes/adwaita-qt", "x11-themes/arc-icon-theme", "x11-themes/arc-theme", "x11-themes/blueglass-xcursors", "x11-themes/chameleon-xcursors", "x11-themes/claws-mail-themes", "x11-themes/clearlooks-phenix", "x11-themes/comix-xcursors", "x11-themes/commonbox-styles-extra", "x11-themes/commonbox-styles", "x11-themes/constantine-backgrounds", "x11-themes/e-flat-theme", "x11-themes/e-gtk-theme", "x11-themes/e16-themes", "x11-themes/echo-icon-theme", "x11-themes/elementary-xfce-icon-theme", "x11-themes/elementary-xfce-icon-theme", "x11-themes/experience", "x11-themes/faenza-icon-theme", "x11-themes/fedora-backgrounds", "x11-themes/fedora-backgrounds", "x11-themes/fedora-backgrounds", "x11-themes/fedora-backgrounds", "x11-themes/fedora-backgrounds", "x11-themes/fedora-backgrounds", "x11-themes/fedora-backgrounds", "x11-themes/fedora-backgrounds", "x11-themes/flatsvg", "x11-themes/fluxbox-styles-fluxmod", "x11-themes/fvwm-crystal", "x11-themes/fvwm-themes-extra", "x11-themes/fvwm-themes", "x11-themes/fvwm_icons", "x11-themes/fvwm_sounds", "x11-themes/gargantuan-icon-theme", "x11-themes/gartoon-redux", "x11-themes/gartoon", "x11-themes/geany-themes", "x11-themes/gentoo-artwork-livecd", "x11-themes/gentoo-artwork-livecd", "x11-themes/gentoo-artwork", "x11-themes/gentoo-xcursors", "x11-themes/gentoo10-backgrounds", "x11-themes/geramik", "x11-themes/gkrellm-themes", "x11-themes/gnome-backgrounds", "x11-themes/gnome-colors-common", "x11-themes/gnome-colors-themes", "x11-themes/gnome-icon-theme-extras", "x11-themes/gnome-icon-theme-symbolic", "x11-themes/gnome-themes-standard", "x11-themes/gnustep-neos-theme", "x11-themes/gnustep-silver-theme", "x11-themes/goddard-backgrounds", "x11-themes/golden-xcursors", "x11-themes/greybird", "x11-themes/gtk-chtheme", "x11-themes/gtk-engines-adwaita", "x11-themes/gtk-engines-candido", "x11-themes/gtk-engines-experience", "x11-themes/gtk-engines-flat", "x11-themes/gtk-engines-murrine", "x11-themes/gtk-engines-nodoka", "x11-themes/gtk-engines-qtpixmap", "x11-themes/gtk-engines-quartz", "x11-themes/gtk-engines-rezlooks", "x11-themes/gtk-engines-ubuntulooks", "x11-themes/gtk-engines-unico", "x11-themes/gtk-engines", "x11-themes/gtk-theme-switch", "x11-themes/haematite-xcursors", "x11-themes/hicolor-icon-theme", "x11-themes/human-icon-theme", "x11-themes/iceicons", "x11-themes/icewm-extra-themes", "x11-themes/icewm-extra-themes", "x11-themes/kfaenza", "x11-themes/kvantum", "x11-themes/larry-backgrounds", "x11-themes/laughlin-backgrounds", "x11-themes/leonidas-backgrounds", "x11-themes/light-themes", "x11-themes/lovelock-backgrounds", "x11-themes/lxqt-themes", "x11-themes/lxqt-themes", "x11-themes/mate-backgrounds", "x11-themes/mate-backgrounds", "x11-themes/mate-icon-theme-faenza", "x11-themes/mate-icon-theme", "x11-themes/mate-themes-meta", "x11-themes/mate-themes", "x11-themes/mate-themes", "x11-themes/murrine-themes", "x11-themes/neutral-xcursors", "x11-themes/notify-osd-icons", "x11-themes/nou-icon-theme", "x11-themes/numix-gtk-theme", "x11-themes/numix-icon-theme-circle", "x11-themes/numix-icon-theme-circle", "x11-themes/numix-icon-theme-circle", "x11-themes/numix-icon-theme-circle", "x11-themes/numix-icon-theme", "x11-themes/numix-icon-theme", "x11-themes/numix-icon-theme", "x11-themes/nuovo-icon-theme", "x11-themes/nuvox", "x11-themes/obsidian-xcursors", "x11-themes/oxygen-gtk", "x11-themes/oxygen-gtk", "x11-themes/papirus-icon-theme", "x11-themes/papirus-icon-theme", "x11-themes/papirus-icon-theme", "x11-themes/pearlgrey-xcursors", "x11-themes/pidgin-penguins-smileys", "x11-themes/pulse-glass", "x11-themes/qtcurve", "x11-themes/qtcurve", "x11-themes/qtcurve", "x11-themes/redhat-artwork", "x11-themes/sawfish-themes", "x11-themes/shiki-colors", "x11-themes/silver-xcursors", "x11-themes/slim-themes", "x11-themes/smplayer-skins", "x11-themes/smplayer-themes", "x11-themes/solar-backgrounds", "x11-themes/sound-theme-freedesktop", "x11-themes/tactile", "x11-themes/tactile3", "x11-themes/tangerine-icon-theme", "x11-themes/tango-icon-theme-extras", "x11-themes/tango-icon-theme", "x11-themes/ubuntu-wallpapers", "x11-themes/vanilla-dmz-aa-xcursors", "x11-themes/vanilla-dmz-xcursors", "x11-themes/vdr-channel-logos", "x11-themes/vdr-channel-logos", "x11-themes/verne-backgrounds", "x11-themes/vertex-icon-theme", "x11-themes/vertex-theme", "x11-themes/vertex-theme", "x11-themes/vertex-theme", "x11-themes/windowmaker-themes", "x11-themes/wm-icons", "x11-themes/xcursor-themes", "x11-themes/xfce-gant-icon-theme", "x11-themes/xfwm4-themes", "x11-themes/xxv-skins", "x11-themes/yasis-icon-theme", "x11-themes/zuki-themes", "x11-themes/zukini", "x11-themes/zukitwo-shell", "x11-themes/zukitwo", "x11-wm/2bwm", "x11-wm/2bwm", "x11-wm/aewm++", "x11-wm/aewm", "x11-wm/amiwm", "x11-wm/awesome", "x11-wm/awesome", "x11-wm/blackbox", "x11-wm/bspwm", "x11-wm/bspwm", "x11-wm/ctwm", "x11-wm/cwm", "x11-wm/cwm", "x11-wm/cwm", "x11-wm/dwm", "x11-wm/dwm", "x11-wm/e16", "x11-wm/e16", "x11-wm/echinus", "x11-wm/enlightenment", "x11-wm/evilwm", "x11-wm/evilwm", "x11-wm/fluxbox", "x11-wm/fvwm", "x11-wm/goomwwm", "x11-wm/goomwwm", "x11-wm/herbstluftwm", "x11-wm/herbstluftwm", "x11-wm/i3-gaps", "x11-wm/i3", "x11-wm/i3", "x11-wm/i3", "x11-wm/i3", "x11-wm/i3", "x11-wm/i3", "x11-wm/icewm", "x11-wm/icewm", "x11-wm/icewm", "x11-wm/jwm", "x11-wm/larswm", "x11-wm/lumina", "x11-wm/lumina", "x11-wm/lwm", "x11-wm/marco", "x11-wm/marco", "x11-wm/matwm2", "x11-wm/metacity", "x11-wm/metacity", "x11-wm/muffin", "x11-wm/muffin", "x11-wm/musca", "x11-wm/mutter", "x11-wm/mutter", "x11-wm/mutter", "x11-wm/notion", "x11-wm/notion", "x11-wm/openbox", "x11-wm/openbox", "x11-wm/oroborus", "x11-wm/page", "x11-wm/page", "x11-wm/pekwm", "x11-wm/pekwm", "x11-wm/qtile", "x11-wm/qtile", "x11-wm/ratpoison", "x11-wm/ratpoison", "x11-wm/sawfish", "x11-wm/selectwm", "x11-wm/sithwm", "x11-wm/spectrwm", "x11-wm/stumpwm-contrib", "x11-wm/stumpwm-contrib", "x11-wm/stumpwm", "x11-wm/subtle", "x11-wm/subtle", "x11-wm/treewm", "x11-wm/twm", "x11-wm/vtwm", "x11-wm/windowlab", "x11-wm/windowmaker", "x11-wm/windowmaker", "x11-wm/wm2", "x11-wm/wmfs", "x11-wm/wmfs", "x11-wm/wmii", "x11-wm/xmonad-contrib", "x11-wm/xmonad", "x11-wm/xmonad", "x11-wm/xoat", "x11-wm/xpra", "x11-wm/xpra", "xfce-base/exo", "xfce-base/exo", "xfce-base/garcon", "xfce-base/libxfce4ui", "xfce-base/libxfce4ui", "xfce-base/libxfce4util", "xfce-base/libxfce4util", "xfce-base/libxfce4util", "xfce-base/thunar", "xfce-base/thunar", "xfce-base/thunar", "xfce-base/xfce4-appfinder", "xfce-base/xfce4-meta", "xfce-base/xfce4-panel", "xfce-base/xfce4-session", "xfce-base/xfce4-settings", "xfce-base/xfconf", "xfce-base/xfdesktop", "xfce-base/xfwm4", "xfce-extra/thunar-archive-plugin", "xfce-extra/thunar-media-tags-plugin", "xfce-extra/thunar-shares-plugin", "xfce-extra/thunar-vcs-plugin", "xfce-extra/thunar-volman", "xfce-extra/transd", "xfce-extra/tumbler", "xfce-extra/xfce4-alsa-plugin", "xfce-extra/xfce4-battery-plugin", "xfce-extra/xfce4-calculator-plugin", "xfce-extra/xfce4-clipman-plugin", "xfce-extra/xfce4-cpufreq-plugin", "xfce-extra/xfce4-cpugraph-plugin", "xfce-extra/xfce4-datetime-plugin", "xfce-extra/xfce4-dict", "xfce-extra/xfce4-diskperf-plugin", "xfce-extra/xfce4-eyes-plugin", "xfce-extra/xfce4-fsguard-plugin", "xfce-extra/xfce4-genmon-plugin", "xfce-extra/xfce4-hdaps", "xfce-extra/xfce4-indicator-plugin", "xfce-extra/xfce4-kbdleds-plugin", "xfce-extra/xfce4-mailwatch-plugin", "xfce-extra/xfce4-mount-plugin", "xfce-extra/xfce4-mpc-plugin", "xfce-extra/xfce4-netload-plugin", "xfce-extra/xfce4-notes-plugin", "xfce-extra/xfce4-notifyd", "xfce-extra/xfce4-panel-profiles", "xfce-extra/xfce4-panel-profiles", "xfce-extra/xfce4-places-plugin", "xfce-extra/xfce4-power-manager", "xfce-extra/xfce4-pulseaudio-plugin", "xfce-extra/xfce4-screensaver", "xfce-extra/xfce4-screenshooter", "xfce-extra/xfce4-sensors-plugin", "xfce-extra/xfce4-smartbookmark-plugin", "xfce-extra/xfce4-systemload-plugin", "xfce-extra/xfce4-taskmanager", "xfce-extra/xfce4-taskmanager", "xfce-extra/xfce4-time-out-plugin", "xfce-extra/xfce4-timer-plugin", "xfce-extra/xfce4-vala", "xfce-extra/xfce4-verve-plugin", "xfce-extra/xfce4-volumed-pulse", "xfce-extra/xfce4-wavelan-plugin", "xfce-extra/xfce4-weather-plugin", "xfce-extra/xfce4-whiskermenu-plugin", "xfce-extra/xfce4-xkb-plugin", "xfce-extra/xfdashboard"], "Catalog": {"usr": ["portage"], "acct-group": ["abrt", "adm", "aerospike-amc", "airdcppd", "alertmanager", "amanda", "amavis", "amule", "android", "anope", "apache", "apt-cacher-ng", "argus", "arpwatch", "artifactory", "aspnet", "asterisk", "at", "atheme-services", "audio", "automatic", "automx2", "avahi-autoipd", "avahi", "axtls", "backuppc", "bacula", "badvpn", "bareos", "beanstalk", "bedrock", "bind_exporter", "bird", "bitcoin", "bitflu", "bitlbee", "blackbox_exporter", "boinc", "buildbot", "bumblebee", "burp", "burrow_exporter", "cadvisor", "cancd", "carbon", "cdrom", "ceph", "cgit", "chronograf", "cinder", "clair", "clamav", "cmd5checkpw", "cntlm", "cockroach", "collectd", "colord", "consul-template", "consul", "consul_exporter", "coredns", "croc", "cron", "crontab", "cvmfs", "davfs2", "dbmail", "dbskkd", "ddclient", "defang", "dehydrated", "deluge", "dhcp", "dhcpcd", "dialout", "dictd", "dirsrv", "disk", "distcc", "dnrd", "dnscrypt-proxy", "dnsdist", "dnsmasq", "dnsmasq_exporter", "docker", "docker_auth", "dovecot", "dovenull", "drone", "elasticsearch", "elasticsearch_exporter", "energi3", "epam", "epmd", "err", "etcd", "exabgp", "ez-ipupd", "fax", "fcron", "fdm", "fetchmail", "fhem", "fingerprint", "firebird", "flatpak", "flows", "fluentd", "foldingathome", "fp-multiuser", "freenet", "fritzbox_smarthome_exporter", "frr", "ftp", "ftpproxy", "fvwm-crystal", "gamemode", "gamestat", "gatling", "gauth", "gdm", "geneweb", "geoclue", "gerbera", "git", "github-exporter", "gkrellmd", "glance", "gluster", "gnump3d", "gnupg-pkcs11-scd-proxy", "gnupg-pkcs11", "gopher", "gopherd", "gpib", "gpio", "grafana", "graylog", "greetd", "grok_exporter", "groonga", "gvm", "h2o", "haclient", "haproxy", "havp", "heat", "hsqldb", "http", "i2c", "i2p", "i2pd", "icecast", "icecream", "ices", "icinga", "icingacmd", "icingaweb2", "influxdb", "input", "inspircd", "ipfs", "ipsec", "ipsentinel", "iroffer", "jabber", "jenkins", "kafka", "kapacitor", "karma", "keystone", "kibana", "kismet", "kmem", "knot", "kube-apiserver", "kube-controller-manager", "kube-scheduler", "kvm", "ldap", "libvirt", "lightdm", "lighttpd", "litecoin", "lldpd", "locate", "logcheck", "logstash", "logsurfer", "lp", "lpadmin", "lxc", "lxd", "mail", "man", "maradns", "memcached", "memcached_exporter", "messagebus", "mgraph", "milter-regex", "minbif", "minecraft", "minetest", "minidlna", "minio", "mogile", "mongodb", "mongodb_exporter", "monitorix", "monkeyd", "monkeysphere", "mosquitto", "motion", "msmtpd", "munge", "munin", "murmur", "mysql", "mysqld_exporter", "mythtv", "nagios", "named", "netbox", "netdata", "netdev", "netperf", "neutron", "nginx-vts-exporter", "nginx", "ngircd", "ngrep", "nm-openconnect", "nm-openvpn", "nobody", "node_exporter", "nofiles", "notary", "nova", "nsd", "nslcd", "ntopng", "ntp", "nullmail", "nut", "nzbget", "oidentd", "openct", "opendkim", "opendmarc", "opendnssec", "openntpd", "openrct2", "openvpn", "openvpn_exporter", "opm", "oprofile", "oragono", "ossec", "p2p", "partimag", "pcap", "pcscd", "pdns", "pdnsd", "pgagent", "pkcs11", "placement", "plex", "plugdev", "polkitd", "polw", "popa3d", "portage", "postdrop", "postfix", "postfix_exporter", "postfwd", "postgres", "postgres_exporter", "postgrey", "privoxy", "prometheus", "psybnc", "pulse-access", "pulse", "puppet", "puppetdb", "pushgateway", "pvpgn", "qemu", "qmail", "quagga", "quassel", "rabbitmq", "rabbitmq_exporter", "radicale", "radius", "radvd", "rbldns", "rbot", "realtime", "redis", "redis_exporter", "redmine", "redsocks", "reg", "registry", "render", "resin", "roccat", "root", "ros", "rplayd", "rslsync", "rspamd", "rstudio-server", "rt", "rtkit", "rundeck", "rwhoisd", "sabnzbd", "sagan", "samplicator", "sancp", "sanlock", "sauerbraten", "scanlogd", "scanner", "scponly", "scsi", "serf", "sguil", "sgx", "shellinaboxd", "sigh", "simplevirt", "sispmctl", "sks", "slurm", "smmsp", "smokeping", "sms", "smtpd", "smtpq", "snapserver", "sniproxy", "snmp_exporter", "snort", "sobby", "sobexsrv", "sockd", "sogo", "spamd", "spectrum", "spi", "spire", "spread", "sqlgrey", "squid", "sshd", "ssmtp", "sstpc", "stapdev", "stapsys", "stapusr", "stdiscosrv", "steamcmd", "stg", "strelaysrv", "stubby", "stunnel", "subsonic", "supervisor", "suricata", "svnusers", "svxlink", "swift", "syncthing", "systemd-coredump", "systemd-journal-remote", "systemd-journal", "systemd-network", "systemd-oom", "systemd-resolve", "systemd-timesync", "tape", "taskd", "teamspeak", "telegraf", "tenshi", "thttpd", "tinyproxy", "tomcat", "tor", "tox", "tpm", "transmission", "trickster", "trojan", "tsm", "tss", "ttrssd", "tty", "turnserver", "ubridge", "ulogd", "ultimaker", "unbound-telemetry", "unbound", "unifi-video", "unifi", "unrealircd", "upmpdcli", "uptimed", "usb", "users", "ushare", "utmp", "uucp", "uwsgi_exporter", "vacation", "varnish", "vault", "vault_exporter", "vboxguest", "vboxsf", "vboxusers", "vdr", "vdradmin", "video", "vlock", "vnstat", "vpopmail", "wesnoth", "wheel", "wwwoffle", "x2goprint", "x2gouser", "xpra", "xrootd", "xwax", "zabbix", "zeppelin", "zetcd", "ziproxy", "znc", "zookeeper"], "acct-user": ["abrt", "aerospike-amc", "airdcppd", "alertmanager", "alias", "amanda", "amavis", "amule", "anope", "apache", "apt-cacher-ng", "argus", "arpwatch", "artifactory", "aspnet", "asterisk", "at", "atheme-services", "automatic", "automx2", "avahi-autoipd", "avahi", "axtls", "backuppc", "bacula", "badvpn", "bareos", "beanstalk", "bedrock", "bind_exporter", "bird", "bitcoin", "bitflu", "bitlbee", "blackbox_exporter", "boinc", "buildbot", "burp", "burrow_exporter", "cadvisor", "cancd", "carbon", "ceph", "cgit", "chronograf", "cinder", "clair", "clamav", "cmd5checkpw", "cntlm", "cockroach", "collectd", "colord", "consul-template", "consul", "consul_exporter", "coredns", "croc", "cron", "cvmfs", "cyrus", "darkstat", "davfs2", "dbmail", "dbskkd", "ddclient", "defang", "dehydrated", "deluge", "dhcp", "dhcpcd", "dictd", "dirsrv", "distcc", "dnrd", "dnscache", "dnscrypt-proxy", "dnsdist", "dnslog", "dnsmasq", "dnsmasq_exporter", "docker_auth", "dovecot", "dovenull", "drone", "duende", "elasticsearch", "elasticsearch_exporter", "energi3", "epmd", "err", "etcd", "exabgp", "ez-ipupd", "fax", "fdm", "fetchmail", "fhem", "flatpak", "flows", "fluentd", "fnord", "fnordlog", "foldingathome", "fp-multiuser", "freenet", "fritzbox_smarthome_exporter", "frr", "ftp", "ftpproxy", "gatling", "gauth", "gdm", "geneweb", "geoclue", "gerbera", "git", "github-exporter", "gkrellmd", "glance", "gluster", "gnump3d", "gnupg-pkcs11-scd-proxy", "gopher", "gopherd", "gpsd", "grafana", "graylog", "greetd", "grok_exporter", "groonga", "gvm", "h2o", "hacluster", "haproxy", "havp", "heat", "hsqldb", "http", "i2p", "i2pd", "icecast", "icecream", "ices", "icinga", "influxdb", "inspircd", "ipfs", "ippl", "ipsec", "ipsentinel", "iroffer", "jabber", "jenkins", "kafka", "kapacitor", "keystone", "kibana", "kismet", "knot", "kube-apiserver", "kube-controller-manager", "kube-scheduler", "ldap", "lighttpd", "litecoin", "lldpd", "logcheck", "logstash", "logsurfer", "lxc", "mail", "man", "maradns", "memcached", "memcached_exporter", "messagebus", "mgraph", "milter-regex", "minbif", "minecraft", "minetest", "minidlna", "minio", "mogile", "mongodb", "mongodb_exporter", "monitorix", "monkeyd", "monkeysphere", "mosquitto", "motion", "mpd", "msmtpd", "munge", "munin-async", "munin", "murmur", "mysql", "mysqld_exporter", "mythtv", "nagios", "named", "netbox", "netdata", "netperf", "neutron", "nginx-vts-exporter", "ngircd", "ngrep", "nm-openconnect", "nm-openvpn", "nobody", "node_exporter", "notary", "nova", "nsd", "nslcd", "ntopng", "ntp", "nullmail", "nut", "nvpd", "nzbget", "oidentd", "openctd", "opendkim", "opendmarc", "opendnssec", "openntpd", "openrct2", "openvpn", "openvpn_exporter", "opm", "oprofile", "oragono", "ossec", "ossecm", "ossecr", "p2p", "pcap", "pcscd", "pdns", "pdnsd", "pgbouncer", "placement", "plex", "polkitd", "polw", "popa3d", "portage", "postfix", "postfix_exporter", "postfwd", "postgres", "postgres_exporter", "postgrey", "postmaster", "privoxy", "prometheus", "psybnc", "pulse", "puppet", "puppetdb", "pushgateway", "pvpgn", "qemu", "qmaild", "qmaill", "qmailp", "qmailq", "qmailr", "qmails", "quagga", "quassel", "rabbitmq", "rabbitmq_exporter", "radicale", "radius", "radvd", "rbldns", "rbot", "redis", "redis_exporter", "redmine", "redsocks", "reg", "registry", "root", "ros", "rplayd", "rslsync", "rspamd", "rstudio-server", "rtkit", "rundeck", "rwhoisd", "sabnzbd", "sagan", "samplicator", "sancp", "saned", "sanlock", "sauerbraten", "scanlogd", "scponly", "sendpage", "serf", "sguil", "shellinaboxd", "sigh", "sks", "slurm", "smmsp", "smokeping", "smsd", "smtpd", "smtpq", "snapclient", "snapserver", "sndiod", "sniproxy", "snmp_exporter", "snort", "sobby", "sobexsrv", "sockd", "sogo", "spamd", "spectrum", "spire", "spread", "sqlgrey", "squid", "sshd", "sstpc", "stdiscosrv", "steamcmd", "stg", "strelaysrv", "stubby", "stunnel", "subsonic", "suricata", "svn", "svxlink", "swift", "syncthing", "systemd-coredump", "systemd-journal-remote", "systemd-network", "systemd-oom", "systemd-resolve", "systemd-timesync", "taskd", "teamspeak", "telegraf", "tenshi", "thttpd", "timidity", "tinydns", "tinyproxy", "tomcat", "tor", "tox", "tpm", "transmission", "trojan", "tss", "ttrssd", "turnserver", "tvheadend", "ulogd", "ultimaker", "unbound-telemetry", "unbound", "unifi-video", "unifi", "unrealircd", "upmpdcli", "uptimed", "usbmux", "ushare", "uwsgi_exporter", "vacation", "varnish", "vault", "vault_exporter", "vboxguest", "vdradmin", "vnstat", "vpopmail", "wesnoth", "wwwoffle", "x2goprint", "x2gouser", "xrootd", "zabbix", "zeppelin", "zetcd", "ziproxy", "znc", "zookeeper", "karma", "trickster"], "app-accessibility": ["accerciser", "at-spi2-atk", "at-spi2-core", "brltty", "caribou", "edbrowse", "emacspeak-ss", "emacspeak", "epos", "espeak-ng", "espeak", "espeakup", "flite", "freetts", "julius", "kontrast", "mbrola-voices", "mbrola", "nfbtrans", "orca", "powiedz", "sound-icons", "speech-dispatcher", "speech-tools", "speechd-el", "sphinx2", "yasr"], "app-admin": ["abrt", "aerospike-amc-community", "amazon-ec2-init", "analog", "ananicy", "ansible-base", "ansible-cmdb", "ansible-lint", "ansible-modules-hashivault", "ansible-molecule", "ansible", "apache-tools", "apachetop", "apg", "augeas", "authbind", "aws-elb-tools", "awscli", "bastille", "bitwarden-desktop-bin", "calamares", "cancd", "ccze", "cdist", "checksec", "chroot_safe", "chrootuid", "chrpath", "cli53", "clog", "clsync", "clustershell", "conky", "conserver", "consul-replicate", "consul-template", "consul", "cpulimit", "cronlocker", "cronolog", "cygwin-rebase", "dio", "diradm", "doas", "docker-bench", "doctl", "drush", "ec2-ami-tools", "eclean-kernel", "emacs-updater", "entr", "eselect", "evtxtools", "exo", "fam", "fetchlog", "fifo-cronolog", "filebeat", "filewatcher", "fluentd", "fsvs", "gam-server", "gamin", "genromfs", "gentoo-perl-helpers", "gentoo-rsync-mirror", "git-credential-gopass", "github-backup-utils", "gixy", "gkrellm", "gnome-abrt", "gnome-system-log", "go-updater", "gopass-hibp", "gopass-jsonapi", "gopass-summon-provider", "gopass", "graylog", "gtkdiskfree", "hardinfo", "haskell-updater", "hcloud", "hddtemp", "helm", "ide-smart", "integrit", "keepass", "keepassxc", "killproc", "kpcli", "kube-bench", "kubectx", "lib_users", "lnav", "logcheck", "logmon", "logrotate", "logsentry", "logstalgia", "logstash-bin", "logsurfer+", "longrun", "lsyncd", "makepasswd", "mcelog", "mcollective", "mei-amt-check", "metalog", "mktwpol", "mongo-tools", "monit", "mtail", "multilog-watch", "needrestart", "newsyslog", "ngxtop", "op-cli-bin", "openrc-settingsd", "pass-otp", "pass", "passwordsafe", "paxtest", "perl-cleaner", "petrovich", "pprocm", "prelude-manager", "procinfo-ng", "profile-cleaner", "ps_mem", "psmon", "puppet-agent", "puppet-lint", "puppet", "puppetdb", "puppetserver", "pwcrypt", "pwgen", "pwman3", "pydf", "qpage", "qtpass", "quickswitch", "r10k", "radmind", "ranpwd", "rasdaemon", "rcm", "reportmagic", "restart-services", "rex", "rsyslog", "ryzen_monitor", "ryzen_smu", "sagan-rules", "sagan", "salt", "selint", "serf", "setools", "socklog", "spectre-meltdown-checker", "sshguard", "stow", "su-exec", "sud", "sudo", "superadduser", "supervisor", "swatchdog", "sxid", "sysklogd", "syslog-ng", "syslog-summary", "sysrqd", "sysstat", "system-config-printer", "systemdgenie", "tenshi", "terraform", "testdisk", "tmpreaper", "tmpwatch", "tripwire", "ulogd", "undertaker-scripts", "usbview", "vault", "verynice", "watchfolder", "webalizer", "webapp-config", "whowatch", "xkcdpass", "xstow", "xtail", "yadm", "mongosh-bin"], "app-antivirus": ["clamav", "clamtk", "fangfrisch"], "app-arch": ["advancecomp", "afio", "alien", "arc", "arj", "atool", "bloscpack", "brotli", "bsdsfv", "bzip2", "cabextract", "cksfv", "cpio", "createrepo_c", "deb2targz", "dpkg", "duff", "dump", "engrampa", "fastjar", "file-roller", "funzix", "gcab", "gnome-autoar", "gtk-splitter", "gzip", "hardlink", "innoextract", "lbzip2", "lcab", "lha", "libarchive", "libpar2", "lrzip", "lxqt-archiver", "lz4", "lz5", "lzip", "lziprecover", "lzlib", "lzma", "lzop", "makeself", "mscompress", "mt-st", "ncompress", "p7zip", "par2cmdline", "patool", "pax", "pbzip2", "pdlzip", "pdv", "pet2tgz", "pigz", "pixz", "plzip", "pure-sfv", "pxz", "qpress", "rar", "rpm", "rpm2targz", "rzip", "sharutils", "snappy", "stenc", "stormlib", "stuffit", "tapeutils", "tar", "tardelta", "tarlz", "tarsync", "torrentzip", "unace", "unadf", "unar", "unmakeself", "unp", "unrar", "unrpa", "unshield", "unzip", "upx-bin", "upx", "vimball", "wimlib", "xar", "xarchiver", "xdms", "xz-utils", "zip", "zoo", "zopfli", "zpaq-extras", "zpaq", "zstd"], "app-backup": ["amanda", "attic", "backintime", "backup-manager", "backupninja", "backuppc", "bacula", "bareos", "borgbackup", "borgmatic", "borgweb", "btrbk", "burp", "ccollect", "cdbackup", "cdbkup", "consul-backinator", "cpdup", "dar", "deja-dup", "dirvish", "duplicity", "duply", "flexbackup", "fsarchiver", "hdup", "kfoldersync", "kup", "luckybackup", "mirdir", "mkstage4", "mylvmbackup", "pdumpfs", "rdedup", "rdiff-backup", "rdumpfs", "rdup", "rear", "reoback", "restic", "rsnapshot", "sarab", "simplebackup", "snapper", "spideroak-bin", "synology-cloud-station-backup", "tarsnap", "tsm", "untangle-https-backup", "vzdump"], "app-benchmarks": ["acovea-gtk", "acovea", "bashmark", "bonnie++", "bonnie", "bootchart2", "cpuburn", "dbench", "filebench", "forkbomb", "geekbench", "hey", "httperf", "hyperfine", "i7z", "interbench", "ioping", "iozone", "libc-bench", "nbench", "pipebench", "ramspeed", "siege", "stress-ng", "stress", "sysbench", "tiobench", "wrk"], "app-cdr": ["b5i2iso", "bashburn", "bchunk", "bin2iso", "brasero", "burncdda", "ccd2iso", "cdck", "cddetect", "cdemu-daemon", "cdemu", "cdlabelgen", "cdrdao", "cdrtools", "cdw", "cue2toc", "cuecue", "cuegen", "cuetools", "daa2iso", "disc-cover", "dolphin-plugins-mountiso", "dumpet", "dvd+rw-tools", "dvdisaster", "dvdshrink", "extract-xiso", "gaffitter", "gcdemu", "geteltorito", "graveman", "iat", "isoimagewriter", "isomaster", "kcdemu", "mirage2iso", "mkcdtoc", "mp3burn", "multicd", "nrg2iso", "plextor-tool", "tkdvd", "uif2iso", "xbiso", "xcdroast", "xfburn"], "app-crypt": ["WiRouterKeyRec", "acme-sh", "acme-tiny", "acme", "acr38u", "aescrypt", "aespipe", "age", "argon2", "asedriveiiie-serial", "asedriveiiie-usb", "asekey", "bcwipe", "bsign", "ccid", "ccrypt", "certbot-apache", "certbot-dns-nsone", "certbot-nginx", "certbot", "cfssl", "chntpw", "ckpass", "codecrypt", "codegroup", "coolkey", "crackpkcs12", "debian-archive-keyring", "dehydrated", "dieharder", "easy-rsa", "efitools", "eid-mw", "ekeyd", "elettra", "envchain", "fcrackzip", "gcr", "gentoo-keys", "gifshuffle", "glep63-check", "gnupg-pkcs11-scd", "gnupg", "gorilla", "gpa", "gpg-ringmgr", "gpgme", "gpgstats", "hashalot", "hashcat-utils", "hashcat", "heimdal", "hmaccalc", "ima-evm-utils", "jacksum", "jetring", "jitterentropy-rngd", "jitterentropy", "johntheripper-jumbo", "johntheripper", "kali-archive-keyring", "kbfs", "kencfs-plasma", "keybase", "keylookup", "kstart", "libb2", "libmd", "libnitrokey", "libscrypt", "libsecret", "libu2f-host", "libu2f-server", "loop-aes-losetup", "mcrypt", "md4sum", "md5deep", "md6sum", "mhash", "minisign", "mit-krb5-appl", "mit-krb5", "monkeysphere", "moolticute", "nasty", "nitrocli", "nitrokey-app", "nwipe", "onak", "openpgp-keys-adamspiers", "openpgp-keys-alexbarton", "openpgp-keys-bcl", "openpgp-keys-botan", "openpgp-keys-crypto++", "openpgp-keys-danielveillard", "openpgp-keys-django", "openpgp-keys-gentoo-auth", "openpgp-keys-gentoo-release", "openpgp-keys-jedisct1", "openpgp-keys-kernel", "openpgp-keys-libidn", "openpgp-keys-libvirt", "openpgp-keys-linuxcontainers", "openpgp-keys-midipix", "openpgp-keys-miniupnp", "openpgp-keys-mlichvar", "openpgp-keys-nmap", "openpgp-keys-oletange", "openpgp-keys-openzfs", "openpgp-keys-python", "openpgp-keys-rust", "openpgp-keys-tcpdump", "openpgp-keys-teemutoivola", "openpgp-keys-terminator", "openpgp-keys-tor", "openpgp-keys-voikko", "ophcrack-tables", "ophcrack", "osslsigncode", "p11-kit", "paperkey", "pdfcrack", "pesign", "pgpdump", "pinentry", "pius", "pkcrack", "pkcs11-data", "pkcs11-dump", "princeprocessor", "qca", "quickcrypt", "rainbowcrack", "rhash", "rotix", "sbsigntools", "scdrand", "scrypt", "scute", "seahorse-sharing", "seahorse", "shash", "signify", "signing-party", "simple-tpm-pk11", "ssdeep", "ssss", "stan", "stoken", "swtpm", "tc-play", "tpm-emulator", "tpm-tools", "tpm2-abrmd", "tpm2-pkcs11", "tpm2-tools", "tpm2-totp", "tpm2-tss-engine", "tpm2-tss", "trousers", "ubuntu-keyring", "veracrypt", "xca", "xor-analyze", "yubikey-manager-qt", "yubikey-manager", "yubioath-desktop", "zulucrypt"], "app-dicts": ["aspell-af", "aspell-am", "aspell-ar", "aspell-ast", "aspell-az", "aspell-be", "aspell-bg", "aspell-bn", "aspell-br", "aspell-ca", "aspell-cs", "aspell-csb", "aspell-cy", "aspell-da", "aspell-de-alt", "aspell-de", "aspell-el", "aspell-en", "aspell-eo", "aspell-es", "aspell-et", "aspell-fa", "aspell-fi", "aspell-fo", "aspell-fr", "aspell-fy", "aspell-ga", "aspell-gd", "aspell-gl", "aspell-grc", "aspell-gu", "aspell-gv", "aspell-he", "aspell-hi", "aspell-hil", "aspell-hr", "aspell-hsb", "aspell-hu", "aspell-hus", "aspell-hy", "aspell-ia", "aspell-id", "aspell-is", "aspell-it", "aspell-kn", "aspell-ku", "aspell-ky", "aspell-la", "aspell-lt", "aspell-lv", "aspell-mg", "aspell-mi", "aspell-mk", "aspell-ml", "aspell-mn", "aspell-mr", "aspell-ms", "aspell-mt", "aspell-nb", "aspell-nds", "aspell-nl", "aspell-nn", "aspell-no", "aspell-ny", "aspell-or", "aspell-pa", "aspell-pl", "aspell-pt-br", "aspell-pt", "aspell-qu", "aspell-ro", "aspell-ru", "aspell-rw", "aspell-sc", "aspell-sk", "aspell-sl", "aspell-sr", "aspell-sv", "aspell-sw", "aspell-ta", "aspell-te", "aspell-tet", "aspell-tk", "aspell-tl", "aspell-tn", "aspell-tr", "aspell-uk", "aspell-uz", "aspell-vi", "aspell-wa", "aspell-yi", "aspell-zu", "bookview", "dictd-vera", "dictd-wn", "dikt", "eblook", "edictionary", "freedict-deu-eng", "freedict-eng-fra", "freedict-eng-ita", "freedict-eng-swe", "freedict-fra-eng", "freedict-ita-eng", "gnome-dictionary", "gwaei", "ipadic", "kasumi", "libydpdict", "mecab-ipadic", "mecab-naist-jdic", "mecab-unidic", "migemo-dict", "myspell-af", "myspell-bg", "myspell-ca", "myspell-cs", "myspell-cy", "myspell-da", "myspell-de", "myspell-de_1901", "myspell-el", "myspell-en", "myspell-eo", "myspell-es", "myspell-et", "myspell-fo", "myspell-fr", "myspell-ga", "myspell-gl", "myspell-he", "myspell-hr", "myspell-hu", "myspell-ia", "myspell-id", "myspell-is", "myspell-it", "myspell-kk", "myspell-km", "myspell-ku", "myspell-lt", "myspell-lv", "myspell-mi", "myspell-mk", "myspell-ms", "myspell-nb", "myspell-nl", "myspell-nn", "myspell-pl", "myspell-pt-br", "myspell-pt", "myspell-ro", "myspell-ru", "myspell-sk", "myspell-sl", "myspell-sq", "myspell-sv", "myspell-sw", "myspell-tn", "myspell-tr", "myspell-uk", "myspell-zu", "prime-dict", "stardict-cdict-en-zh-big5", "stardict-cdict-en-zh-gb", "stardict-cedict-zh-en-big5", "stardict-cedict-zh-en-gb", "stardict-dictd-devils", "stardict-freedict-eng-deu", "stardict-freedict-eng-fra", "stardict-freedict-eng-ita", "stardict-freedict-eng-lat", "stardict-freedict-eng-rus", "stardict-freedict-eng-spa", "stardict-freedict-eng-swe", "stardict-freedict-eng-tur", "stardict-freedict-tur-deu", "stardict-freedict-tur-eng", "stardict-jmdict-en-ja", "stardict-jmdict-ja-en", "stardict-langdao-en-zh-gb", "stardict-langdao-zh-en-gb", "stardict-mova-smiley", "stardict-oxford-en-zh-gb", "stardict-quick-eng-jpn", "stardict-quick-jpn-eng", "stardict-quick-ru-en", "stardict-xdict-en-zh-big5", "stardict-xdict-en-zh-gb", "stardict-xdict-zh-en-big5", "stardict-xdict-zh-en-gb", "sword-2BabDict", "sword-AB", "sword-ABP", "sword-ABPGRK", "sword-ABS_Essay_GoodSam_SWB", "sword-ACV", "sword-AKJV", "sword-ASV", "sword-Abbott", "sword-AbbottSmith", "sword-AbbottSmithStrongs", "sword-Afr1953", "sword-Alb", "sword-Aleppo", "sword-AmTract", "sword-Anderson", "sword-Antoniades", "sword-AraNAV", "sword-AraSVD", "sword-ArmEastern", "sword-ArmWestern", "sword-Azeri", "sword-BBE", "sword-BDBGlosses_Strongs", "sword-BWE", "sword-BaptistConfession1689", "sword-Barnes", "sword-BasHautin", "sword-BeaMRK", "sword-Bela", "sword-BlaMat", "sword-BretonNT", "sword-BulVeren", "sword-BurCBCM", "sword-BurJudson", "sword-Burkitt", "sword-Byz", "sword-CBC", "sword-CPDV", "sword-CSlElizabeth", "sword-Calo", "sword-Catena", "sword-Cawdrey", "sword-Chamorro", "sword-Che1860", "sword-ChiNCVs", "sword-ChiNCVt", "sword-ChiSB", "sword-ChiUn", "sword-ChiUnL", "sword-ChiUns", "sword-Clarke", "sword-Common", "sword-Concord", "sword-CopNT", "sword-CopSahBible2", "sword-CopSahHorner", "sword-CopSahidicMSS", "sword-CopSahidica", "sword-CroSaric", "sword-CzeB21", "sword-CzeBKR", "sword-CzeCEP", "sword-CzeCSP", "sword-DBD", "sword-DRC", "sword-DTN", "sword-DaNT1819", "sword-DaOT1871NT1907", "sword-DaOT1931NT1907", "sword-Daily", "sword-Darby", "sword-Dari", "sword-DarkNightOfTheSoul", "sword-Diaglott", "sword-Dodson", "sword-DutKant", "sword-DutKingComm", "sword-DutSVV", "sword-DutSVVA", "sword-EMBReality", "sword-EMTV", "sword-Easton", "sword-Elzevir", "sword-Esperanto", "sword-Est", "sword-Etheridge", "sword-Eusebian_num", "sword-Eusebian_vs", "sword-FVDPVietAnh", "sword-Family", "sword-FarHezareNoh", "sword-FarOPV", "sword-FarTPV", "sword-FinBiblia", "sword-FinPR", "sword-FinPR92", "sword-FinRK", "sword-FinSTLK2017", "sword-Finney", "sword-FreBBB", "sword-FreBDM1707", "sword-FreBDM1744", "sword-FreBailly", "sword-FreCJE", "sword-FreCrampon", "sword-FreDAW", "sword-FreGBM", "sword-FreGeneve1669", "sword-FreJND", "sword-FreKhan", "sword-FreLSN1872", "sword-FreLXX", "sword-FreOltramare1874", "sword-FrePGR", "sword-FrePilgrim", "sword-FreSegond1910", "sword-FreStapfer1889", "sword-FreSynodale1921", "sword-Geez", "sword-Geneva", "sword-Geneva1599", "sword-GerAlbrecht", "sword-GerAugustinus", "sword-GerBoLut", "sword-GerElb1871", "sword-GerElb1905", "sword-GerGruenewald", "sword-GerHfa2002", "sword-GerHfaLex2002", "sword-GerKingComm", "sword-GerLeoNA28", "sword-GerLeoRP18", "sword-GerLut1545", "sword-GerLutherpredigten", "sword-GerMenge", "sword-GerNeUe", "sword-GerOffBiSt", "sword-GerReinhardt", "sword-GerSch", "sword-GerTafel", "sword-GerTextbibel", "sword-GerZurcher", "sword-Godbey", "sword-GodsWord", "sword-GreVamvas", "sword-GreekHebrew", "sword-Haitian", "sword-HebDelitzsch", "sword-HebModern", "sword-HebrewGreek", "sword-Heretics", "sword-HinERV", "sword-Hitchcock", "sword-HunIMIT", "sword-HunKNB", "sword-HunKar", "sword-HunUj", "sword-ISBE", "sword-ISV", "sword-Imitation", "sword-Institutes", "sword-IriODomhnuill", "sword-ItDizGreco", "sword-ItNomiBibbia", "sword-ItaDio", "sword-ItaRive", "sword-JCRHoliness", "sword-JEAffections", "sword-JESermons", "sword-JFB", "sword-JOChrist", "sword-JOCommGod", "sword-JOGlory", "sword-JOMortSin", "sword-JPS", "sword-JST", "sword-JapBungo", "sword-JapDenmo", "sword-JapKougo", "sword-JapMeiji", "sword-JapRaguet", "sword-Josephus", "sword-Jubilee2000", "sword-KD", "sword-KJV", "sword-KJVA", "sword-KJVPCE", "sword-KLV", "sword-KLVen_iklingon", "sword-KLViklingon_en", "sword-Kapingamarangi", "sword-Kaz", "sword-Kekchi", "sword-KhmerNT", "sword-KingComm", "sword-KorHKJV", "sword-KorRV", "sword-KtuVb", "sword-LEB", "sword-LITV", "sword-LO", "sword-LXX", "sword-Latvian", "sword-LawGospel", "sword-Leeser", "sword-Lightfoot", "sword-LinVB", "sword-LtKBB", "sword-Luther", "sword-LvGluck8", "sword-MAK", "sword-MHC", "sword-MHCC", "sword-MKJV", "sword-MLStrong", "sword-Mal1910", "sword-ManxGaelic", "sword-Maori", "sword-MapM", "sword-Mg1865", "sword-MollColossians", "sword-MonKJV", "sword-Montgomery", "sword-MorphGNT", "sword-Murdock", "sword-NETfree", "sword-NETnotesfree", "sword-NETtext", "sword-NHEB", "sword-NHEBJE", "sword-NHEBME", "sword-Nave", "sword-Ndebele", "sword-Nestle1904", "sword-NlCanisius1939", "sword-NorBroed", "sword-NorSMB", "sword-Norsk", "sword-NorthernAzeri", "sword-Noyes", "sword-OEB", "sword-OEBcth", "sword-OSHB", "sword-OSHM", "sword-OrthJBC", "sword-Orthodoxy", "sword-OxfordTR", "sword-PNT", "sword-Packard", "sword-Passion", "sword-Personal", "sword-Peshitta", "sword-Phaistos", "sword-Pilgrim", "sword-PohnOld", "sword-Pohnpeian", "sword-PolGdanska", "sword-PolUGdanska", "sword-PorAR", "sword-PorAlmeida1911", "sword-PorBLivre", "sword-PorBLivreTR", "sword-PorCap", "sword-PorIBP", "sword-PotLykins", "sword-Practice", "sword-QuotingPassages", "sword-RKJNT", "sword-RNKJV", "sword-RWP", "sword-RWebster", "sword-RecVer", "sword-Rieger", "sword-Robinson", "sword-RomCor", "sword-Rotherham", "sword-RusCARS", "sword-RusCARSA", "sword-RusCARSADICT", "sword-RusCARSDict", "sword-RusCARST", "sword-RusCARSTDICT", "sword-RusMakarij", "sword-RusSynodal", "sword-RusSynodalLIO", "sword-RusVZh", "sword-SAOA", "sword-SBLGNT", "sword-SBLGNTApp", "sword-SME", "sword-SP", "sword-SPDSS", "sword-SPE", "sword-SPMT", "sword-SPVar", "sword-SahidicBible", "sword-Scofield", "sword-ScotsGaelic", "sword-Sentiment", "sword-Shona", "sword-SloKJV", "sword-SloOjacano", "sword-SloStritar", "sword-Smith", "sword-SomKQA", "sword-Sorani", "sword-SpaPlatense", "sword-SpaRV", "sword-SpaRV1865", "sword-SpaRV1909", "sword-SpaRVG", "sword-SpaTDP", "sword-SpaVNT", "sword-Spurious", "sword-SrKDEkavski", "sword-SrKDIjekav", "sword-StrongsGreek", "sword-StrongsHebrew", "sword-Swahili", "sword-Swe1917", "sword-Swe1917Of", "sword-SweFolk1998", "sword-SweKarlXII", "sword-SweKarlXII1873", "sword-TCR", "sword-TDavid", "sword-TFG", "sword-TNT", "sword-TR", "sword-TSK", "sword-TagAngBiblia", "sword-Tagalog", "sword-Tausug", "sword-ThaiKJV", "sword-Tisch", "sword-Torrey", "sword-TurHADI", "sword-TurNTB", "sword-Twenty", "sword-Tyndale", "sword-UKJV", "sword-UkrKulish", "sword-Ukrainian", "sword-Uma", "sword-UrduGeo", "sword-UrduGeoDeva", "sword-UrduGeoRoman", "sword-UyCyr", "sword-VarApp", "sword-VieRobinson", "sword-VieStrongsGreek", "sword-Viet", "sword-VietLCCMN", "sword-VietLCCMNCT", "sword-VietNVB", "sword-VulgClementine", "sword-VulgConte", "sword-VulgGlossa", "sword-VulgHetzenauer", "sword-VulgSistine", "sword-Vulgate", "sword-Vulgate_HebPs", "sword-WHNU", "sword-WLC", "sword-Webster", "sword-Webster1806", "sword-Webster1913", "sword-WelBeiblNet", "sword-Wesley", "sword-Westminster", "sword-Westminster21", "sword-Weymouth", "sword-Worsley", "sword-Wulfila", "sword-Wycliffe", "sword-YLT", "sword-ZhEnglish", "sword-ZhHanzi", "sword-ZhPinyin", "sword-alzat", "sword-br_en", "sword-en_eu", "sword-f35", "sword-la_en", "sword-sml_BL_2008", "sword-vlsJoNT", "verbiste", "wnn-ldic", "wordnet", "ydpdict"], "app-doc": ["NaturalDocs", "abs-guide", "autobook", "blas-docs", "cantera-docs", "casting-spels-emacs", "cppman", "csound-manual", "devmanual", "diveintopython", "doxygen", "e16-docs", "eclass-manpages", "elisp-manual", "geant-docs", "gimp-help", "gnucash-docs", "halibut", "jargon", "kicad-doc", "lapack-docs", "linkers-and-loaders", "linux-device-drivers", "linux-kernel-in-a-nutshell", "linuxfromscratch", "mathjax-docs", "motif-reference-manual", "php-docs", "phrack-all", "phrack", "pms-bin", "pms", "psmark", "selfhtml", "selflinux", "single-unix-specification", "tldp-howto", "vilearn", "xmltoman", "zeal", "zsh-lovers"], "app-editors": ["aee", "bluefish", "bvi", "curses-hexedit", "dav", "dhex", "diakonos", "e3", "ee", "elvis", "emacs", "emact", "ersatz-emacs", "fe", "featherpad", "focuswriter", "fte", "gedit-plugins", "gedit", "ghex", "ghostwriter", "gnome-latex", "gummi", "gvim", "hexcurse", "hexedit", "hteditor", "jasspa-microemacs", "jed", "jedit", "joe", "jove", "juffed", "jupp", "kakoune", "kile", "le", "leafpad", "levee", "lpe", "mg", "micro", "moe", "mousepad", "nano", "ne", "nedit", "neovim", "ng", "notepadqq", "okteta", "padre", "pluma", "pyvim", "qemacs", "qhexedit2", "qxmledit", "retext", "sandy", "scite", "shed", "sublime-text", "tea", "teco", "ted", "texworks", "uemacs-pk", "vile", "vim-core", "vim", "vis", "vscode", "vscodium", "wily", "wxhexeditor", "xemacs", "xmlcopyeditor", "xvile", "yudit", "zile"], "app-emacs": ["actionscript-mode", "adaptive-wrap", "analog", "apache-mode", "apel", "async", "atomic-chrome", "auctex", "auto-complete", "autoconf-mode", "basic-toolkit", "bbdb", "binclock", "bison-mode", "blogmax", "bm", "bongo", "boxquote", "browse-kill-ring", "bubblet", "buffer-extension", "calfw", "chess", "circe", "cldoc", "color-browser", "color-moccur", "color-theme", "company-mode", "crontab-mode", "crypt++", "csharp-mode", "css-mode", "css-sort-buffer", "csv-mode", "cycle-buffer", "d-mode", "dash", "ddskk", "desktop+", "develock", "df-mode", "dictionary", "dircolors", "dired-sort-menu", "distel", "doctest-mode", "doxymacs", "dropdown-list", "dts-mode", "ebuild-mode", "ebuild-run-mode", "ecb", "edb", "edit-list", "edit-server", "editorconfig-emacs", "elscreen", "emacs-common", "emacs-daemon", "emacs-jabber", "emacs-w3m", "emacs-wget", "emhacks", "emms", "erobot", "eselect-mode", "ess", "evil", "expand-region", "f", "fff", "filladapt", "flashcard", "flim", "folding", "ghub", "gnuplot-mode", "gnuserv", "go-mode", "google-c-style", "graphql", "graphviz-dot-mode", "h4x0r", "haskell-mode", "helm-system-packages", "helm", "hexrgb", "highline", "howm", "htmlize", "httpd", "icicles", "igrep", "inform-mode", "initsplit", "jam-mode", "jasmin", "jde", "keywiz", "ledger-mode", "libegit2", "lookup", "lua-mode", "lyskom-elisp-client", "magit-popup", "magit", "mailcrypt", "markdown-mode", "matlab", "mediawiki", "meson-mode", "mew", "mic-paren", "mldonkey", "mmm-mode", "moccur-edit", "mpg123-el", "mu-cite", "multi-term", "multiple-cursors", "muse", "nagios-mode", "navi2ch", "nxml-docbook5-schemas", "nxml-gentoo-schemas", "nxml-libvirt-schemas", "nxml-svg-schemas", "ocaml-mode", "org-mode", "outline-magic", "paredit", "pariemacs", "php-mode", "planner", "po-mode", "popup", "popwin", "pov-mode", "proofgeneral", "protbuf", "psgml", "puppet-mode", "pymacs", "python-mode", "quack", "quilt-el", "qwerty", "redo+", "regress", "remember", "revive", "rfcview", "riece", "rnc-mode", "rpm-spec-mode", "ruby-mode", "rudel", "rust-mode", "s", "scala-mode", "scheme-complete", "scim-bridge-el", "scss-mode", "semi", "session", "setnu", "slime", "sml-mode", "sokoban", "ssh", "stripes", "sumibi", "teco", "template", "tempo-snippets", "thinks", "transient", "treepy", "tuareg-mode", "twittering-mode", "typing", "uboat", "undo-tree", "uptimes", "vhdl-mode", "visual-basic-mode", "vm", "volume", "vterm", "w3mnav", "wanderlust", "websocket", "wgrep", "whine", "wikipedia-mode", "windows", "with-editor", "xclip", "xrdb-mode", "xslide", "yaml-mode", "yasnippet-snippets", "yasnippet", "yatex", "zenburn", "zenirc"], "app-emulation": ["aqemu", "aranym", "bochs", "buildah", "cadvisor", "cloud-init", "coldfire", "conmon", "containerd", "containers-storage", "cri-o", "cri-tools", "crossover-bin", "crun", "dinero", "diskimage-builder", "distrobuilder", "dlx", "docker-bench-security", "docker-cli", "docker-compose", "docker-credential-helpers", "docker-gc", "docker-machine-kvm", "docker-machine", "docker-proxy", "docker-registry", "docker-swarm", "docker", "dosemu", "dynamips", "edumips64", "faudio", "firecracker-bin", "firecracker", "flannel", "free42", "fs-uae-launcher", "fs-uae", "fuse-utils", "fuse", "gallium-nine-standalone", "ganeti-os-noop", "genymotion-bin", "glean", "go-secbench", "grub-xen-host", "gxemul", "hercules", "hyperd", "img", "k3d", "kompose", "libcacard", "libdsk", "libguestfs-appliance", "libguestfs", "libspectrum", "libvirt-glib", "libvirt-snmp", "libvirt", "lxc-templates", "lxc", "lxd", "nemu", "nerdctl", "open-vm-tools", "pcem", "phpvirtualbox", "podman", "protontricks", "punes", "q4wine", "qemu-guest-agent", "qemu-init-scripts", "qemu-riscv64-bin", "qemu", "reg", "runc", "runv", "s6-overlay", "sen", "simh", "simplevirt", "ski", "skopeo", "slirp4netns", "snapd", "softgun", "spectemu", "spice-protocol", "spice-vdagent", "spice", "spim", "uade", "umoci", "vagrant", "vendor-reset", "vice", "virt-manager", "virt-viewer", "virt-what", "virtio-win", "virtualbox-additions", "virtualbox-extpack-oracle", "virtualbox-guest-additions", "virtualbox-modules", "virtualbox", "vkd3d", "wine-desktop-common", "wine-gecko", "wine-mono", "wine-staging", "wine-vanilla", "winetricks", "x48", "xcpc", "xe-guest-utilities", "xen-tools", "xen", "xtrs"], "app-eselect": ["eselect-audicle", "eselect-awk", "eselect-blas", "eselect-cblas", "eselect-cdparanoia", "eselect-chuck", "eselect-ctags", "eselect-emacs", "eselect-fontconfig", "eselect-gnome-shell-extensions", "eselect-gradle", "eselect-iptables", "eselect-java", "eselect-lapack", "eselect-lib-bin-symlink", "eselect-lua", "eselect-luajit", "eselect-miniaudicle", "eselect-mpg123", "eselect-notify-send", "eselect-oodict", "eselect-opencascade", "eselect-package-manager", "eselect-php", "eselect-pinentry", "eselect-postgresql", "eselect-python", "eselect-rails", "eselect-repository", "eselect-ruby", "eselect-rust", "eselect-scala", "eselect-sh", "eselect-sndpeek", "eselect-timezone", "eselect-timidity", "eselect-unison", "eselect-vdr", "eselect-vi", "eselect-wine", "eselect-wxwidgets"], "app-forensics": ["afflib", "afl", "aflplusplus", "aide", "air", "chkrootkit", "cmospwd", "dfxml", "examiner", "foremost", "galleta", "honggfuzz", "libewf", "lynis", "mac-robber", "magicrescue", "memdump", "ovaldi", "pasco", "radamsa", "rifiuti", "rkhunter", "scalpel", "sleuthkit", "unhide", "yasat", "zzuf"], "app-i18n": ["anthy", "bidiv", "cstools", "dbskkd-cdb", "enca", "fbterm", "fcitx-anthy", "fcitx-chewing", "fcitx-cloudpinyin", "fcitx-configtool", "fcitx-hangul", "fcitx-libpinyin", "fcitx-m17n", "fcitx-qt5", "fcitx-rime", "fcitx-sayura", "fcitx-sunpinyin", "fcitx-table-extra", "fcitx-unikey", "fcitx", "freewnn", "ibus-anthy", "ibus-cangjie", "ibus-chewing", "ibus-fbterm", "ibus-handwrite", "ibus-hangul", "ibus-input-pad", "ibus-kkc", "ibus-libpinyin", "ibus-m17n", "ibus-pinyin", "ibus-rime", "ibus-skk", "ibus-sunpinyin", "ibus-table-chinese", "ibus-table-extraphrase", "ibus-table-latin", "ibus-table-others", "ibus-table", "ibus-typing-booster", "ibus-unikey", "ibus", "im-chooser", "im-freewnn", "imhangul", "imsettings", "jfbterm", "kakasi", "kanjipad", "kcc", "kcm-fcitx", "kinput2", "libcangjie", "libchewing", "libhangul", "libkkc", "libpinyin", "librime-lua", "librime", "libskk", "man-pages-it", "man-pages-ja", "man-pages-l10n", "man-pages-ru", "man-pages-zh_CN", "mecab-skkserv", "mozc", "multiskkserv", "nabi", "nkf", "opencc", "poedit", "pyzy", "qkc", "rime-data", "scim-anthy", "scim-bridge", "scim-hangul", "scim-input-pad", "scim-m17n", "scim-pinyin", "scim-sayura", "scim-sunpinyin", "scim-tables", "scim-tomoe", "scim-uim", "scim", "skk-jisyo", "skkfep", "skkserv", "skktools", "sunpinyin-data", "sunpinyin", "tagainijisho", "tegaki-zinnia-japanese", "tomoe-gtk", "tomoe", "transifex-client", "translate-shell", "uchardet", "uim-tomoe-gtk", "uim", "unicode-cldr", "unicode-data", "unicode-emoji", "xsunpinyin", "xvnkb", "yaskkserv", "zinnia-tomoe", "zinnia"], "app-laptop": ["dispad", "hdaps-gl", "hdapsd", "i8kutils", "ibam", "laptop-mode-tools", "mbpfan", "msi-keyboard", "pbbuttonsd", "pommed", "spicctrl", "thinkfan", "tp_smapi", "tpacpi-bat", "tpb", "tuxedo-control-center-bin", "tuxedo-keyboard", "rogauracore"], "app-metrics": ["alertmanager", "bind_exporter", "blackbox_exporter", "burrow_exporter", "collectd", "consul_exporter", "dnsmasq_exporter", "elasticsearch_exporter", "exabgp_exporter", "fritzbox_smarthome_exporter", "fusioninventory-agent", "github-exporter", "grok_exporter", "memcached_exporter", "mongodb_exporter", "mysqld_exporter", "nginx-lua-prometheus", "nginx-vts-exporter", "node_exporter", "openvpn_exporter", "postfix_exporter", "postgres_exporter", "process-exporter", "prom2json", "prometheus-bin", "prometheus", "pushgateway", "rabbitmq_exporter", "redis_exporter", "snmp_exporter", "unbound-telemetry", "uwsgi_exporter", "vault_exporter"], "app-misc": ["abduco", "abook", "acdctl", "actkbd", "aldo", "anki", "asciicast-tools", "asciinema", "astrolog-ephemeris", "astrolog", "away", "banner", "bb", "beancounter", "beanstalkd", "beep", "bfr", "bgrep", "bijiben", "binclock", "binwalk", "birthday", "blink1", "bottlerocket", "boxes", "brewtarget", "broot", "btail", "byobu", "c_rehash", "ca-certificates", "cadubi", "calendar", "carbon-c-relay", "cbview", "cdargs", "cdcat", "cdctl", "cdircmp", "cdspeed", "cfiles", "chkcrontab", "ckb", "ckermit", "clockywock", "cmatrix", "color", "colordiff", "conmux", "countrycodes", "cpipe", "crunch", "cstream", "cw", "dailystrips", "dasel", "datefudge", "dateutils", "datovka", "ddate", "ddccontrol-db", "ddccontrol", "ddcui", "ddcutil", "delay", "detachtty", "detox", "devtodo", "dfshow", "digitemp", "dtach", "dvorak7min", "dvorakng", "dvtm", "editor-wrapper", "egads", "elasticsearch", "emelfm2", "empty", "enum", "esekeyd", "evtest", "faq", "fdupes", "fdutils", "fhem", "figlet", "filebus", "flirc", "fr24feed", "freewvs", "fslurp", "fsniper", "g15composer", "g15daemon", "g15macro", "g15message", "g15mpd", "g15stats", "g810-led", "gcal", "gcalcli", "geekcode", "geneweb", "gentoo-elections", "gentoo", "geoclue", "getopt", "glastree", "glcdprocdriver", "glimpse", "gnote", "gnuit", "go-jira", "golly", "goobook", "grabcartoons", "gramps", "graphlcd-base", "grc", "gtk-sunlight", "gtypist", "hatools", "hddled", "hello", "hexcompare", "hilite", "hivex", "hodie", "i2bits", "icdiff", "imgurbash2", "inputlircd", "interceptty", "irtrans-irclient", "irtrans-irserver", "jail", "jot", "joy2key", "joymouse", "jp", "jpipe", "jq", "kanatest", "khal", "khard", "klavaro", "kryoflux-dtc", "ktoblzcheck", "lcd4linux", "lcdproc", "leave", "ledit", "lfm", "linux-logo", "linuxspa", "lirc", "livecd-tools", "lockfile-progs", "logiops", "lsx", "ltunify", "lxsplit", "mc", "media-player-info", "mencal", "mepl", "mime-types", "mkcert", "mmv", "mosquitto", "mouseremote", "muttprint", "mvcase", "mx5000tools", "neofetch", "nnn", "no-more-secrets", "notary", "note", "nullmodem", "nut", "ondir", "oneko", "openrgb-plugin-effects", "openrgb-plugin-skin", "openrgb-plugin-visualmap", "openrgb", "pal", "pax-utils", "pdfpc", "perltrash", "pet", "pfm", "physlock", "pip", "piper", "pipeworks", "plod", "prog-express", "ps3pf_utils", "pwsafe", "qcma", "qlcplus", "radeontop", "ranger", "razertool", "rbutil", "rdfind", "realpath", "recoll", "regex-markup", "regionset", "remind", "reptyr", "resolve-march-native", "rioutil", "rl", "rlwrap", "rox-filer", "rpick", "rtlamr", "rundeck-bin", "rundeck-cli-bin", "screen", "screenfetch", "screenie", "scrub", "selecta", "skim", "sl", "smtm", "socnetv", "solaar", "sonypid", "spacenavd", "sphinx", "spire", "splitvt", "srm", "supercat", "symlinks", "task", "taskd", "tdfsb", "tdl", "tek", "terminal-colors", "timestamp", "timew", "tkpasman", "tmate", "tmux-mem-cpu-load", "tmux-xpanes", "tmux", "tmux2html", "tmuxp", "todo", "toilet", "tpconfig", "tpipe", "tprint", "tracker-miners", "tracker", "transfolio", "trash-cli", "ttyload", "ttyrec", "ttysnoop", "unfoo", "uptimed", "utimer", "vcontrold", "vcp", "vifm", "vit", "vittk", "vlock", "votrify", "vzstats", "wcd", "when", "wildq", "wipe", "worker", "xmind", "yq", "ytree", "zisofs-tools", "zygrib", "libdatovka"], "app-mobilephone": ["adb-sync", "anyremote", "dfu-util", "gammu", "gnokii", "heimdall", "qtadb", "scmxx", "scrcpy", "smstools", "sobexsrv", "vmoconv"], "app-office": ["abiword-docs", "abiword", "auto-multiple-choice", "borg", "calcurse", "calligra", "calligraplan", "dia", "dia2code", "glabels", "gnome-todo", "gnucash", "gnumeric", "grisbi", "gtg", "homebank", "impressive", "kexi", "kmymoney", "kraft", "ktimetracker", "ledger", "libalkimia", "libreoffice-bin-debug", "libreoffice-bin", "libreoffice-l10n", "libreoffice-voikko", "libreoffice", "lyx", "magicpoint", "mdbtools", "moneydance", "multitalk", "pinpoint", "plan", "planner", "projectlibre-bin", "sc", "scribus", "skrooge", "texmacs", "texmaker", "texstudio", "unoconv", "upwork", "worklog-assistant-bin", "wps-office"], "app-officeext": ["barcode", "ct2n", "dmaths", "languagetool", "ooo2gd", "ooofbtools", "sun-templates", "texmaths"], "app-pda": ["barry", "dynamite", "gnupod", "gtkpod", "ideviceinstaller", "ifuse", "iripdb", "jpilot", "libimobiledevice", "libplist", "libusbmuxd", "pilot-link", "usbmuxd"], "app-portage": ["cfg-update", "conf-update", "cpuid2cpuflags", "diffmask", "distpatch", "eix", "elicense", "elogv", "elogviewer", "elt-patches", "emerge-delta-webrsync", "epkg", "esearch", "euses", "fetchcommandwrapper", "flaggie", "fquery", "g-cpan", "g-octave", "g-sorcery", "gander", "gemato", "genlop", "gentoolkit", "gentoopm", "golop", "gpyutils", "grs", "gs-elpa", "gverify", "hackport", "java-ebuilder", "kuroneko", "kuroo", "layman", "metagen", "mgorny-dev-scripts", "mirrorselect", "nattka", "no-distcc-env", "overlint", "pfl", "pgo", "pkg-testing-tools", "portage-utils", "porticron", "portpeek", "pram", "prefix-toolkit", "repo-commit", "repoman", "smart-live-rebuild", "tatt", "ufed", "unsymlink-lib", "iwdevtools"], "app-shells": ["autojump", "bash-completion", "bash", "bashdb", "bashish", "ccsh", "ctypes-sh", "dash", "dsh", "esh", "fish", "fzf", "fzy", "gentoo-bashcomp", "gentoo-zsh-completions", "heirloom-sh", "hstr", "ksh", "kshdb", "localshell", "loksh", "mcfly", "mksh", "mpibash", "nushell", "pdmenu", "pdsh", "peco", "posh", "powerline", "psh", "push", "pwsh-bin", "quoter", "rc", "rrs", "rush", "sash", "scsh", "shish", "smrsh", "soapbox", "squirrelsh", "tcsh", "thefuck", "tmux-bash-completion", "yash", "zsh-completions", "zsh-syntax-highlighting", "zsh", "liquidprompt"], "app-text": ["XML-Schema-learner", "a2ps", "agrep", "aiksaurus", "an", "ansifilter", "antiword", "antixls", "apvlv", "asa", "asciidoc", "aspell", "atril", "bact", "barcode", "bdf2psf", "bibclean", "bibletime", "bibutils", "binfind", "blahtexml", "blogc", "bogosort", "build-docbook-catalog", "c2ps", "calibre", "capyt", "catdoc", "cb2bib", "cedilla", "chasen", "cherrytree", "cmark", "cmigemo", "code2html", "convertlit", "convmv", "coolreader", "cpdf", "crf++", "crm114", "cuneiform", "cwtext", "dbacl", "dblatex", "delta", "dictd", "diction", "diff-pdf", "diffpdf", "ding", "discount", "djview", "djvu", "docbook-dsssl-stylesheets", "docbook-sgml-dtd", "docbook-sgml-utils", "docbook-xml-dtd", "docbook-xml-simple-dtd", "docbook-xsl-ns-stylesheets", "docbook-xsl-stylesheets", "docbook2X", "docx2txt", "dos2unix", "dvipng", "dvipsk", "dvisvgm", "ebook-tools", "editorconfig-core-c", "enchant", "enscript", "epspdf", "epstool", "evince", "expander", "extract_url", "fb2edit", "fblog", "fbpdf", "fbreader", "fictionup", "flpsed", "foliate", "ghostscript-gpl", "gnome-doc-utils", "gocr", "grip", "groonga-normalizer-mysql", "groonga", "grutatxt", "gspell", "gtkspell", "gtranslator", "gv", "hd2u", "highlight", "hnb", "htag", "html-xml-utils", "html2text", "html401", "htmlc", "htmldoc", "htmlinc", "htmlmin", "htmlrecode", "htmltidy", "htp", "hunspell", "hyperestraier", "iso-codes", "itex2mml", "jabref-bin", "jabref", "jo", "kbibtex", "kjots", "kramdown-rfc2629", "krop", "languagetool", "lcdf-typetools", "lesspipe", "letterize", "libabw", "libebook", "libepubgen", "libetonyek", "libexttextcat", "libgepub", "libgxps", "liblangtag", "libmspub", "libmwaw", "libnumbertext", "libodfgen", "libpaper", "libqxp", "libspectre", "libstaroffice", "libwpd", "libwpg", "libwps", "libxmlpatch", "linuxdoc-tools", "llpp", "logmerge", "lowdown", "lv", "mandoc", "manpager", "master-pdf-editor", "mathtex", "mecab", "mpage", "msort", "multitail", "mupdf", "mythes", "namazu", "nfoview", "nuspell", "o3read", "ocrad", "odt2txt", "openjade", "openpaperwork-core", "openpaperwork-gtk", "opensp", "pandoc", "paperwork-backend", "paperwork", "paps", "par", "pastebinit", "pdf2html", "pdf2oo", "pdfarranger", "pdfgrep", "pdfjam", "pdfminer", "pdfsandwich", "pdftk", "pelican", "pep", "pinfo", "po4a", "podofo", "poppler-data", "poppler", "ps2eps", "ps2pkm", "psiconv", "pspdftool", "pspresent", "pstotext", "psutils", "pytextile", "q-text-as-data", "qpdf", "qpdfview", "rarian", "recode", "reed", "refbase", "restview", "rman", "rnc2rng", "rnv", "robodoc", "ronn", "rpl", "rtf2html", "sablotron", "scdoc", "scrollkeeper-dtd", "sdcv", "sgml-common", "sgrep", "sigil", "simple-fb2-reader", "sloccount", "spellutils", "stardict", "sword-modules", "sword", "t1utils", "tabler", "talkfilters", "teckit", "teseq", "tessdata_best", "tessdata_fast", "tessdata_legacy", "tesseract", "texi2html", "texlive-core", "texlive", "tidy-html5", "tkinfo", "tkman", "tofrodos", "tokyodystopia", "trang", "tree", "ttf2pk2", "ttf2pt1", "txt2man", "txt2pdbdoc", "txt2tags", "u2ps", "unac", "unpaper", "unrtf", "uudeview", "vgrep", "vilistextum", "wdiff", "webgen", "wgetpaste", "wiki2beamer", "writerperfect", "wscr", "wv", "wv2", "xapers", "xapian-omega", "xchm", "xdvik", "xhtml1", "xhtml11", "xiphos", "xlhtml", "xlsx2csv", "xml2", "xml2doc", "xmldiff", "xmlformat", "xmlstarlet", "xmlto", "xournal", "xournalpp", "xpdf", "yelp-tools", "yodl", "zathura-cb", "zathura-djvu", "zathura-meta", "zathura-pdf-mupdf", "zathura-pdf-poppler", "zathura-ps", "zathura", "zotero-bin", "kchmviewer"], "app-vim": ["Vim-Jinja2-Syntax", "ackvim", "airline-themes", "airline", "align", "alternate", "ansiesc", "ant_menu", "autoalign", "bash-support", "bnf-syntax", "brainfuck-syntax", "breakpts", "bufexplorer", "c-support", "calendar", "cctree", "cecutil", "cfengine-syntax", "checkattach", "closetag", "cmdalias", "colorschemes", "colorsel", "command-t", "csound-syntax", "csscomplete", "csv", "ctrlp", "ctx", "curcmdmode", "cvsmenu", "dbext", "detectindent", "dhcpd-syntax", "diffchar", "dirdiff", "easy-align", "ebnf-syntax", "editorconfig-vim", "emmet", "enhancedcommentify", "errsign", "eruby-syntax", "eselect-syntax", "exheres-syntax", "extra-syntax", "ferret", "fluxbox-syntax", "foldutil", "frawor", "fugitive", "fuzzyfinder", "genindent", "gentoo-syntax", "genutils", "gist", "git-patch-tags", "gitgutter", "gitlog", "gitolite-syntax", "gitv", "gnupg", "greputils", "gtk-syntax", "gundo", "haskellmode", "help-extra-syntax", "increment", "indentpython", "info", "iris", "jedi", "json", "l9", "languagetool", "lightline", "locateopen", "lustyexplorer", "matrix", "mediawiki", "merginal", "minibufexpl", "molokai", "multiplesearch", "multvals", "nagios-syntax", "neocomplcache", "nerdcommenter", "nerdtree-tabs", "nerdtree", "nginx-syntax", "ntp-syntax", "omnicppcomplete", "pathogen", "pdv", "perl-support", "perlomni", "pfsyntax", "pgn-syntax", "phpdocs", "project", "puppet-syntax", "pushpop", "pyclewn", "pydiction", "pydoc", "pytest", "rails", "rainbow_parentheses", "recover", "reload", "repeat", "ri-browser", "rust-vim", "salt-vim", "scala-syntax", "screen", "searchcomplete", "securemodelines", "selinux-syntax", "session", "showmarks", "sleuth", "snipmate", "splice", "sudoedit", "supertab", "surround", "syntastic", "tagbar", "taglist", "tasklist", "tcomment", "thlnk", "tlib", "tmpl", "toggle", "tt2-syntax", "txtfmt", "udev-syntax", "undotree", "unite", "uptime", "vcscommand", "vim-addon-mw-utils", "vim-autoclose", "vim-clang-format", "vim-commentary", "vim-flake8", "vim-go", "vim-hoogle", "vim-jq", "vim-jsonnet", "vim-latex", "vim-misc", "vim-multiple-cursors", "vim-nftables", "vim-r", "vim-rest-console", "vim-spell-cs", "vim-spell-da", "vim-spell-de", "vim-spell-el", "vim-spell-en", "vim-spell-es", "vim-spell-fr", "vim-spell-he", "vim-spell-hu", "vim-spell-it", "vim-spell-nl", "vim-spell-pl", "vim-spell-pt", "vim-spell-ru", "vim-tmux", "vim2hs", "vimagit", "vimbuddy", "vimcdoc", "vimclojure", "vimcommander", "vimoutliner", "vimpython", "vimtex", "voom", "webapi", "wikipedia-syntax", "xquery-syntax", "xsl-syntax", "yankring", "zenburn", "zoomwin"], "app-xemacs": ["ada", "apel", "auctex", "bbdb", "build", "c-support", "calc", "calendar", "cc-mode", "cedet-common", "clearcase", "cogre", "cookie", "crisp", "debug", "dictionary", "dired", "docbookide", "easypg", "ebuild-mode", "ecb", "ecrypto", "ede", "edebug", "edict", "ediff", "edit-utils", "edt", "efs", "egg-its", "eieio", "elib", "emerge", "erc", "escreen", "eshell", "ess", "eudc", "footnote", "forms", "fortran-modes", "frame-icon", "fsf-compat", "games", "general-docs", "gnats", "gnus", "guided-tour", "haskell-mode", "hm-html-menus", "hyperbole", "ibuffer", "idlwave", "igrep", "ilisp", "jde", "latin-euro-standards", "latin-unity", "leim", "locale", "lookup", "mail-lib", "mailcrypt", "mew", "mh-e", "mine", "misc-games", "mmm-mode", "mule-base", "mule-ucs", "net-utils", "ocaml", "oo-browser", "os-utils", "pc", "pcl-cvs", "pcomplete", "perl-modes", "pgg", "prog-modes", "ps-print", "psgml-dtds", "psgml", "python-modes", "re-builder", "reftex", "riece", "rmail", "ruby-modes", "sasl", "scheme", "semantic", "sgml", "sh-script", "sieve", "skk", "slider", "sml-mode", "sounds-au", "sounds-wav", "speedbar", "strokes", "sun", "supercite", "texinfo", "text-modes", "textools", "time", "tm", "tooltalk", "tpu", "tramp", "vc-cc", "vc", "vhdl", "view-process", "viper", "vm", "w3", "x-symbol", "xemacs-base", "xemacs-devel", "xemacs-eterm", "xemacs-ispell", "xemacs-packages-all", "xetla", "xlib", "xslide", "xslt-process", "xwem", "zenirc"], "dev-ada": ["asis", "aunit", "aws", "gnat-suite-bin", "gnat_util", "gnatcoll-bindings", "gnatcoll-core", "gnatmem", "gnatsymbolize", "gprbuild", "gtkada", "libgpr", "xmlada"], "dev-cpp": ["ETL", "abseil-cpp", "aixlog", "amqp-cpp", "antlr-cpp", "argparse", "asio", "atkmm", "benchmark", "cairomm", "catch", "clucene", "commoncpp2", "cpp-hocon", "cpp-taskflow", "ctemplate", "eigen", "gconfmm", "gflags", "glibmm", "glog", "gstreamermm", "gtest", "gtkmm", "gtksourceviewmm", "htmlcxx", "kokkos", "libcmis", "libglademm", "libgnomecanvasmm", "libjson-rpc-cpp", "libmcpp", "libodb-sqlite", "libodb", "libxmlpp", "lucene++", "metslib", "mm-common", "ms-gsl", "muParser", "nlohmann_json", "notcurses", "pangomm", "picojson", "pngpp", "popl", "prometheus-cpp", "pstreams", "pystring", "random123", "range-v3", "robin-hood-hashing", "robin-map", "rttr", "sol2", "sourcetrail", "sparsehash", "string-theory", "tbb", "tclap", "tree", "waylandpp", "websocketpp", "yaml-cpp"], "dev-db": ["apgdiff", "barman", "bucardo", "cdb", "citus", "cockroach", "cpp-driver", "datadraw", "db-je", "etcd", "firebird", "freetds", "gigabase", "go-etcd", "gqlplus", "henplus", "hsqldb", "influxdb", "innotop", "kdb", "kyotocabinet", "libdbi-drivers", "libdbi", "libiodbc", "libodbc++", "libzdb", "lmdb++", "lmdb", "m17n-db", "mariadb-connector-c", "mariadb-connector-odbc", "mariadb", "mongodb", "mtop", "mycli", "mydumper", "myodbc", "mysql++", "mysql-cluster", "mysql-connector-c++", "mysql-connector-c", "mysql-init-scripts", "mysql-super-smack", "mysql-workbench", "mysql", "mysqltuner", "mytop", "ocp", "opendbx", "oracle-instantclient-basic", "oracle-instantclient-jdbc", "oracle-instantclient-odbc", "oracle-instantclient-sqlplus", "oracle-instantclient", "percona-server", "percona-toolkit", "percona-xtrabackup-bin", "percona-xtrabackup", "pgFormatter", "pg_activity", "pg_top", "pgadmin4", "pgagent", "pgbadger", "pgbouncer", "pgcli", "pgmemcache", "pgmodeler", "pgpool2", "pgrouting", "pgtap", "pgxnclient", "phpmyadmin", "phppgadmin", "plr", "postgis", "postgresql", "pspg", "psqlodbc", "qdbm", "qt5-sqlcipher", "redis", "repmgr", "rqlite", "sadisplay", "slony1", "spatialite-tools", "spatialite", "sqlcipher", "sqlcl-bin", "sqldeveloper", "sqlite", "sqlitebrowser", "sqliteman", "sqlitestudio", "textsearch_ja", "timescaledb", "tinycdb", "tokyocabinet", "tora", "unixODBC", "vsqlite++", "wxsqlite3"], "dev-dotnet": ["dbus-sharp-glib", "dbus-sharp", "dotnet-sdk-bin", "libgdiplus", "monocalendar", "ndesk-dbus-glib", "ndesk-dbus", "pe-format"], "dev-embedded": ["arduino-builder", "arduino-ctags", "arduino-listserialportsc", "arduino", "avarice", "avr-libc", "avra", "avrdude", "cpik", "dc-tool-ip", "dfu-programmer", "esptool", "freaklabs-boards", "gnusim8085", "gpsim", "gputils", "icdprog", "include", "jal", "kobs-ng", "libdisasm", "libftd2xx", "libftdi", "libjaylink", "lpc21isp", "mcu8051ide", "mspdebug", "nodemcu-uploader", "openocd", "parapin", "picasm", "picp", "picprog", "pista", "pk2cmd", "platformio", "ponyprog", "powersoftplus-libftdi", "rpi-eeprom", "sdcc", "smdk-dltool", "srecord", "stlink", "stm32flash", "sunxi-tools", "u-boot-tools", "uisp", "upslug2", "urjtag", "usbprog", "xa", "zmac"], "dev-erlang": ["base64url", "cache_tab", "eimp", "epam", "eredis", "esip", "ezlib", "fast_tls", "fast_xml", "fast_yaml", "goldrush", "hamcrest", "iconv", "idna", "jiffy", "jose", "lager", "luerl", "meck", "mqtree", "p1_acme", "p1_mysql", "p1_oauth2", "p1_pgsql", "p1_utils", "p1_xmlrpc", "pkix", "proper", "protobuffs", "riak_pb", "riakc", "sqlite3", "stringprep", "stun", "xmpp", "yconf"], "dev-games": ["KXL", "aseprite", "cardpics", "cegui", "clanlib", "flatzebra", "freecell-solver", "goatee", "guichan", "hawknl", "hdl_dump", "higan-ananke", "irrlicht-headers", "irrlicht", "libmaitretarot", "libmt_client", "libnw", "libsmacker", "mercator", "mygui", "newton", "ode", "ogre", "ois", "openscenegraph-openmw", "openscenegraph-qt", "openscenegraph", "paklib", "physfs", "poker-eval", "ps2-packer", "quake4-sdk", "recastnavigation", "simgear", "t4k-common", "tiled", "wfmath", "freesolid"], "dev-go": ["act", "blackfriday", "coveraggregator", "delve", "fuzzy", "get-ego-vendor", "go-bindata-assetfs", "go-bindata", "go-colortext", "go-eapache-queue", "go-license-detector", "go-licenses", "go-md2man", "go-snappy", "go-spew", "go-sqlite3", "go-text", "go-tools", "go-tour", "godebug-pretty", "gogo-protobuf", "golicense", "golint", "gom", "gopls", "goversion", "gox", "licenseclassifier", "qr", "sanitized-anchor-name", "twofactor"], "dev-haskell": ["abstract-deque-tests", "abstract-deque", "abstract-par", "ac-ppm", "adjunctions", "aeson-compat", "aeson-diff", "aeson-pretty", "aeson-qq", "aeson", "alex-tools", "alex", "alsa-core", "alsa-mixer", "alut", "annotated-wl-pprint", "ansi-terminal", "ansi-wl-pprint", "appar", "argparser", "arithmoi", "arrows", "ascii-progress", "asn1-encoding", "asn1-parse", "asn1-types", "async", "atomic-primops", "attoparsec-conduit", "attoparsec-enumerator", "attoparsec-iso8601", "attoparsec", "authenticate-oauth", "authenticate", "auto-update", "aws", "base-compat-batteries", "base-compat", "base-noprelude", "base-orphans", "base-prelude", "base-unicode-symbols", "base16-bytestring", "base64-bytestring", "basement", "basic-prelude", "bencode", "bifunctors", "binary-instances", "binary-orphans", "binary-tagged", "binary", "biocore", "biofasta", "biosff", "bitarray", "bits-atomic", "bitwise", "blaze-builder-conduit", "blaze-builder", "blaze-html", "blaze-markup", "blaze-textual", "bloomfilter", "boolean", "boundedchan", "boxes", "bsb-http-chunked", "byteable", "bytedump", "byteorder", "bytes", "bytestring-builder", "bytestring-handle", "bytestring-mmap", "bytestring-show", "bzlib", "c2hs", "cabal-doctest", "cabal-install", "cabal", "cairo", "call-stack", "casa-client", "casa-types", "case-insensitive", "cassava", "cereal-vector", "cereal", "cgi", "charset", "chaselev-deque", "chasingbottoms", "chell", "chimera", "chunked-data", "cipher-aes", "cipher-aes128", "cipher-camellia", "cipher-des", "cipher-rc4", "citeproc", "classy-prelude", "clientsession", "clock", "cmark-gfm", "cmark", "cmdargs", "code-page", "colour", "commonmark-extensions", "commonmark-pandoc", "commonmark", "comonad-transformers", "comonad", "comonads-fd", "concurrent-extra", "concurrent-output", "conduit-combinators", "conduit-extra", "conduit", "configfile", "configurator", "connection", "constraints", "contravariant-extras", "contravariant", "control-monad-loop", "convertible", "cookie", "cpphs", "cprng-aes", "cpu", "criterion-measurement", "criterion", "crypto-api-tests", "crypto-api", "crypto-cipher-tests", "crypto-cipher-types", "crypto-numbers", "crypto-pubkey-types", "crypto-pubkey", "crypto-random-api", "crypto-random", "crypto", "cryptohash-conduit", "cryptohash-cryptoapi", "cryptohash-md5", "cryptohash-sha1", "cryptohash-sha256", "cryptohash", "cryptonite-conduit", "cryptonite", "css-text", "curl", "data-accessor", "data-binary-ieee754", "data-default-class", "data-default-instances-base", "data-default-instances-containers", "data-default-instances-dlist", "data-default-instances-old-locale", "data-default", "data-endian", "data-hash", "data-ordlist", "dataenc", "date-cache", "dav", "dbus", "dec", "deepseq-generics", "dense-linear-algebra", "deriving-compat", "dictionary-sharing", "diff", "digest", "disk-free-space", "distributive", "djinn-ghc", "djinn-lib", "dlist-instances", "dlist", "dns", "doclayout", "doctemplates", "doctest", "double-conversion", "drbg", "easy-file", "echo", "ed25519", "edisonapi", "edisoncore", "edit-distance-vector", "edit-distance", "editline", "either", "ekg-core", "ekg-json", "ekg", "email-validate", "emojis", "enclosed-exceptions", "entropy", "enumerator", "equivalence", "erf", "errorcall-eq-instance", "errors", "esqueleto", "exact-pi", "exceptions", "executable-path", "extensible-exceptions", "extra", "fail", "failure", "fast-logger", "fclabels", "fdo-notify", "feed", "fgl-arbitrary", "fgl", "file-embed", "file-location", "filelock", "filemanip", "filepath-bytestring", "filepattern", "filestore", "findbin", "fingertree", "fixed", "fmlist", "foldl", "foundation", "free", "fsnotify", "generic-deriving", "generics-sop", "geniplate-mirror", "genvalidity-hspec", "genvalidity-property", "genvalidity", "getopt-generics", "ghc-lib-parser-ex", "ghc-lib-parser", "ghc-paths", "gio", "git-lfs", "git", "githash", "gitrev", "glib", "glob", "gluraw", "glut", "gnuidn", "gnutls", "graphviz", "groupoids", "gsasl", "gtk", "gtk2hs-buildtools", "gtk3", "hackage-security", "haddock-api", "haddock-library", "haddock", "hakyll", "half", "hamlet", "happstack-server", "happy", "harp", "hashable-time", "hashable", "hashtables", "haskeline", "haskell-lexer", "haskell-src-exts-util", "haskell-src-exts", "haskell-src-meta", "haskell-src", "haxml", "hcg-minus", "hcodecs", "hdbc-mysql", "hdbc-odbc", "hdbc-postgresql", "hdbc-sqlite3", "hdbc", "heaps", "hedgehog", "hex", "hexpat", "hi-file-parser", "highlighting-kate", "hinotify", "hit", "hjsmin", "hlint", "hoauth2", "hostname", "hourglass", "hpack", "hps", "hs-bibutils", "hs3", "hsb2hs", "hscolour", "hslogger", "hslua-module-path", "hslua-module-system", "hslua-module-text", "hslua", "hsopenssl", "hspec-contrib", "hspec-core", "hspec-discover", "hspec-expectations", "hspec-meta", "hspec-smallcheck", "hspec", "hsql-mysql", "hsql-odbc", "hsql-sqlite3", "hsql", "hstringtemplate", "hsyaml-aeson", "hsyaml", "htf", "html-conduit", "html", "http-api-data", "http-attoparsec", "http-client-conduit", "http-client-multipart", "http-client-restricted", "http-client-tls", "http-client", "http-common", "http-conduit", "http-date", "http-download", "http-reverse-proxy", "http-streams", "http-types", "http", "http2", "httpd-shed", "hunit", "hxt-charproperties", "hxt-regex-xmlschema", "hxt-unicode", "hxt", "icalendar", "iconv", "idiii", "idna", "ieee754", "ifelse", "indexed-traversable", "infer-license", "inspection-testing", "integer-logarithms", "integer-roots", "interpolate", "invariant", "io-streams-haproxy", "io-streams", "iproute", "ipynb", "iwlib", "jira-wiki-markup", "js-flot", "js-jquery", "json", "juicypixels", "kan-extensions", "keys", "language-bash", "language-c", "language-css", "language-dot", "language-ecmascript", "language-glsl", "language-haskell-extract", "language-javascript", "language-lua", "language-python", "lazysmallcheck", "lcs", "leancheck", "lens-aeson", "lens-family-core", "lens-family-th", "lens-family", "lens-simple", "lens", "lhs2tex", "libmpd", "libxml-sax", "libxml", "libyaml", "lifted-async", "lifted-base", "linear", "list", "listlike", "logging-facade", "logict-state", "logict", "lrucache", "lukko", "maccatcher", "magic", "markdown-unlit", "math-functions", "megaparsec", "memory", "memotrie", "mersenne-random-pure64", "microlens-aeson", "microlens-mtl", "microlens-th", "microlens", "microstache", "mime-mail", "mime-types", "mime", "minisat", "mintty", "missingh", "mmap", "mmorph", "mockery", "mod", "monad-control", "monad-journal", "monad-logger", "monad-loops", "monad-par-extras", "monad-par", "monad-unlift", "monadcatchio-mtl", "monadcatchio-transformers", "monadlib", "monadplus", "monadrandom", "monads-tf", "mono-traversable-instances", "mono-traversable", "mountpoints", "mtl-compat", "mtl", "multipart", "murmur-hash", "mustache", "mutable-containers", "mwc-random", "mysql-simple", "mysql", "nanospec", "nats", "neat-interpolation", "netlink", "network-bsd", "network-byte-order", "network-conduit", "network-data", "network-info", "network-multicast", "network-uri", "network", "newtype-generics", "newtype", "nonce", "numinstances", "numtype-dk", "objectname", "old-locale", "old-time", "only", "open-browser", "openal", "opengl", "openglraw", "openssl-streams", "options", "optparse-applicative", "optparse-simple", "pandoc-citeproc", "pandoc-types", "pango", "pantry", "parallel-io", "parallel", "parsec-numbers", "parsec", "parsec1", "parser-combinators", "parsers", "path-io", "path-pieces", "path", "patience", "pcap", "pcre-light", "pem", "persistent-mysql", "persistent-postgresql", "persistent-qq", "persistent-sqlite", "persistent-template", "persistent-test", "persistent", "pgp-wordlist", "pid1", "pipes", "pointed", "polyparse", "postgresql-libpq", "postgresql-simple", "pqueue", "prelude-extras", "preprocessor-tools", "pretty-hex", "pretty-show", "prettyclass", "prettyprinter-ansi-terminal", "prettyprinter", "primitive-addr", "primitive", "process-extras", "profunctor-extras", "profunctors", "project-template", "psqueue", "psqueues", "publicsuffixlist", "punycode", "puremd5", "pwstore-fast", "quickcheck-classes-base", "quickcheck-classes", "quickcheck-instances", "quickcheck-io", "quickcheck-unicode", "quickcheck", "random", "ranges", "raw-strings-qq", "readable", "readargs", "readline", "rebase", "recaptcha", "reducers", "refact", "reflection", "regex-applicative-text", "regex-applicative", "regex-base", "regex-compat-tdfa", "regex-compat", "regex-pcre-builtin", "regex-pcre", "regex-posix", "regex-tdfa", "rerebase", "resolv", "resource-pool", "resourcet", "retry", "rfc5051", "riff", "rio-orphans", "rio-prettyprint", "rio", "rsa", "safe-exceptions", "safe", "safesemaphore", "sandi", "say", "scientific", "securemem", "selective", "semigroupoid-extras", "semigroupoids", "semigroups", "semirings", "sendfile", "setenv", "setlocale", "sha", "shakespeare-css", "shakespeare-i18n", "shakespeare-js", "shakespeare-text", "shakespeare", "shell-escape", "shelly", "silently", "simple-reflect", "simple-sendfile", "singleton-bool", "size-based", "skein", "skylighting-core", "skylighting", "smallcheck", "snap-core", "snap-server", "socks", "sop-core", "split", "splitmix", "stack-bin", "stack", "statevar", "statistics", "stm-chans", "stm", "stmonadtrans", "store-core", "store", "stream", "streaming-commons", "strict", "string-qq", "stringable", "stringbuilder", "stringprep", "stringsearch", "syb-with-class", "syb", "system-fileio", "system-filepath", "system-posix-redirect", "tagged", "tagshare", "tagsoup", "tagstream-conduit", "tar-conduit", "tar", "tasty-ant-xml", "tasty-expected-failure", "tasty-golden", "tasty-hedgehog", "tasty-hunit", "tasty-kat", "tasty-lua", "tasty-quickcheck", "tasty-rerun", "tasty-smallcheck", "tasty-th", "tasty", "template-haskell-compat-v0208", "temporary-rc", "temporary", "tensor", "terminal-size", "terminfo", "test-framework-hunit", "test-framework-leancheck", "test-framework-quickcheck2", "test-framework-th", "test-framework", "testing-feat", "testing-type-modifiers", "texmath", "text-binary", "text-conversions", "text-icu", "text-metrics", "text-short", "text-show", "text-stream-decode", "text", "tf-random", "th-abstraction", "th-expand-syns", "th-lift-instances", "th-lift", "th-orphans", "th-reify-many", "th-utilities", "threads", "thyme", "time-compat", "time-locale-compat", "time-manager", "timeit", "timezone-olson", "timezone-series", "tls-session-manager", "tls", "top", "torrent", "transformers-base", "transformers-compat", "transformers", "tree-diff", "trifecta", "type-equality", "typed-process", "unbounded-delays", "unexceptionalio", "unicode-transforms", "uniplate", "uniqueid", "unix-compat", "unix-time", "unixutils", "unliftio-core", "unliftio", "unordered-containers", "uri-bytestring-aeson", "uri-bytestring", "uri-encode", "uri", "url", "utf8-light", "utf8-string", "uuagc-cabal", "uuagc", "uuid-types", "uuid", "uulib", "validity", "vault", "vector-algorithms", "vector-binary-instances", "vector-builder", "vector-instances", "vector-space", "vector-th-unbox", "vector", "void", "wai-app-static", "wai-conduit", "wai-extra", "wai-logger", "wai-test", "wai", "warp-tls", "warp", "wavy", "wcwidth", "weigh", "with-location", "wl-pprint-annotated", "wl-pprint-text", "wl-pprint", "word8", "wreq", "wx", "wxc", "wxcore", "wxdirect", "x11-xft", "x11", "x509-store", "x509-system", "x509-validation", "x509", "xhtml", "xml-conduit", "xml-hamlet", "xml-types", "xml", "xmlgen", "xss-sanitize", "yaml", "yesod-auth-hashdb", "yesod-auth", "yesod-core", "yesod-default", "yesod-form", "yesod-json", "yesod-persistent", "yesod-static", "yesod-test", "yesod", "zip-archive", "zlib-bindings", "zlib-conduit", "zlib-enum", "zlib"], "dev-java": ["absolutelayout", "airline", "android-util", "animal-sniffer-annotations", "ant-antlr", "ant-apache-bcel", "ant-apache-bsf", "ant-apache-log4j", "ant-apache-oro", "ant-apache-regexp", "ant-apache-resolver", "ant-apache-xalan2", "ant-commons-logging", "ant-commons-net", "ant-contrib", "ant-core", "ant-eclipse-ecj", "ant-ivy", "ant-jai", "ant-javamail", "ant-jdepend", "ant-jmf", "ant-jsch", "ant-junit", "ant-junit4", "ant-junitlauncher", "ant-swing", "ant-testutil", "ant-xz", "ant", "antlr", "aopalliance", "apache-rat-core", "apache-rat-tasks", "appframework", "apple-java-extensions-bin", "args4j", "asm-analysis", "asm-commons", "asm-tree", "asm-util", "asm", "aspectj", "assertj-core", "avalon-framework", "avalon-logkit", "backport-util-concurrent", "batik", "bcel", "bcmail", "bcpg", "bcpkix", "bcprov", "bcutil", "beansbinding", "blowfishj", "bnd-junit", "bndlib", "boot-bin", "brotli-dec", "browserlauncher2", "bsf", "bsh", "btf", "byaccj", "c3p0", "cdi-api", "cglib", "cofoja", "colt", "commons-beanutils", "commons-chain", "commons-cli", "commons-codec", "commons-collections", "commons-compress", "commons-csv", "commons-daemon", "commons-dbcp", "commons-dbutils", "commons-digester", "commons-discovery", "commons-email", "commons-graph", "commons-httpclient", "commons-imaging", "commons-io", "commons-jexl", "commons-jxpath", "commons-lang", "commons-launcher", "commons-logging", "commons-math", "commons-net", "commons-pool", "commons-primitives", "commons-text", "commons-validator", "commons-vfs", "constantine", "core-specs-alpha", "cortado", "cpptasks", "cssparser", "dict4j", "disruptor", "dnsjava", "dom4j", "dynalang", "easymock", "ecj-gcj", "eclipse-ecj", "eclipsito", "ecs", "edtftpj", "emma", "error-prone-annotations", "fastutil", "fec", "felix-bundlerepository", "felix-gogo-command", "felix-gogo-runtime", "felix-shell", "felix-utils", "fontbox", "fop", "forehead", "freehep-graphics2d", "freehep-graphicsbase", "freehep-graphicsio-emf", "freehep-graphicsio-svg", "freehep-graphicsio-tests", "freehep-graphicsio", "freehep-io", "gcj-jdk", "geoip-java", "gin", "glassfish-deployment-api", "glassfish-ejb-api", "glassfish-interceptor-api", "glassfish-jms-api", "glassfish-persistence", "glassfish-servlet-api", "glassfish-transaction-api", "glassfish-xmlrpc-api", "glazedlists", "gnu-classpath", "gnu-crypto", "gnu-hylafax", "gnu-jaf", "gnu-regexp", "gradle-bin", "gson", "guava", "guice", "gwt", "hamcrest-core", "hamcrest-generator", "hamcrest-library", "hawtjni-runtime", "headius-options", "hessian", "hoteqn", "htmlcleaner", "htmlparser-org", "htmlparser", "httpcore", "icedtea-bin", "icedtea-sound", "icedtea-web", "icedtea", "icu4j", "invokebinder", "iso-relax", "istack-commons-runtime", "istack-commons-soimp", "j2objc-annotations", "jackcess", "jackrabbit-webdav", "jackson-annotations", "jackson", "jacl", "jacoco", "jade", "jai-imageio-core", "jai-imageio-jpeg2000", "jakarta-activation-api", "jakarta-activation", "jakarta-oro", "jakarta-regexp", "jakartaee-migration", "jal", "jama", "jamon", "jamvm", "janino", "jansi-native", "jansi", "japitools", "jargs", "jarjar", "java-apicheck", "java-config", "java-dep-check", "java-diff-utils", "java-getopt", "java-service-wrapper", "javacc", "javacsv", "javacup", "javahelp", "javassist", "javatoolkit", "javax-inject", "jaxb-api", "jaxen", "jazzy", "jbig2-imageio", "jbitcollider-core", "jboss-marshalling-river", "jboss-marshalling-serial", "jboss-marshalling", "jboss-modules", "jcalendar", "jchardet", "jchart2d", "jcifs", "jcip-annotations", "jclasslib", "jcommander", "jcommon", "jdbc-mssqlserver", "jdbc-mysql", "jdbc-postgresql", "jdepend", "jdom", "jdynamite", "jempbox", "jetty-alpn-api", "jetty-npn-api", "jexcelapi", "jffi", "jflex", "jformatstring", "jfreechart", "jfreesvg", "jgoodies-common", "jgoodies-looks", "jgraph", "jgrapht", "jibx", "jide-oss", "jlex", "jlfgr", "jline", "jmdns", "jmh-core", "jmi-interface", "jmock", "jna", "jnlp-api", "jnr-a64asm", "jnr-constants", "jnr-enxio", "jnr-ffi", "jnr-netdb", "jnr-posix", "jnr-unixsocket", "jnr-x86asm", "joda-convert", "joda-time", "jopt-simple", "jrexx", "jrobin", "jrrd", "jsch-agent-proxy", "jsch", "json-simple", "json", "jsoup", "jspeex", "jsr181", "jsr223", "jsr225", "jsr250", "jsr305", "jsr311-api", "jsr322", "jsr67", "jss", "jssc", "jta", "jtds", "jtidy", "jtreemap", "jts-core", "juel", "jump", "jung", "junit-clptr", "junit", "junitparams", "junitperf", "jupidator", "jutils", "jvyaml", "jython", "jzlib", "kunststoff", "kxml", "laf-plugin", "leiningen-bin", "libg", "libreadline-java", "log4j", "lucene", "lzma", "lzmajio", "maven-bin", "maven-hawtjni-plugin", "mchange-commons", "mersennetwister", "metadata-extractor", "metainf-services", "microba", "miglayout", "milton-api", "milton-mail-api", "mimepull", "mina-core", "mockito", "mojarra", "moshi", "myfaces-api", "myfaces-builder-annotations", "nachocalendar", "nanoxml", "netty-buffer", "netty-common", "netty-tcnative", "netty-transport", "neuroph", "objenesis-test", "objenesis", "offo-hyphenation", "ognl", "okio", "opencsv", "openjdk-bin", "openjdk-jre-bin", "openjdk", "openjfx", "oracle-javamail", "osgi-annotation-versioning", "osgi-compendium", "osgi-core-api", "osgi-enterprise-api", "osgi-foundation", "osgi-obr", "pat", "pdf-renderer", "pdfbox", "piccolo", "piccolo2d", "picocli", "plexus-classworlds", "poi", "portletapi", "protobuf-java", "qdox", "randomized-runner", "rat", "reflectasm", "reflections", "relaxng-datatype", "resin-servlet-api", "rhino", "rngom", "rome", "rundoc", "rxtx", "sablecc-anttask", "sablecc", "sac", "sax", "saxon", "saxpath", "sbt-bin", "sbt", "shared-objects", "simplyhtml", "sjsxp", "slf4j-api", "slf4j-log4j12", "slf4j-nop", "slf4j-simple", "snakeyaml", "snappy", "snip", "sparsebitset", "spec-alpha", "spice-jndikit", "spin", "stringtemplate", "sun-jaf", "sun-jai-bin", "sun-jms", "super-csv", "swing-layout", "swingx-beaninfo", "swingx-ws", "swingx", "swt", "tablelayout", "telnetd", "testng", "texhyphj", "tijmp", "tomcat-jstl-compat", "tomcat-jstl-el", "tomcat-jstl-impl", "tomcat-jstl-spec", "tomcat-native", "tomcat-servlet-api", "toolbar", "touchgraph-graphlayout", "treelayout", "trident", "trove", "txw2-runtime", "typesafe-config", "unkrig-nullanalysis", "upnplib", "validation-api", "vecmath", "velocity", "vldocking", "ws-commons-util", "wsdl4j", "xalan-serializer", "xalan", "xerces", "xerial-core", "xjavac", "xml-commons-external", "xml-commons-resolver", "xml-security", "xml-writer", "xmldb", "xmlgraphics-commons", "xmlunit", "xmpcore", "xom", "xp", "xpp2", "xpp3", "xsdlib", "xsom", "xz-java", "yanfs", "zstd-jni"], "dev-lang": ["R", "abs", "bas", "bashforth", "bff", "c-intercal", "cfortran", "cll1h", "clojure", "closure-compiler-bin", "coffee-script", "crystal", "cxprolog", "duktape", "elixir", "erlang", "esco", "execline", "f2c", "ferite", "fpc", "gdl", "gforth", "ghc", "gnat-gpl", "gnuprologjava", "go-bootstrap", "go", "gprolog", "hy", "icon", "inform", "interprolog", "ispc", "janet", "jerryscript", "jimtcl", "jsonnet", "julia-bin", "julia", "jwasm", "lazarus", "lfe", "lisaac", "logtalk", "lua", "luajit", "maude", "mercury-extras", "mercury", "micropython", "mlton", "mmix", "moarvm", "mono-basic", "mono", "mozart-stdlib", "mozart", "mujs", "nasm", "nim", "nqp", "nwcc", "ocaml", "open-cobol", "orc", "parrot", "pcc", "perl", "php", "polyml", "python-exec-conf", "python-exec", "python", "qu-prolog", "rakudo", "regina-rexx", "ruby", "rust-bin", "rust", "sassc", "scala-bin", "scala", "smlnj", "snobol", "spark", "spidermonkey", "squirrel", "srf", "starlark-rust", "swi-prolog", "swig", "tcc", "tcl", "teyjus", "tk", "tuprolog", "typescript", "vala", "whitespace", "xsb", "yap", "yasm", "zig"], "dev-libs": ["9libs", "Ice", "OpenNI", "OpenNI2", "amdgpu-pro-opencl", "aml", "angelscript", "antlr-c", "appstream-glib", "appstream", "apr-util", "apr", "argtable", "atcore", "atf", "atk", "avro-c", "aws-c-cal", "aws-c-common", "aws-c-event-stream", "aws-c-io", "aws-checksums", "aws-sdk-cpp", "bareos-fastlzlib", "bcm2835", "bemenu", "bglibs", "bitset", "boehm-gc", "boost-mpl-cartesian_product", "boost", "botan", "boxfort", "busybee", "c-blosc", "c-capnproto", "cJSON", "caliper", "capnproto", "capstone", "cdk", "cereal", "cgilib", "cgreen", "check", "chmlib", "cl", "clhpp", "clipper", "cloog", "collada-dom", "concurrencykit", "confuse", "console_bridge", "cppcodec", "crc32c", "criterion", "crossguid", "crypto++", "cudnn", "cvector", "cxxopts", "cxxtools", "cyberjack", "cyrus-sasl", "d0_blind_id", "darts", "date", "dbus-c++", "dbus-glib", "device-atlas-api-c", "dietlibc", "ding-libs", "distorm3", "dmalloc", "dotconf", "double-conversion", "dqlite", "eb", "editline", "eekboard", "efl", "elfutils", "ell", "eventlog", "expat", "faxpp", "fcgi", "fddl", "ferrisloki", "ffcall", "flatbuffers", "folks", "foma", "freexl", "fribidi", "fstrm", "gdl", "geoip", "gf-complete", "gf2x", "girara", "gjs", "glib", "gmime", "gmp", "gnulib", "go-fuse", "gobject-introspection-common", "gobject-introspection", "gom", "gost-engine", "granite", "grantlee", "gtx", "gumbo", "hidapi", "hiredis", "http-fetcher", "hyperscan", "hyphen", "icu-layoutex", "icu-le-hb", "icu", "igraph", "iksemel", "imath", "inih", "iniparser", "injeqt", "input-pad", "intel-neo", "isl", "ivykis", "jansson", "jemalloc", "jerasure", "json-c", "json-glib", "jsoncpp", "jsonrpc-glib", "jthread", "judy", "kasync", "kdiagram", "keybinder", "keystone", "kopeninghours", "kosmindoormap", "kpathsea", "kpeoplevcard", "kproperty", "kpublictransport", "kqoauth", "kreport", "kuserfeedback", "leatherman", "level-zero", "leveldb", "libIDL", "libaio", "libappindicator", "libarcus", "libassuan", "libatasmart", "libatomic_ops", "libax25", "libb64", "libbase58", "libbpf", "libbrahe", "libbsd", "libbson", "libbulletml", "libburn", "libbytesize", "libcbor", "libcdada", "libcdio-paranoia", "libcdio", "libcec", "libcgroup", "libcharon", "libclc", "libclthreads", "libconfig", "libcoyotl", "libcroco", "libcss", "libdaemon", "libdazzle", "libdbh", "libdbusmenu-qt", "libdbusmenu", "libdispatch", "libdivecomputer", "libdivsufsort", "libdnet", "libdnsres", "libdshconfig", "libdynd", "libe", "libebml", "libedit", "libee", "libelf", "liberasurecode", "libestr", "libev", "libevdev", "libevent", "libevocosm", "libezV24", "libf2c", "libfastjson", "libffi-compat", "libffi", "libfido2", "libfilezilla", "libflatarray", "libfmt", "libfstrcmp", "libg15", "libg15render", "libgamin", "libgaminggear", "libgcrypt-compat", "libgcrypt", "libgdata", "libgee", "libgit2-glib", "libgit2", "libgnome-games-support", "libgnt", "libgpg-error", "libgpiod", "libgudev", "libgusb", "libgweather", "libhid", "libical", "libiconv", "libindicate", "libindicator", "libinput", "libintl", "libisoburn", "libisofs", "libite", "libixion", "libjcat", "libkpass", "libksba", "liblinear", "liblist", "liblogging", "liblognorm", "liblouis", "libltdl", "liblzw", "libmaa", "libmanette", "libmateweather", "libmaxminddb", "libmba", "libmcrypt", "libmelf", "libmemcached", "libmirage", "libmix", "libmodbus", "libmoe", "libmowgli", "libmpack", "libmspack", "libnatspec", "libnest2d", "libnfc", "libnl", "libnsfb", "libnsutils", "libofx", "liboil", "liborcus", "libotf", "libowfat", "libp11", "libparserutils", "libpcre-debian", "libpcre", "libpcre2", "libpeas", "libpfm", "libpipeline", "libplatform", "libpo6", "libpqxx", "libprelude", "libpreludedb", "libpthread-stubs", "libpwquality", "libpy", "libqtxdg", "libratbag", "librdkafka", "librelp", "librep", "libreport", "libretls", "librevenge", "libsass", "libsavitar", "libsecp256k1", "libserdes", "libserialport", "libsigc++", "libsigsegv", "libslz", "libsodium", "libspnav", "libspt", "libstrl", "libstroke", "libstrophe", "libtar", "libtasn1", "libtecla", "libtermkey", "libthreadar", "libtimezonemap", "libtomcrypt", "libtomfloat", "libtommath", "libtompoly", "libtpms", "libtreadstone", "libtsm", "libtubo", "libucl", "libudfread", "libuev", "libugpio", "libunibreak", "libuninum", "libunique", "libunistring", "libusb-compat", "libusb", "libusbhp", "libutf8proc", "libuv", "libvarlink", "libverto", "libvformat", "libvoikko", "libvterm-neovim", "libvterm", "libwacom", "libwapcaplet", "libwbxml", "libx86", "libx86emu", "libxdg-basedir", "libxdiff", "libxls", "libxml2", "libxmlb", "libxslt", "libyaml", "libzia", "libzip", "light", "link-grammar", "lockdev", "log4cplus", "log4cpp", "log4cxx", "log4sh", "luise", "lzo", "m17n-lib", "maloc", "marisa", "mathjax", "mimetic", "miniz", "mm", "mmtf-cpp", "mongo-c-driver", "mpc", "mpfr", "msgpack", "mxml", "nanomsg", "ncnn", "nettle", "newt", "nmeap", "npth", "nsgenbind", "nspr", "nss-pem", "nss", "nsync", "ntl", "ocl-icd", "onigmo", "oniguruma", "opencl-clang", "opencl-icd-loader", "opencryptoki", "openct", "openobex", "opensc", "openspecfun", "openssl-compat", "openssl", "ossp-uuid", "pakchois", "papi", "pcc-libs", "pcl", "pegtl", "pigpio", "pkcs11-helper", "plasma-wayland-protocols", "pmdk", "poco", "popt", "ppl", "processor-trace", "protobuf-c", "protobuf", "pslib", "ptexenc", "pthreads4w", "pugixml", "qcustomplot", "qoauth", "qqwing", "qrosscore", "qtcompress", "qtkeychain", "quazip", "raft", "rapidjson", "rapidxml", "rasqal", "rccl", "re2", "redland-bindings", "redland", "rinutils", "rlog", "rocclr", "rocksdb", "rocm-comgr", "rocm-device-libs", "rocm-hostcall", "rocm-opencl-runtime", "rocr-runtime", "roct-thunk-interface", "rremove", "s2n", "satyr", "sdformat", "serd", "serdisplib", "shhopt", "simdjson", "sink", "skalibs", "smack", "snowball-stemmer", "softhsm", "sord", "spdlog", "spsdeclib", "squareball", "starpu", "stb", "stfl", "stp", "template-glib", "tinyxml", "tinyxml2", "tntnet", "tomsfastmath", "totem-pl-parser", "tre", "tree-sitter", "trio", "tvision", "tvmet", "ucl", "ucommon", "udis86", "unibilium", "unittest++", "univalue", "urdfdom", "urdfdom_headers", "uriparser", "userspace-rcu", "utfcpp", "uthash", "uulib", "vala-common", "vc-intrinsics", "vc", "voikko-fi", "volume_key", "wayland-protocols", "wayland", "weston", "xalan-c", "xapian-bindings", "xapian", "xbyak", "xerces-c", "xmlrpc-c", "xmlsec", "xxhash", "yajl", "yaz", "zlog", "zthread", "zziplib", "icinga-php-library", "icinga-php-thirdparty", "metee"], "dev-lisp": ["abcl", "alexandria", "asdf", "c2ffi", "cl-ppcre-unicode", "cl-ppcre", "cl-unicode", "clisp", "clozurecl", "clx", "cmucl", "ecls", "flexi-streams", "gcl", "hyperspec", "roswell", "sbcl", "trivial-gray-streams", "uiop"], "dev-lua": ["LuaBitOp", "busted-htest", "busted", "dkjson", "inifile", "lanes", "ldoc", "lgi", "lpeg", "lua-argparse", "lua-bit32", "lua-cjson", "lua-openssl", "lua-term", "lua-utf8", "lua-zlib", "lua_cliargs", "luacheck", "luacov", "luadbi", "luaevent", "luaexpat", "luafilesystem", "luajson", "lualdap", "luaossl", "luaposix", "luarocks", "luasec", "luasocket", "luassert", "luasystem", "lutok", "luv", "md5", "mediator_lua", "messagepack", "mpack", "penlight", "say", "toluapp"], "dev-ml": ["alcotest", "astring", "async", "async_extra", "async_kernel", "async_rpc_kernel", "async_ssl", "async_unix", "base", "base_bigstring", "base_quickcheck", "bigarray-compat", "bin_prot", "biniou", "bos", "cairo2", "calendar", "calendars", "camlbz2", "camldbm", "camlidl", "camlp4", "camlp5", "camlpdf", "camlzip", "camomile", "cinaps", "cmdliner", "core", "core_bench", "core_kernel", "cppo", "cryptokit", "csexp", "cudf", "dose3", "dune-configurator", "dune-private-libs", "dune", "duration", "easy-format", "extlib", "facile", "fieldslib", "findlib", "fmt", "fpath", "graphics", "gsl-ocaml", "integers", "jane-street-headers", "jingoo", "jsonm", "jst-config", "lablgl", "lablgtk-sourceview", "lablgtk", "labltk", "llvm-ocaml", "logs", "lwt", "lwt_ssl", "markup", "mccs", "menhir", "merlin-extend", "merlin", "mirage-clock", "mmap", "mtime", "num", "ocaml-augeas", "ocaml-autoconf", "ocaml-base64", "ocaml-compiler-libs", "ocaml-ctypes", "ocaml-doc", "ocaml-expat", "ocaml-fileutils", "ocaml-gettext-camomile", "ocaml-gettext-stub", "ocaml-gettext", "ocaml-hashcons", "ocaml-migrate-parsetree", "ocaml-sqlite3", "ocaml-ssl", "ocamlbuild", "ocamlgraph", "ocamlnet", "ocamlsdl", "ocamlweb", "ocplib-endian", "ocplib-simplex", "octavius", "ocurl", "opam-client", "opam-core", "opam-file-format", "opam-format", "opam-installer", "opam-repository", "opam-solver", "opam-state", "opam", "ounit2", "parmap", "parsexp", "patience_diff", "pcre-ocaml", "ppx_assert", "ppx_base", "ppx_bench", "ppx_bin_prot", "ppx_cold", "ppx_compare", "ppx_custom_printf", "ppx_derivers", "ppx_deriving", "ppx_enumerate", "ppx_expect", "ppx_fail", "ppx_fields_conv", "ppx_fixed_literal", "ppx_hash", "ppx_here", "ppx_inline_test", "ppx_jane", "ppx_js_style", "ppx_let", "ppx_metaquot", "ppx_module_timer", "ppx_optcomp", "ppx_optional", "ppx_pipebang", "ppx_sexp_conv", "ppx_sexp_message", "ppx_sexp_value", "ppx_stable", "ppx_string", "ppx_tools", "ppx_tools_versioned", "ppx_typerep_conv", "ppx_variants_conv", "ppxfind", "ppxlib", "protocol_version_header", "re", "react", "reactiveData", "result", "rresult", "seq", "sexplib", "sexplib0", "spawn", "splittable_random", "stdio", "stdlib-shims", "textutils", "time_now", "timezone", "topkg", "typerep", "uchar", "unidecode", "uucp", "uuidm", "uunf", "uutf", "variantslib", "xml-light", "yojson", "zarith"], "dev-perl": ["Ace", "Acme-Damn", "Algorithm-Annotate", "Algorithm-C3", "Algorithm-ClusterPoints", "Algorithm-Dependency", "Algorithm-Diff", "Algorithm-Munkres", "Alien-Base-ModuleBuild", "Alien-Build", "Alien-GMP", "Alien-Gnuplot", "Alien-HDF4", "Alien-LibGumbo", "Alien-Libxml2", "Alien-SDL", "Alien-wxWidgets", "Any-Moose", "AnyEvent-AIO", "AnyEvent-CacheDNS", "AnyEvent-HTTP", "AnyEvent-HTTPD", "AnyEvent-I3", "AnyEvent", "Apache-AuthCookie", "Apache-CGI-Builder", "Apache-DBI", "Apache-LogFormat-Compiler", "Apache-Reload", "Apache-Session", "Apache-SizeLimit", "Apache-Test", "Apache2-AuthenNTLM", "App-CLI", "App-Cmd", "App-FatPacker", "App-Nopaste", "App-cpanminus", "App-perlbrew", "App-pwhich", "AppConfig", "Archive-Any", "Archive-Extract", "Archive-Tar-Stream", "Archive-Tar-Wrapper", "Archive-Zip", "Array-Compare", "Array-RefElem", "Array-Window", "Astro-FITS-Header", "AtExit", "Audio-CD-disc-cover", "Audio-DSP", "Audio-FLAC-Header", "Audio-Mixer", "Audio-Musepack", "Audio-Scan", "Audio-WMA", "Audio-Wav", "Authen-DigestMD5", "Authen-Htpasswd", "Authen-Libwrap", "Authen-NTLM", "Authen-OATH", "Authen-PAM", "Authen-Radius", "Authen-SASL-SASLprep", "Authen-SASL", "Authen-SCRAM", "Authen-Simple-Passwd", "Authen-Simple", "AutoXS-Header", "B-COW", "B-Debug", "B-Flags", "B-Hooks-EndOfScope", "B-Hooks-OP-Check", "B-Hooks-Parser", "B-Keywords", "B-OPCheck", "B-Utils", "BDB", "BSD-Resource", "BSON", "BZ-Client", "Benchmark-Timer", "BerkeleyDB", "Bio-ASN1-EntrezGene", "Bio-DB-HTS", "Bio-Das", "Bio-Graphics", "Bio-SamTools", "Bit-Vector-Minimal", "Bit-Vector", "Boulder", "Browser-Open", "Business-FedEx-DirectConnect", "Business-Hours", "Business-ISBN-Data", "Business-ISBN", "Business-ISMN", "Business-ISSN", "Business-Tax-VAT-Validation", "Business-UPS", "Bytes-Random-Secure", "CBOR-XS", "CDB_File", "CDDB-File", "CDDB", "CDDB_get", "CGI-Ajax", "CGI-Application-Dispatch", "CGI-Application-Plugin-Redirect", "CGI-Application-Server", "CGI-Application", "CGI-Builder", "CGI-Compile", "CGI-Emulate-PSGI", "CGI-Fast", "CGI-FastTemplate", "CGI-FormBuilder", "CGI-PSGI", "CGI-Session", "CGI-Simple", "CGI", "CHI", "CPAN-Changes", "CPAN-Checksums", "CPAN-DistnameInfo", "CPAN-Meta-Check", "CPAN-Mini-Inject", "CPAN-Mini", "CPAN-Perl-Releases", "CPAN-Uploader", "CQL-Parser", "CSS-Minifier-XS", "CSS-Minifier", "CSS-Packer", "CSS-Squish", "CSS-Tiny", "Cache-Cache", "Cache-FastMmap", "Cache-Memcached-Fast", "Cache-Memcached", "Cache-Simple-TimedExpiry", "Cache", "Cairo-GObject", "Cairo", "Calendar-Simple", "Canary-Stability", "Capture-Tiny", "Carp-Always", "Carp-Assert-More", "Carp-Assert", "Carp-Clan", "Chart-Math-Axis", "Chart", "Chatbot-Eliza", "Cisco-IPPhone", "Cisco-Reconfig", "Class-Accessor-Chained", "Class-Accessor-Grouped", "Class-Accessor-Lite", "Class-Accessor", "Class-Adapter", "Class-Autouse", "Class-Base", "Class-C3-Componentised", "Class-C3-XS", "Class-C3", "Class-Container", "Class-DBI-AbstractSearch", "Class-DBI-Plugin-DeepAbstractSearch", "Class-DBI-Plugin", "Class-DBI-mysql", "Class-DBI", "Class-Data-Accessor", "Class-Data-Inheritable", "Class-Default", "Class-ErrorHandler", "Class-Factory-Util", "Class-ISA", "Class-InsideOut", "Class-Inspector", "Class-Load-XS", "Class-Load", "Class-Loader", "Class-MakeMethods", "Class-Member", "Class-Method-Modifiers", "Class-MethodMaker", "Class-Mix", "Class-Refresh", "Class-ReturnValue", "Class-Singleton", "Class-Spiffy", "Class-Std-Fast", "Class-Std", "Class-Tiny", "Class-Trigger", "Class-Unload", "Class-Virtual", "Class-WhiteHole", "Class-XPath", "Class-XSAccessor", "Clipboard", "Clone-Choose", "Clone-PP", "Clone", "Color-Calc", "Color-Library", "Compiler-Lexer", "Compress-Bzip2", "Compress-LZF", "Conf-Libconfig", "Config-Any", "Config-ApacheFormat", "Config-Auto", "Config-AutoConf", "Config-Crontab", "Config-General", "Config-Grammar", "Config-INI", "Config-IniFiles", "Config-JSON", "Config-MVP-Reader-INI", "Config-MVP-Slicer", "Config-MVP", "Config-Properties", "Config-Simple", "Config-Tiny", "ConfigReader", "Const-Fast", "Context-Preserve", "Contextual-Return", "Convert-ASCII-Armour", "Convert-ASN1", "Convert-BER", "Convert-Base32", "Convert-BinHex", "Convert-Binary-C", "Convert-Color", "Convert-PEM", "Convert-TNEF", "Convert-UU", "Convert-UUlib", "Cookie-Baker-XS", "Cookie-Baker", "Coro", "Cpanel-JSON-XS", "Crypt-Blowfish", "Crypt-CAST5_PP", "Crypt-CBC", "Crypt-CipherSaber", "Crypt-Cracklib", "Crypt-Curve25519", "Crypt-DES", "Crypt-DES_EDE3", "Crypt-DH-GMP", "Crypt-DH", "Crypt-DSA", "Crypt-ECB", "Crypt-Eksblowfish", "Crypt-IDEA", "Crypt-OpenPGP", "Crypt-OpenSSL-Bignum", "Crypt-OpenSSL-DSA", "Crypt-OpenSSL-EC", "Crypt-OpenSSL-ECDSA", "Crypt-OpenSSL-Guess", "Crypt-OpenSSL-RSA", "Crypt-OpenSSL-Random", "Crypt-PBKDF2", "Crypt-PWSafe3", "Crypt-PasswdMD5", "Crypt-Primes", "Crypt-RC4", "Crypt-RIPEMD160", "Crypt-RSA", "Crypt-Random-Seed", "Crypt-Random-Source", "Crypt-Random-TESHA2", "Crypt-Random", "Crypt-Rijndael", "Crypt-SMIME", "Crypt-SSLeay", "Crypt-Simple", "Crypt-SmbHash", "Crypt-Twofish", "Crypt-URandom", "Crypt-X509", "CryptX", "Curses-UI", "Curses", "CursesWidgets", "Cwd-Guard", "DBD-MariaDB", "DBD-Pg", "DBD-SQLite", "DBD-mysql", "DBI-Shell", "DBI", "DBICx-TestDatabase", "DBIx-Class-DynamicDefault", "DBIx-Class-InflateColumn-Boolean", "DBIx-Class-InflateColumn-IP", "DBIx-Class-InflateColumn-Object-Enum", "DBIx-Class-UserStamp", "DBIx-Class", "DBIx-ContextualFetch", "DBIx-DBSchema", "DBIx-Migration", "DBIx-Safe", "DBIx-SearchBuilder", "DBIx-Simple", "DB_File-Lock", "Daemon-Generic", "Danga-Socket", "Data-AMF", "Data-Buffer", "Data-Compare", "Data-Diver", "Data-Dump-Streamer", "Data-Dump", "Data-DumpXML", "Data-Dumper-Concise", "Data-Float", "Data-FormValidator", "Data-GUID", "Data-HexDump", "Data-Hexify", "Data-Hierarchy", "Data-ICal", "Data-IEEE754", "Data-ObjectDriver", "Data-OptList", "Data-Page-Pageset", "Data-Page", "Data-Password-passwdqc", "Data-Password", "Data-Perl", "Data-Printer", "Data-Random", "Data-Section", "Data-Serializer", "Data-ShowTable", "Data-Stag", "Data-Stream-Bulk", "Data-Structure-Util", "Data-Types", "Data-URIEncode", "Data-UUID", "Data-Uniqid", "Data-Utilities", "Data-Validate-Domain", "Data-Validate-IP", "Data-Visitor", "Date-Calc", "Date-Extract", "Date-ICal", "Date-Leapyear", "Date-Manip", "Date-Pcalc", "Date-Simple", "DateTime-Calendar-Julian", "DateTime-Event-ICal", "DateTime-Event-Recurrence", "DateTime-Format-Builder", "DateTime-Format-DateParse", "DateTime-Format-Flexible", "DateTime-Format-HTTP", "DateTime-Format-Human-Duration", "DateTime-Format-ICal", "DateTime-Format-ISO8601", "DateTime-Format-Mail", "DateTime-Format-Natural", "DateTime-Format-SQLite", "DateTime-Format-Strptime", "DateTime-Format-W3CDTF", "DateTime-HiRes", "DateTime-Locale", "DateTime-Set", "DateTime-TimeZone", "DateTime-Tiny", "DateTime", "DateTimeX-Easy", "Debug-Client", "Deliantra", "DelimMatch", "Devel-ArgNames", "Devel-CallChecker", "Devel-Caller", "Devel-CheckBin", "Devel-CheckCompiler", "Devel-CheckLib", "Devel-CheckOS", "Devel-Cover", "Devel-Cycle", "Devel-Declare", "Devel-Dumpvar", "Devel-FindPerl", "Devel-GlobalDestruction", "Devel-GlobalPhase", "Devel-Hide", "Devel-Leak", "Devel-LexAlias", "Devel-NYTProf", "Devel-OverloadInfo", "Devel-OverrideGlobalRequire", "Devel-PatchPerl", "Devel-REPL", "Devel-Refactor", "Devel-SimpleTrace", "Devel-Size", "Devel-SmallProf", "Devel-StackTrace-AsHTML", "Devel-StackTrace", "Devel-Symdump", "Device-SerialPort", "Digest-BubbleBabble", "Digest-CRC", "Digest-GOST", "Digest-HMAC", "Digest-JHash", "Digest-MD2", "Digest-MD4", "Digest-MD5-File", "Digest-Nilsimsa", "Digest-Perl-MD5", "Digest-SHA1", "Digest-SHA3", "Dist-CheckConflicts", "Dist-Metadata", "Dist-Milla", "Dist-Zilla-Config-Slicer", "Dist-Zilla-Plugin-AuthorsFromGit", "Dist-Zilla-Plugin-CheckChangesHasContent", "Dist-Zilla-Plugin-CheckExtraTests", "Dist-Zilla-Plugin-Config-Git", "Dist-Zilla-Plugin-ContributorsFile", "Dist-Zilla-Plugin-CopyFilesFromBuild", "Dist-Zilla-Plugin-CopyFilesFromRelease", "Dist-Zilla-Plugin-Git-Contributors", "Dist-Zilla-Plugin-Git", "Dist-Zilla-Plugin-GithubMeta", "Dist-Zilla-Plugin-LicenseFromModule", "Dist-Zilla-Plugin-MakeMaker-Awesome", "Dist-Zilla-Plugin-Meta-Contributors", "Dist-Zilla-Plugin-MetaProvides-Package", "Dist-Zilla-Plugin-MetaProvides", "Dist-Zilla-Plugin-ModuleBuildTiny", "Dist-Zilla-Plugin-NameFromDirectory", "Dist-Zilla-Plugin-NextVersion-Semantic", "Dist-Zilla-Plugin-OSPrereqs", "Dist-Zilla-Plugin-OurPkgVersion", "Dist-Zilla-Plugin-PodWeaver", "Dist-Zilla-Plugin-Prereqs-FromCPANfile", "Dist-Zilla-Plugin-RPM", "Dist-Zilla-Plugin-ReadmeAnyFromPod", "Dist-Zilla-Plugin-ReadmeFromPod", "Dist-Zilla-Plugin-ReversionOnRelease", "Dist-Zilla-Plugin-Run", "Dist-Zilla-Plugin-StaticInstall", "Dist-Zilla-Plugin-SurgicalPodWeaver", "Dist-Zilla-Plugin-Test-CPAN-Changes", "Dist-Zilla-Plugin-Test-Compile", "Dist-Zilla-Plugin-Test-MinimumVersion", "Dist-Zilla-Plugin-Test-Perl-Critic", "Dist-Zilla-Plugin-VersionFromMainModule", "Dist-Zilla-Role-FileWatcher", "Dist-Zilla-Role-ModuleMetadata", "Dist-Zilla-Role-PluginBundle-PluginRemover", "Dist-Zilla", "Dumbbench", "DynaLoader-Functions", "EV", "Emacs-PDE", "Email-Abstract", "Email-Address-List", "Email-Address-XS", "Email-Address", "Email-Date-Format", "Email-Date", "Email-Filter", "Email-Find", "Email-FolderType", "Email-LocalDelivery", "Email-MIME-Attachment-Stripper", "Email-MIME-ContentType", "Email-MIME-Encodings", "Email-MIME", "Email-MessageID", "Email-Reply", "Email-Send-Gmail", "Email-Send", "Email-Sender", "Email-Simple", "Email-Valid", "Encode-Detect", "Encode-EUCJPASCII", "Encode-HanConvert", "Encode-HanExtra", "Encode-IMAPUTF7", "Encode-JIS2K", "Encode-Locale", "Encode-compat", "Error", "Eval-Closure", "Eval-LineNumbers", "Event-ExecFlow", "Event-RPC", "Event", "Exception-Base", "Exception-Class", "Exception-Died", "Exception-System", "Exception-Warning", "Expect", "Exporter-Cluster", "Exporter-Lite", "Exporter-Tiny", "ExtUtils-AutoInstall", "ExtUtils-CChecker", "ExtUtils-Config", "ExtUtils-CppGuess", "ExtUtils-Depends", "ExtUtils-F77", "ExtUtils-HasCompiler", "ExtUtils-Helpers", "ExtUtils-InstallPaths", "ExtUtils-LibBuilder", "ExtUtils-PkgConfig", "ExtUtils-Typemaps-Default", "ExtUtils-XSBuilder", "ExtUtils-XSpp", "FCGI-ProcManager", "FCGI", "FFI-CheckLib", "FLV-AudioExtractor", "Fatal-Exception", "Feed-Find", "Festival-Client-Async", "File-BOM", "File-BaseDir", "File-Copy-Link", "File-Copy-Recursive-Reduced", "File-Copy-Recursive", "File-DesktopEntry", "File-Find-Rule-Perl", "File-Find-Rule", "File-Flat", "File-Flock", "File-Grep", "File-HomeDir", "File-KeePass", "File-LibMagic", "File-Listing", "File-MMagic", "File-Map", "File-MimeInfo", "File-NCopy", "File-NFSLock", "File-Next", "File-Path-Expand", "File-ReadBackwards", "File-Remove", "File-RsyncP", "File-Scan-ClamAV", "File-SearchPath", "File-Share", "File-ShareDir-Install", "File-ShareDir-ProjectDistDir", "File-ShareDir", "File-Slurp-Tiny", "File-Slurp", "File-Slurper", "File-Sort", "File-Spec-Native", "File-Stat-Bits", "File-Sync", "File-Tail", "File-Tempdir", "File-Type", "File-Which", "File-chdir", "File-chmod", "File-pushd", "FileHandle-Unget", "Filesys-Df", "Filesys-DiskSpace", "Filesys-Notify-Simple", "Filesys-SmbClient", "Filesys-Statvfs", "Filter", "Finance-Quote", "Finance-YahooQuote", "Font-AFM", "Font-TTF", "Format-Human-Bytes", "FreezeThaw", "Frontier-RPC", "Fuse", "GD-Barcode", "GD-Graph3d", "GD-SVG", "GD", "GDGraph", "GDTextUtil", "GSSAPI", "Gearman-Client-Async", "Gearman-Server", "Gearman", "Gentoo-App-Pram", "Gentoo-PerlMod-Version", "Geo-IP", "GeoIP2", "Geography-Countries", "Getopt-ArgvFile", "Getopt-GUI-Long", "Getopt-Long-Descriptive", "Getopt-Mixed", "Getopt-Tabular", "Git-Wrapper", "Glib-Object-Introspection", "GnuPG-Interface", "Goo-Canvas", "GooCanvas2-CairoTypes", "GooCanvas2", "Google-Ads-AdWords-Client", "Graph-Easy", "Graph", "GraphViz", "Graphics-ColorNames-WWW", "Graphics-ColorNames", "Graphics-ColorObject", "Growl-GNTP", "Gtk2-Ex-PodViewer", "Gtk2-Ex-PrintDialog", "Gtk2-Ex-Simple-List", "Gtk2-ImageView", "Gtk2-Notify", "Gtk2-SourceView2", "Gtk2-Unique", "Gtk2", "Gtk3-ImageView", "Gtk3-SimpleList", "Gtk3", "Guard", "HTML-Clean", "HTML-Element-Extended", "HTML-FillInForm", "HTML-Form", "HTML-FormatText-WithLinks-AndTables", "HTML-FormatText-WithLinks", "HTML-Formatter", "HTML-FromText", "HTML-Gumbo", "HTML-HTMLDoc", "HTML-Highlight", "HTML-LinkExtractor", "HTML-Mason-PSGIHandler", "HTML-Mason", "HTML-Object", "HTML-Packer", "HTML-Parser", "HTML-Quoted", "HTML-RewriteAttributes", "HTML-Scrubber", "HTML-SimpleParse", "HTML-Strip", "HTML-StripScripts-Parser", "HTML-StripScripts", "HTML-Table", "HTML-TableContentParser", "HTML-TableExtract", "HTML-TableParser", "HTML-TagFilter", "HTML-Tagset", "HTML-Template-Expr", "HTML-Template-JIT", "HTML-Template-Pro", "HTML-Template", "HTML-TokeParser-Simple", "HTML-Tree", "HTTP-Body", "HTTP-BrowserDetect", "HTTP-Cache-Transparent", "HTTP-CookieJar", "HTTP-Cookies", "HTTP-DAV", "HTTP-Daemon", "HTTP-Date", "HTTP-Entity-Parser", "HTTP-Exception", "HTTP-Headers-Fast", "HTTP-Message", "HTTP-MultiPartParser", "HTTP-Negotiate", "HTTP-Request-AsCGI", "HTTP-Response-Encoding", "HTTP-Server-Simple-Mason", "HTTP-Server-Simple-PSGI", "HTTP-Server-Simple-Static", "HTTP-Server-Simple", "Hash-FieldHash", "Hash-Merge-Simple", "Hash-Merge", "Hash-MoreUtils", "Hash-MultiValue", "Hash-NoRef", "Heap", "Hook-LexWrap", "IMAP-Admin", "IMAP-BodyStructure", "IO-AIO", "IO-All", "IO-BufferedSelect", "IO-Capture", "IO-CaptureOutput", "IO-Compress-Brotli", "IO-Digest", "IO-Event", "IO-HTML", "IO-Handle-Util", "IO-Interactive", "IO-Interface", "IO-LockedFile", "IO-Multiplex", "IO-Pager", "IO-Pipely", "IO-Prompt", "IO-SessionData", "IO-Socket-INET6", "IO-Socket-Multicast", "IO-Socket-PortState", "IO-Socket-SSL", "IO-Socket-Timeout", "IO-String", "IO-Stty", "IO-Tee", "IO-TieCombine", "IO-Tty", "IO-Util", "IO-stringy", "IP-Anonymous", "IPC-Run", "IPC-Run3", "IPC-ShareLite", "IPC-Shareable", "IPC-Signal", "IPC-System-Simple", "Ima-DBI", "Image-Imlib2", "Image-Info", "Image-Sane", "Image-Scale", "Image-Size", "Import-Into", "Importer", "Inline-C", "Inline-Files", "Inline-Python", "Inline", "JSON-Any", "JSON-MaybeXS", "JSON-Parse", "JSON-RPC", "JSON-XS-VersionOneAndTwo", "JSON-XS", "JSON", "JavaScript-Minifier-XS", "JavaScript-Minifier", "JavaScript-Packer", "JavaScript-SpiderMonkey", "Jcode", "LWP-Authen-Wsse", "LWP-MediaTypes", "LWP-Online", "LWP-Protocol-http10", "LWP-Protocol-https", "LWP-UserAgent-Cached", "LWP-UserAgent-Determined", "LWPx-ParanoidAgent", "LaTeX-Driver", "LaTeX-Encode", "LaTeX-Table", "Lab-Measurement", "Lab-VXI11", "Lab-Zhinst", "Lchown", "Lexical-Persistence", "Lexical-SealRequireHints", "Lingua-EN-Inflect", "Lingua-EN-NameCase", "Lingua-EN-NameParse", "Lingua-EN-Numbers-Ordinate", "Lingua-PT-Stemmer", "Lingua-Preferred", "Lingua-Stem-Fr", "Lingua-Stem-It", "Lingua-Stem-Ru", "Lingua-Stem-Snowball-Da", "Lingua-Stem", "Lingua-Translit", "Linux-DesktopFiles", "Linux-Distribution", "Linux-Inotify2", "Linux-Pid", "Linux-PipeMagic", "Linux-Smaps", "Lirc-Client", "List-AllUtils", "List-MoreUtils-XS", "List-MoreUtils", "List-SomeUtils-XS", "List-SomeUtils", "List-UtilsBy", "Locale-Codes", "Locale-Maketext-Fuzzy", "Locale-Maketext-Lexicon", "Locale-Msgfmt", "Locale-PO", "Locale-gettext", "LockFile-Simple", "Log-Agent", "Log-Any", "Log-Dispatch-Array", "Log-Dispatch", "Log-Dispatchouli", "Log-Log4perl", "Log-Message-Simple", "Log-Message", "Log-Report-Optional", "Log-Report", "Log-TraceMessages", "MARC-Charset", "MARC-File-XML", "MARC-Record", "MCE", "MD5", "MIME-Base32", "MIME-Charset", "MIME-EncWords", "MIME-Lite-HTML", "MIME-Lite", "MIME-Types", "MIME-tools", "MLDBM-Sync", "MLDBM", "MP3-Info", "MP3-Tag", "MP4-Info", "MRO-Compat", "Mac-Pasteboard", "Mail-Audit", "Mail-AuthenticationResults", "Mail-Box-IMAP4", "Mail-Box-POP3", "Mail-Box", "Mail-Builder-Simple", "Mail-Builder", "Mail-DKIM", "Mail-DMARC", "Mail-DomainKeys", "Mail-IMAPClient", "Mail-ListDetector", "Mail-Mbox-MessageParser", "Mail-Message", "Mail-POP3Client", "Mail-Procmail", "Mail-SPF", "Mail-SRS", "Mail-Sender", "Mail-Sendmail", "Mail-Transport", "MailTools", "Math-Base-Convert", "Math-Base36", "Math-Bezier", "Math-BigInt-GMP", "Math-BigInt-Lite", "Math-CDF", "Math-Calc-Units", "Math-Derivative", "Math-FFT", "Math-Factor-XS", "Math-GMP", "Math-Int128", "Math-Int64", "Math-Libm", "Math-ModInt", "Math-NumSeq", "Math-NumberCruncher", "Math-Pari", "Math-PlanePath", "Math-Prime-XS", "Math-Random-ISAAC-XS", "Math-Random-ISAAC", "Math-Random-MT", "Math-Random-Secure", "Math-Random", "Math-Round", "Math-Spline", "Math-Utils", "Math-Vec", "Math-VecStat", "MaxMind-DB-Common", "MaxMind-DB-Reader-XS", "MaxMind-DB-Reader", "MediaWiki-API", "Mixin-Linewise", "Mo", "Mock-Config", "Modem-Vgetty", "Modern-Perl", "Module-Build-Tiny", "Module-Build-WithXSpp", "Module-Build-XSUtil", "Module-Build", "Module-CPANfile", "Module-Compile", "Module-Find", "Module-Implementation", "Module-Info", "Module-Install-AuthorTests", "Module-Install", "Module-Locate", "Module-Manifest", "Module-Path", "Module-Pluggable", "Module-Refresh", "Module-Runtime-Conflicts", "Module-Runtime", "Module-ScanDeps", "Module-Signature", "Module-Starter", "Module-Util", "Module-Versions-Report", "MogileFS-Client-Async", "MogileFS-Client", "MogileFS-Network", "MogileFS-Server", "MogileFS-Utils", "Mojolicious", "Mon", "MongoDB", "Monitoring-Plugin", "Moo", "MooX-HandlesVia", "MooX-StrictConstructor", "MooX-Types-MooseLike-Numeric", "MooX-Types-MooseLike", "MooX-late", "Moose-Autobox", "Moose", "MooseX-Aliases", "MooseX-ClassAttribute", "MooseX-ConfigFromFile", "MooseX-FollowPBP", "MooseX-Getopt", "MooseX-GlobRef", "MooseX-Has-Sugar", "MooseX-LazyRequire", "MooseX-MultiInitArg", "MooseX-Object-Pluggable", "MooseX-OneArgNew", "MooseX-Params-Validate", "MooseX-Role-Parameterized", "MooseX-Role-WithOverloading", "MooseX-SetOnce", "MooseX-SimpleConfig", "MooseX-StrictConstructor", "MooseX-Types-DateTime-ButMaintained", "MooseX-Types-DateTime-MoreCoercions", "MooseX-Types-DateTime", "MooseX-Types-DateTimeX", "MooseX-Types-JSON", "MooseX-Types-Path-Class", "MooseX-Types-Path-Tiny", "MooseX-Types-Perl", "MooseX-Types-Stringlike", "MooseX-Types-URI", "MooseX-Types", "Mouse", "MouseX-NativeTraits", "MouseX-Types", "Mozilla-CA", "Mozilla-PublicSuffix", "MusicBrainz-DiscID", "Net-ARP", "Net-Amazon-S3", "Net-Amazon", "Net-Bonjour", "Net-CIDR-Lite", "Net-CIDR", "Net-CUPS", "Net-DBus", "Net-DNS-Async", "Net-DNS-Resolver-Mock", "Net-DNS-Resolver-Programmable", "Net-DNS-SEC", "Net-DNS", "Net-Daemon", "Net-Domain-TLD", "Net-FreeDB", "Net-Google-SafeBrowsing-Blocklist", "Net-HTTP", "Net-IDN-Encode", "Net-IMAP-Simple-SSL", "Net-IMAP-Simple", "Net-IP-Minimal", "Net-IP", "Net-IPv4Addr", "Net-IRC", "Net-IRR", "Net-Ident", "Net-Jabber", "Net-LDAP-Server", "Net-LDAPapi", "Net-LibIDN", "Net-LibIDN2", "Net-Netmask", "Net-OAuth", "Net-OpenID-Common", "Net-OpenID-Consumer", "Net-OpenSSH", "Net-Patricia", "Net-Pcap", "Net-PcapUtils", "Net-RBLClient", "Net-RawIP", "Net-SFTP-Foreign", "Net-SFTP", "Net-SMTP-SSL", "Net-SMTP-TLS-ButMaintained", "Net-SMTP-TLS", "Net-SMTPS", "Net-SNMP", "Net-SNPP", "Net-SSH-Any", "Net-SSH-AuthorizedKeysFile", "Net-SSH-Perl", "Net-SSH2", "Net-SSLeay", "Net-Server-Coro", "Net-Server-Mail", "Net-Server", "Net-Subnet", "Net-Telnet-Cisco", "Net-Telnet", "Net-Trackback", "Net-Twitter", "Net-UPnP", "Net-Whois-IP", "Net-Works", "Net-XMPP", "Net-Z3950-ZOOM", "NetAddr-IP", "NetPacket", "News-Newsrc", "Nmap-Parser", "Number-Bytes-Human", "Number-Compare", "Number-Format", "Number-Fraction", "Number-WithError", "OLE-StorageLite", "OOTools", "ORLite-Migrate", "ORLite", "Object-Enum", "Object-Event", "Object-MultiType", "Object-Realize-Later", "Ogg-Vorbis-Header-PurePerl", "Ogg-Vorbis-Header", "Olson-Abbreviations", "OpenGL", "PAR-Dist", "PAR", "PBKDF2-Tiny", "PBS-Client", "PDF-API2", "PDF-Builder", "PDF-Create", "PDL-Graphics-Gnuplot", "PDL-Transform-Color", "PDL", "PGPLOT", "PHP-Serialization", "POE-API-Peek", "POE-Component-Client-DNS", "POE-Component-Client-Keepalive", "POE-Component-IKC", "POE-Component-PreforkDispatch", "POE-Component-Resolver", "POE-Test-Loops", "POE-XS-Loop-EPoll", "POE-XS-Loop-Poll", "POE-XS-Queue-Array", "POE", "POSIX-strftime-Compiler", "PPI-HTML", "PPI-PowerToys", "PPI", "PPIx-EditorTools", "PPIx-QuoteLike", "PPIx-Regexp", "PPIx-Utilities", "PPIx-Utils", "Package-Constants", "Package-DeprecationManager", "Package-Stash-XS", "Package-Stash", "Package-Variant", "PadWalker", "Palm-PDB", "Palm", "Pango", "Panotools-Script", "ParaDNS", "Parallel-ForkManager", "Parallel-Iterator", "Parallel-Prefork", "Params-Classify", "Params-Util", "Params-Validate", "Params-ValidationCompiler", "Parse-ErrorString-Perl", "Parse-ExuberantCTags", "Parse-RecDescent", "Parse-Syslog", "Parse-Yapp", "Passwd-Linux", "Passwd-Unix", "PatchReader", "Path-Class", "Path-FindDev", "Path-IsDev", "Path-Iterator-Rule", "Path-Tiny", "Pegex", "Perl-Critic-Deprecated", "Perl-Critic-Dynamic", "Perl-Critic-Nits", "Perl-Critic-Policy-Dynamic-NoIndirect", "Perl-Critic", "Perl-LanguageServer", "Perl-MinimumVersion", "Perl-PrereqScanner", "Perl-Strip", "Perl-Tags", "Perl-Tidy", "Perl-Unsafe-Signals", "Perl-Version", "Perl6-Junction", "PerlIO-Layers", "PerlIO-eol", "PerlIO-gzip", "PerlIO-utf8_strict", "PerlIO-via-Timeout", "PerlIO-via-dynamic", "Perlbal-XS-HTTPHeaders", "Perlbal", "PlRPC", "Plack", "Plucene", "Pod-Abstract", "Pod-Coverage", "Pod-Elemental-PerlMunger", "Pod-Elemental", "Pod-Eventual", "Pod-LaTeX", "Pod-Markdown-Github", "Pod-Markdown", "Pod-POM-View-Restructured", "Pod-POM", "Pod-Parser", "Pod-Readme", "Pod-Simple-LaTeX", "Pod-Spell", "Pod-Strip", "Pod-Tests", "Pod-Weaver", "PostScript-Simple", "PostScript", "Probe-Perl", "Proc-Background", "Proc-Daemon", "Proc-Guard", "Proc-ProcessTable", "Proc-Simple", "Proc-Wait3", "Proc-WaitStat", "Quota", "REST-Client", "RPC-XML", "RRD-Simple", "RTF-Writer", "Rcs", "Readonly-XS", "Readonly", "Redis", "RedisDB-Parser", "RedisDB", "Ref-Util-XS", "Ref-Util", "Regexp-Common-net-CIDR", "Regexp-Common", "Regexp-IPv6", "Regexp-RegGrp", "Regexp-Shellish", "Regexp-Util", "Return-Value", "Role-Basic", "Role-HasMessage", "Role-Identifiable", "Role-Tiny", "Roman", "Router-Simple", "SDL", "SGMLSpm", "SNMP_Session", "SOAP-Lite", "SOAP-WSDL", "SQL-Abstract-Classic", "SQL-Abstract-Limit", "SQL-Abstract", "SQL-Statement", "SQL-Translator", "SRU", "SUPER", "SVG-Graph", "SVG", "Safe-Hole", "Safe-Isa", "Scalar-Properties", "Schedule-At", "Schedule-Cron-Events", "Scope-Guard", "Scope-Upper", "Search-Xapian", "Sereal-Decoder", "Sereal-Encoder", "Sereal", "Server-Starter", "Set-Crontab", "Set-Infinite", "Set-IntSpan", "Set-Object", "Set-Scalar", "Shell-Config-Generate", "Shell-EnvImporter", "Shell-Guess", "Shell", "ShipIt", "Signal-Mask", "Snowball-Norwegian", "Snowball-Swedish", "Socket-GetAddrInfo", "Socket6", "Software-License", "Sort-Key-IPv4", "Sort-Key", "Sort-Naturally", "Sort-Tree", "Sort-Versions", "Specio", "Speech-Recognizer-SPX", "Sphinx-Config", "Sphinx-Search", "Spiffy", "Spreadsheet-ParseExcel", "Spreadsheet-WriteExcel", "Starlet", "Stat-lsMode", "Statistics-Basic", "Statistics-CaseResampling", "Statistics-Descriptive-Discrete", "Statistics-Descriptive", "Statistics-Distributions", "Statistics-TTest", "Stream-Buffered", "String-Approx", "String-CRC32", "String-Ediff", "String-Errf", "String-Escape", "String-Flogger", "String-Format", "String-Formatter", "String-Print", "String-RewritePrefix", "String-ShellQuote", "String-Tokenizer", "String-Truncate", "String-Util", "Struct-Compare", "Sub-Delete", "Sub-Exporter-ForMethods", "Sub-Exporter-GlobExporter", "Sub-Exporter-Progressive", "Sub-Exporter", "Sub-HandlesVia", "Sub-Identify", "Sub-Info", "Sub-Install", "Sub-Name", "Sub-Override", "Sub-Quote", "Sub-Uplevel", "Switch", "Symbol-Global-Name", "Symbol-Util", "Syntax-Highlight-Engine-Simple-Perl", "Syntax-Highlight-Engine-Simple", "Syntax-Keyword-Junction", "Sys-CPU", "Sys-CpuLoad", "Sys-Hostname-Long", "Sys-MemInfo", "Sys-Mmap", "Sys-SigAction", "Sys-Statistics-Linux", "Sys-Syscall", "Sys-Virt", "Sysadm-Install", "TAP-Parser-SourceHandler-pgTAP", "Taint-Runtime", "Taint-Util", "Task-Weaken", "TeX-Encode", "Template-DBI", "Template-GD", "Template-Plugin-Cycle", "Template-Plugin-Latex", "Template-Tiny", "Template-Toolkit", "Template-XML", "Term-ANSIScreen", "Term-Encoding", "Term-ProgressBar-Quiet", "Term-ProgressBar-Simple", "Term-ProgressBar", "Term-ReadLine-Gnu", "Term-ReadLine-Perl", "Term-ReadLine-TTYtter", "Term-ReadPassword", "Term-Screen", "Term-ScreenColor", "Term-Shell", "Term-ShellUI", "Term-Table", "Term-UI", "TermReadKey", "Test-Assert", "Test-Base", "Test-Bits", "Test-CPAN-Meta", "Test-CheckDeps", "Test-Class", "Test-ClassAPI", "Test-CleanNamespaces", "Test-Command-Simple", "Test-Command", "Test-Compile", "Test-Deep-JSON", "Test-Deep", "Test-Dependencies", "Test-DiagINC", "Test-Differences", "Test-DistManifest", "Test-Distribution", "Test-EOL", "Test-Exception", "Test-FailWarnings", "Test-Fatal", "Test-File-Contents", "Test-File-ShareDir", "Test-File", "Test-Filename", "Test-Files", "Test-Fork", "Test-HTTP-Server-Simple", "Test-Inline", "Test-Inter", "Test-Kit", "Test-LeakTrace", "Test-LectroTest", "Test-LongString", "Test-Manifest", "Test-Memory-Cycle", "Test-MinimumVersion", "Test-Mock-LWP-Dispatch", "Test-MockModule", "Test-MockObject", "Test-MockRandom", "Test-MockTime-HiRes", "Test-MockTime", "Test-More-UTF8", "Test-Most", "Test-Needs", "Test-NoTabs", "Test-NoWarnings", "Test-Number-Delta", "Test-Object", "Test-Output", "Test-Perl-Critic", "Test-Pod-Coverage", "Test-Pod", "Test-Portability-Files", "Test-Regexp", "Test-Requires", "Test-RequiresInternet", "Test-Script", "Test-SharedFork", "Test-Spec", "Test-Strict", "Test-SubCalls", "Test-TCP", "Test-Taint", "Test-TempDir-Tiny", "Test-Time", "Test-Timer", "Test-Trap", "Test-Unit-Lite", "Test-UseAllModules", "Test-Version", "Test-WWW-Mechanize", "Test-Warn", "Test-Warnings", "Test-Without-Module", "Test-YAML", "Test-utf8", "Test2-Plugin-NoWarnings", "Test2-Suite", "Text-Aligner", "Text-Aspell", "Text-Autoformat", "Text-BibTeX", "Text-CSV-Simple", "Text-CSV", "Text-CSV_XS", "Text-CharWidth", "Text-Diff", "Text-FindIndent", "Text-Format", "Text-German", "Text-Glob", "Text-Iconv", "Text-Kakasi", "Text-Levenshtein", "Text-LevenshteinXS", "Text-Markdown", "Text-Netstring", "Text-Password-Pronounceable", "Text-Patch", "Text-Quoted", "Text-Reform", "Text-Roman", "Text-Shellwords", "Text-Soundex", "Text-Table", "Text-Template", "Text-Unidecode", "Text-VimColor", "Text-WikiFormat", "Text-WrapI18N", "Text-Wrapper", "Text-vFile-asData", "TheSchwartz", "Thread-SigMask", "Throwable", "Tie-Array-Sorted", "Tie-CPHash", "Tie-Cache-LRU-Expires", "Tie-Cache-LRU", "Tie-Cache", "Tie-Cycle", "Tie-EncryptedHash", "Tie-Hash-Method", "Tie-IxHash", "Tie-LLHash", "Tie-ShadowHash", "Tie-Simple", "Tie-StrictHash", "Tie-Sub", "Tie-ToObject", "Time-Duration-Parse", "Time-Duration", "Time-Format", "Time-Moment", "Time-Monotonic", "Time-Out", "Time-ParseDate", "Time-Period", "Time-Piece-MySQL", "Time-Stopwatch", "Time-TAI64", "Time-TZOffset", "TimeDate", "Tk-CursorControl", "Tk-JPEG-Lite", "Tk-TableMatrix", "Tk", "Tree-DAG_Node", "Tree-Simple", "Try-Tiny", "Type-Tie", "Type-Tiny-XS", "Type-Tiny", "Types-Path-Tiny", "Types-Serialiser", "UNIVERSAL-can", "UNIVERSAL-isa", "UNIVERSAL-moniker", "UNIVERSAL-require", "URI-Encode", "URI-Fetch", "URI-Find", "URI-FromHash", "URI-redis", "URI", "USB-LibUSB", "USB-TMC", "UUID-Tiny", "UUID", "UltraDNS", "Unicode-EastAsianWidth", "Unicode-LineBreak", "Unicode-Map", "Unicode-Map8", "Unicode-MapUTF8", "Unicode-String", "Unicode-Stringprep", "Unicode-UTF8", "Unicode-UTF8simple", "Unix-Getrusage", "Unix-Mknod", "Unix-Syslog", "User-Identity", "VM-EC2-Security-CredentialCache", "VM-EC2", "Validate-Net", "Validate-Tiny", "Variable-Magic", "Version-Next", "Video-Frequencies", "Video-Info", "Video-ivtv", "WWW-Curl", "WWW-Dict-Leo-Org", "WWW-Form-UrlEncoded-XS", "WWW-Form-UrlEncoded", "WWW-Mechanize-FormFiller", "WWW-Mechanize", "WWW-Pastebin-PastebinCom-Create", "WWW-RobotRules", "WWW-Shorten", "Want", "WattsUp-Daemon", "WeakRef", "Weather-Com", "WebService-Linode", "WebService-MusicBrainz", "WordNet-QueryData", "Wx-GLCanvas", "Wx-Perl-ProcessStream", "Wx-Scintilla", "Wx", "X-Osd", "X11-FreeDesktop-DesktopEntry", "X11-Protocol", "X11-XCB", "X500-DN", "XML-Atom", "XML-Catalog", "XML-CompactTree-XS", "XML-Compile-Cache", "XML-Compile-SOAP", "XML-Compile-Tester", "XML-Compile-WSDL11", "XML-Compile", "XML-DOM-XPath", "XML-DOM", "XML-DT", "XML-DTDParser", "XML-Descent", "XML-Directory", "XML-Dumper", "XML-Elemental", "XML-Encoding", "XML-Entities", "XML-Fast", "XML-Feed", "XML-FeedPP", "XML-Filter-BufferText", "XML-Filter-DOMFilter-LibXML", "XML-Generator", "XML-Grove", "XML-Handler-YAWriter", "XML-LibXML-Iterator", "XML-LibXML-Simple", "XML-LibXML", "XML-LibXSLT", "XML-Mini", "XML-NamespaceSupport", "XML-NodeFilter", "XML-Parser-Lite", "XML-Parser", "XML-RAI", "XML-RSS-Feed", "XML-RSS-LibXML", "XML-RSS-Parser", "XML-RSS", "XML-RegExp", "XML-SAX-Base", "XML-SAX-Expat", "XML-SAX-ExpatXS", "XML-SAX-Writer", "XML-SAX", "XML-Simple-DTDReader", "XML-Simple", "XML-SimpleObject", "XML-Smart", "XML-Stream", "XML-TokeParser", "XML-TreePP", "XML-Twig", "XML-Validator-Schema", "XML-Writer", "XML-XPath", "XML-XPathEngine", "XML-XQL", "XML-XSLT", "XML-XUpdate-LibXML", "XMLRPC-Lite", "XS-Object-Magic", "XXX", "YAML-LibYAML", "YAML-PP", "YAML-Syck", "YAML-Tiny", "YAML", "ZMQ-Constants", "aliased", "asa", "autobox", "autovivification", "bareword-filehandles", "boolean", "capitalization", "common-sense", "constant-boolean", "constant-defer", "enum", "forks", "glib-perl", "gnome2-canvas", "gnome2-wnck", "go-perl", "gtk2-ex-formfactory", "gtk2-gladexml", "gtk2-trayicon", "gtk2-traymanager", "indirect", "libintl-perl", "librg-utils-perl", "libwww-perl", "libxml-perl", "local-lib", "maybe", "mecab-perl", "mime-construct", "multidimensional", "namespace-autoclean", "namespace-clean", "pcsc-perl", "perl-headers", "perl-ldap", "perl-mozldap", "prefork", "rename", "self", "strictures", "syntax", "tkispell", "txt2html", "XString"], "dev-php": ["File_Iterator", "PEAR-Archive_Tar", "PEAR-Auth_SASL", "PEAR-Cache", "PEAR-Cache_Lite", "PEAR-Console_CommandLine", "PEAR-Console_Getargs", "PEAR-Console_Getopt", "PEAR-Console_Table", "PEAR-Crypt_CHAP", "PEAR-Crypt_GPG", "PEAR-Crypt_HMAC", "PEAR-Crypt_HMAC2", "PEAR-DB", "PEAR-DB_DataObject", "PEAR-Date", "PEAR-Exception", "PEAR-File", "PEAR-File_Archive", "PEAR-File_Find", "PEAR-File_Fortune", "PEAR-File_Gettext", "PEAR-File_SMBPasswd", "PEAR-HTML_AJAX", "PEAR-HTML_CSS", "PEAR-HTML_Common", "PEAR-HTML_Common2", "PEAR-HTML_Javascript", "PEAR-HTML_QuickForm2", "PEAR-HTML_Table", "PEAR-HTML_Table_Matrix", "PEAR-HTML_Template_Flexy", "PEAR-HTML_Template_Sigma", "PEAR-HTTP", "PEAR-HTTP_Header", "PEAR-HTTP_Request2", "PEAR-HTTP_Session2", "PEAR-Image_Color2", "PEAR-Image_GraphViz", "PEAR-Image_IPTC", "PEAR-Image_Text", "PEAR-Log", "PEAR-MDB", "PEAR-MDB2", "PEAR-MDB2_Driver_mssql", "PEAR-MDB2_Driver_mysqli", "PEAR-MDB2_Driver_oci8", "PEAR-MDB2_Driver_pgsql", "PEAR-MIME_Type", "PEAR-Mail", "PEAR-Mail_Mime", "PEAR-Mail_mimeDecode", "PEAR-Math_BigInteger", "PEAR-Net_DNS", "PEAR-Net_DNS2", "PEAR-Net_DNSBL", "PEAR-Net_IDNA2", "PEAR-Net_IPv4", "PEAR-Net_IPv6", "PEAR-Net_LDAP2", "PEAR-Net_POP3", "PEAR-Net_Ping", "PEAR-Net_SMTP", "PEAR-Net_Sieve", "PEAR-Net_SmartIRC", "PEAR-Net_Socket", "PEAR-Net_Traceroute", "PEAR-Net_URL", "PEAR-Net_URL2", "PEAR-Net_UserAgent_Detect", "PEAR-Numbers_Words", "PEAR-OLE", "PEAR-PEAR", "PEAR-PEAR_PackageFileManager", "PEAR-PEAR_PackageFileManager2", "PEAR-PEAR_PackageFileManager_Plugins", "PEAR-PHP_Beautifier", "PEAR-PHP_Debug", "PEAR-Pager", "PEAR-Services_JSON", "PEAR-Services_TinyURL", "PEAR-Services_W3C_CSSValidator", "PEAR-Spreadsheet_Excel_Writer", "PEAR-Structures_Graph", "PEAR-System_Command", "PEAR-Text_CAPTCHA", "PEAR-Text_CAPTCHA_Numeral", "PEAR-Text_Figlet", "PEAR-Text_Highlighter", "PEAR-Text_Password", "PEAR-Text_Wiki", "PEAR-Text_Wiki_BBCode", "PEAR-Text_Wiki_Mediawiki", "PEAR-Validate", "PEAR-Var_Dump", "PEAR-VersionControl_SVN", "PEAR-XML_Parser", "PEAR-XML_RSS", "PEAR-XML_Serializer", "PEAR-XML_Util", "PHPMailer", "PHP_CodeCoverage", "PHP_CodeSniffer", "PHP_Timer", "PHP_TokenStream", "SabreAMF", "Text_Template", "YAML", "adodb", "agavi", "awl", "ca-bundle", "cli-prompt", "composer", "cphplib", "doctrine-instantiator", "doctrine", "fedora-autoloader", "geos-php", "igbinary", "jpgraph", "json-schema", "jsonlint", "libchart", "libvirt-php", "maxmind-db-reader", "metadata-minifier", "mmslib", "mockery", "myclabs-deepcopy", "onphp", "pear", "pecl-amqp", "pecl-apcu", "pecl-apcu_bc", "pecl-crack", "pecl-dbase", "pecl-dio", "pecl-eio", "pecl-event", "pecl-geoip", "pecl-gnupg", "pecl-http", "pecl-imagick", "pecl-lzf", "pecl-mailparse", "pecl-mcrypt", "pecl-memcache", "pecl-memcached", "pecl-mongodb", "pecl-ncurses", "pecl-oauth", "pecl-pam", "pecl-parallel", "pecl-propro", "pecl-ps", "pecl-radius", "pecl-raphf", "pecl-redis", "pecl-rrd", "pecl-ssh2", "pecl-stomp", "pecl-taint", "pecl-timezonedb", "pecl-translit", "pecl-uploadprogress", "pecl-uuid", "pecl-xdiff", "pecl-yaml", "pecl-yaz", "pecl-zmq", "phar-io-manifest", "phar-io-version", "phar-utils", "phing", "php-codebrowser", "php-redmine-api", "phpDocumentor", "phpcov", "phpdepend", "phpdocumentor-reflection-common", "phpdocumentor-reflection-docblock", "phpdocumentor-type-resolver", "phpmd", "phpspec-prophecy", "phptal", "phpunit-mock-objects", "phpunit", "psr-log", "reactphp-promise", "realpath_turbo", "recaptcha", "scrypt", "sebastian-code-unit-reverse-lookup", "sebastian-comparator", "sebastian-diff", "sebastian-environment", "sebastian-exporter", "sebastian-global-state", "sebastian-object-enumerator", "sebastian-object-reflector", "sebastian-recursion-context", "sebastian-resource-operations", "sebastian-type", "sebastian-version", "securimage", "semver", "simpletest", "smarty", "spdx-licenses", "stringparser_bbcode", "swoole-async", "swoole", "symfony-config", "symfony-console", "symfony-dependency-injection", "symfony-event-dispatcher", "symfony-filesystem", "symfony-finder", "symfony-process", "symfony-yaml", "tcpdf", "theseer-Autoload", "theseer-DirectoryScanner", "theseer-tokenizer", "twig", "webmozart-assert", "xdebug-client", "xdebug-handler", "xdebug", "xhprof", "zetacomponents-Base", "zetacomponents-ConsoleTools"], "dev-python": ["3to2", "APScheduler", "Babel", "BitVector", "CppHeaderParser", "Faker", "GitPython", "GridDataFormats", "MechanicalSoup", "PyContracts", "PyECLib", "PyGithub", "PyPDF2", "PyQt-builder", "PyQt5-sip", "PyQt5", "PyQtWebEngine", "PyRSS2Gen", "PySDL2", "PySensors", "PySocks", "PyUtilib", "QtPy", "Rx", "SaltTesting", "absl-py", "abydos", "adblock", "aesara", "agate-dbf", "agate-excel", "agate-sql", "agate", "aiodns", "aiofiles", "aiohttp-cors", "aiohttp-jinja2", "aiohttp-socks", "aiohttp", "aiorpcX", "aiosmtpd", "alabaster", "alagitpull", "alembic", "ament_package", "amodem", "aniso8601", "ansi", "ansi2html", "ansible-runner", "ansicolor", "anyio", "anyqt", "apipkg", "apispec", "appdirs", "apsw", "argcomplete", "argh", "argon2-cffi", "argparse-manpage", "arpeggio", "arrow", "asgiref", "asn1crypto", "asteval", "astor", "astroid", "asttokens", "astunparse", "async-lru", "async_generator", "async_timeout", "asyncstdlib", "atomicwrites", "atpublic", "attrs", "audioread", "authheaders", "authres", "autobahn", "automat", "autopep8", "autoprop", "aws-sam-translator", "aws-xray-sdk-python", "awxkit", "babelfish", "backcall", "backports-entry_points_selectable", "backports-tempfile", "backports-weakref", "backports-zoneinfo", "backrefs", "bandit", "bareos", "bashate", "basho-erlastic", "bcrypt", "beagle", "beautifulsoup", "beniget", "bert", "betamax-matchers", "betamax", "bibtexparser", "binaryornot", "bitarray", "bitstring", "black", "bleach", "blessed", "blessings", "blinker", "blockdiag", "blosc", "bluelet", "blurb", "booleanOperations", "boto", "boto3", "botocore", "bottle", "bottleneck", "bpython", "bracex", "braintree", "breathe", "brotlicffi", "brython", "bsddb3", "cached-property", "cachelib", "cachetools", "cairocffi", "cangjie", "capturer", "carbon", "case", "casttube", "catkin_pkg", "cattrs", "cbor", "cbor2", "cerberus", "certifi", "cffi", "cfgv", "cftime", "cgroup-utils", "chai", "chameleon", "characteristic", "chardet", "charset_normalizer", "chart-studio", "cheetah-docs", "cheetah3", "cheroot", "cherrypy", "chump", "citeproc-py", "cjkwrap", "clang-python", "cleo", "cli_helpers", "click-default-group", "click-help-colors", "click-log", "click-plugins", "click-threading", "click", "cliff", "clikit", "clint", "cloudpickle", "cloudscraper", "cmd2", "collective-checkdocs", "colorama", "colorclass", "coloredlogs", "colorlog", "colorspacious", "commentjson", "commonmark", "configargparse", "configclass", "configobj", "configshell-fb", "confuse", "consonance", "constantly", "construct", "cookies", "coreapi", "coreschema", "cov-core", "coverage", "cppy", "crashtest", "crcmod", "croniter", "cryptography", "css-parser", "cssselect", "cssselect2", "cssutils", "csvkit", "ctypescrypto", "curtsies", "cvxopt", "cwcwidth", "cx_Freeze", "cycler", "cython-test-exception-raiser", "cython", "daemonize", "dask", "dbfread", "dbus-python", "dbutils", "ddt", "debtcollector", "decorator", "deepmerge", "defcon", "defusedxml", "denonavr", "deprecated", "deprecation", "dictdiffer", "dicttoxml", "diff-match-patch", "dill", "discogs-client", "diskcache", "dissononce", "distlib", "distro", "dj-database-url", "dj-email-url", "dj-search-url", "django-allauth", "django-appconf", "django-auth-ldap", "django-cache-url", "django-cacheops", "django-compressor", "django-configurations", "django-cors-headers", "django-debug-toolbar", "django-extensions", "django-filter", "django-gravatar2", "django-haystack", "django-js-asset", "django-mptt", "django-otp", "django-pglocks", "django-picklefield", "django-prometheus", "django-q", "django-redis", "django-rq", "django-sortedm2m", "django-tables2", "django-tagging", "django-taggit-serializer", "django-taggit", "django-timezone-field", "django", "django_polymorphic", "djangorestframework", "dkimpy", "dns-lexicon", "dnspython", "doc8", "docker-py", "dockerpty", "docopt", "doctest-ignore-unicode", "docutils-glep", "docutils", "dogpile-cache", "doit-py", "doit", "dominate", "doublex-expects", "doublex", "drf-yasg", "duecredit", "dulwich", "easy-thumbnails", "easyprocess", "ecdsa", "editdistance-s", "editorconfig-core-py", "elasticsearch-py", "elementpath", "emcee", "emoji", "empy", "enrich", "entrypoint2", "entrypoints", "environs", "enzyme", "eradicate", "errorhandler", "et_xmlfile", "eventlet", "ewmh", "exam", "exdown", "execnet", "executing", "expects", "extras", "eyeD3", "fakeredis", "falcon", "fasteners", "fastimport", "fastjsonschema", "feedgenerator", "feedparser", "fido2", "fields", "filelock", "filetype", "findimports", "fitsio", "fixtures", "flake8-import-order", "flake8-polyfill", "flake8", "flaky", "flask-api", "flask-assets", "flask-babel", "flask-babelex", "flask-compress", "flask-cors", "flask-debug", "flask-gravatar", "flask-htmlmin", "flask-login", "flask-mail", "flask-migrate", "flask-mongoengine", "flask-nav", "flask-paginate", "flask-paranoid", "flask-principal", "flask-restful", "flask-script", "flask-security", "flask-sphinx-themes", "flask-sqlalchemy", "flask-wtf", "flask", "flatbuffers", "fleep", "flexmock", "flit", "flit_core", "flufl-bounce", "flufl-i18n", "flufl-lock", "fonttools", "fqdn", "freezegun", "fritzconnection", "frozen-flask", "fs", "fsspec", "fudge", "funcparserlib", "funcy", "fuse-python", "fusepy", "future", "fuzzywuzzy", "gast", "gcs-oauth2-boto-plugin", "genshi", "genson", "genty", "geoip-python", "gevent-websocket", "gevent", "geventhttpclient", "ghp-import", "git-review", "gitdb", "github3", "glooey", "gmpy", "google-api-core", "google-api-python-client", "google-apitools", "google-auth-httplib2", "google-auth-oauthlib", "google-auth", "google-pasta", "google-reauth-python", "googleapis-common-protos", "graph-tool", "graphviz", "greenlet", "greenstalk", "grpcio-testing", "grpcio-tools", "grpcio", "gsd", "gssapi", "gst-python", "guessit", "guzzle_sphinx_theme", "h11", "h5py", "hacking", "happybase", "hcloud-python", "helpdev", "hiredis", "hpack", "html2text", "html5-parser", "html5lib", "httmock", "http-parser", "httpauth", "httpbin", "httpcore", "httplib2", "httpretty", "httpx", "huawei-lte-api", "humanfriendly", "humanize", "hvac", "hyper-h2", "hyperframe", "hyperlink", "hypothesis", "icalendar", "identify", "idna", "ifaddr", "ijson", "imageio", "imagesize", "imapclient", "iminuit", "immutables", "importlib_metadata", "importlib_resources", "imread", "incremental", "indexed_gzip", "inflect", "inflection", "influxdb", "iniconfig", "iniparse", "intelhex", "intervaltree", "intreehooks", "iocapture", "ioflo", "ipaddr", "ipdb", "ipy", "ipykernel", "ipyparallel", "ipython", "ipython_genutils", "ipywidgets", "irc", "iso8601", "isodate", "isort", "itsdangerous", "itypes", "jaraco-classes", "jaraco-collections", "jaraco-context", "jaraco-envs", "jaraco-functools", "jaraco-itertools", "jaraco-logging", "jaraco-packaging", "jaraco-path", "jaraco-stream", "jaraco-text", "jc", "jdcal", "jedi", "jeepney", "jellyfish", "jikanpy", "jinja", "jinja2-time", "jinja2_pluralize", "jmespath", "joblib", "josepy", "jq", "js2py", "jsmin", "json-rpc", "jsondiff", "jsonext", "jsonmerge", "jsonpatch", "jsonpickle", "jsonpointer", "jsonref", "jsonrpclib", "jsonschema", "jsonxs", "junit-xml", "jupyter", "jupyter_client", "jupyter_console", "jupyter_core", "jupyter_packaging", "jupyter_server", "jupyter_server_mathjax", "jupyterlab_pygments", "jwcrypto", "kafka-python", "kaitaistruct", "kaptan", "kazoo", "kconfiglib", "keep", "keyring", "keystoneauth", "kiwisolver", "klein", "kombu", "lark-parser", "latexcodec", "lazr-config", "lazr-delegates", "lazy-object-proxy", "lcdproc", "ldap3", "leather", "lesscpy", "libarchive-c", "libcloud", "liblarch", "libnacl", "libpillowfight", "libpy_simdjson", "libsass", "libtmux", "libvirt-python", "line_profiler", "lit", "livereload", "llfuse", "llvmlite", "lmdb", "lmfit", "locket", "lockfile", "logbook", "logfury", "loguru", "logutils", "loky", "lunr", "lxml", "lz4", "m2crypto", "m2r", "mako", "mamba", "mando", "manuel", "markdown", "markdown2", "markups", "markupsafe", "marshmallow", "matplotlib-inline", "matplotlib", "matterhook", "mccabe", "mdx_gh_links", "mecab-python", "mechanize", "mediafile", "memory_profiler", "mergedeep", "mergedict", "metakernel", "micawber", "mimerender", "minidb", "minimock", "miniupnpc", "misaka", "mistune", "mkautodoc", "mkdocs-bootstrap", "mkdocs-bootswatch", "mkdocs-git-revision-date-localized-plugin", "mkdocs-material-extensions", "mkdocs-material", "mkdocs-minify-plugin", "mkdocs-redirects", "mkdocs", "mkdocs_pymdownx_material_extras", "mmtf-python", "mock", "mongoengine", "mongomock", "more-itertools", "moto", "mpdlcd", "mpi4py", "mpmath", "msgpack", "mss", "multidict", "munch", "munkres", "mygpoclient", "mypy", "mypy_extensions", "mysql-connector-python", "mysqlclient", "nagiosplugin", "namespace-google", "namespace-paste", "namespace-repoze", "namespace-ruamel", "namespace-sphinxcontrib", "namespace-zope", "natsort", "nautilus-python", "nbclient", "nbconvert", "nbdime", "nbformat", "nbsphinx", "nbval", "ndg-httpsclient", "neovim-remote", "nest_asyncio", "netaddr", "netcdf4-python", "netifaces", "networkx", "nltk-data", "nltk", "nnpy", "node-semver", "nodeenv", "nose-exclude", "nose-random", "nose", "nose2", "nose_fixes", "nose_warnings_filters", "notebook", "notify2", "nototools", "ntlm-auth", "ntplib", "nuitka", "numexpr", "numpy", "numpydoc", "oauth2", "oauth2client", "oauthlib", "objgraph", "oct2py", "octave_kernel", "odfpy", "olefile", "onkyo-eiscp", "openpyxl", "openstackdocstheme", "openstacksdk", "opt-einsum", "ordered-set", "os-client-config", "os-service-types", "osc-lib", "oset", "oslo-config", "oslo-context", "oslo-i18n", "oslo-log", "oslo-serialization", "oslo-utils", "oslotest", "osrf_pycommon", "outcome", "ovs", "owslib", "packaging", "pafy", "paho-mqtt", "pallets-sphinx-themes", "pandas-datareader", "pandas", "pandocfilters", "parallax", "parameterized", "paramiko", "parsedatetime", "parso", "partd", "parver", "passlib", "paste", "pastedeploy", "pastel", "patch-ng", "path-and-address", "path-py", "pathspec", "pathtools", "patsy", "pbkdf2", "pbr", "pdfrw", "pdoc3", "pebble", "pecan", "peewee", "pelican-minify", "pendulum", "pexpect", "pgspecial", "pgzero", "phonenumbers", "phply", "picklemagic", "pickleshare", "pid", "piexif", "pika", "pikepdf", "pilkit", "pillow", "pip", "pipenv", "pipfile", "pivy", "pkgconfig", "pkginfo", "platformdirs", "plotly-geo", "plotly", "pluggy", "pluginbase", "plumbum", "ply", "plyr", "plyvel", "pmw", "pocketlint", "pockets", "podcastparser", "polib", "polygon", "pony", "pooch", "portend", "poyo", "precis-i18n", "pretend", "pretty-yaml", "prettytable", "priority", "process-tests", "progress", "progressbar", "progressbar2", "prometheus_client", "prompt_toolkit", "protobuf-python", "prov", "pslab-python", "psutil", "psycopg", "ptvsd", "ptyprocess", "publicsuffix", "pudb", "pulsectl", "pushbullet-py", "pweave", "py-amqp", "py-cpuinfo", "py-gfm", "py-ubjson", "py", "pyClamd", "pyFFTW", "pyGPG", "pyacoustid", "pyaes", "pyalsa", "pyamg", "pyasn1-modules", "pyasn1", "pyatspi", "pyaudio", "pybind11", "pybluez", "pybtex-docutils", "pybtex", "pycairo", "pycapnp", "pycares", "pycdio", "pychm", "pychromecast", "pychroot", "pyclipper", "pycodestyle", "pycollada", "pycountry", "pycparser", "pycryptodome", "pycson", "pycuda", "pycups", "pycurl-requests", "pycurl", "pycxx", "pydantic", "pydata-sphinx-theme", "pydbus", "pydecomp", "pydiff", "pydispatcher", "pydns", "pydocstyle", "pydot", "pydotplus", "pydyf", "pyelftools", "pyenchant", "pyfakefs", "pyfeyn", "pyflakes", "pyformance", "pyftpdlib", "pygal", "pygame", "pygame_sdl2", "pyghmi", "pygit2", "pyglet", "pygments-github-lexers", "pygments", "pygobject", "pygpgme", "pygraphviz", "pygresql", "pyh2o", "pyhamcrest", "pyhcl", "pyicu", "pyilmbase", "pyinotify", "pyjsparser", "pyjwt", "pykerberos", "pykka", "pykwalify", "pylama", "pylast", "pylatex", "pylev", "pylibacl", "pylibmc", "pylint", "pylru", "pyls-spyder", "pymad", "pymdown-extensions", "pymdown-lexers", "pymdstat", "pymediainfo", "pymetar", "pymilter", "pymongo", "pymountboot", "pymssql", "pymysql", "pynacl", "pynest2d", "pynput", "pynvim", "pyocr", "pyopencl", "pyopengl", "pyopengl_accelerate", "pyopenssl", "pyotherside", "pyotp", "pypam", "pyparsing", "pyparted", "pypax", "pypcap", "pypeg2", "pyperclip", "pyphen", "pypiserver", "pypng", "pyprof2calltree", "pyproj", "pyproject2setuppy", "pypugjs", "pypy-exe-bin", "pypy-exe", "pypy", "pypy3-exe-bin", "pypy3-exe", "pypy3", "pyqrcode", "pyqt-distutils", "pyqtgraph", "pyquery", "pyre2", "pyrfc3339", "pyro", "pyroute2", "pyrqlite", "pyrsistent", "pyscard", "pyscreenshot", "pyserial", "pyside2-tools", "pyside2", "pysimdjson", "pysmi", "pysnmp-mibs", "pysnmp", "pysol_cards", "pyspectrum2", "pyspelling", "pyspf", "pysrt", "pysvg", "pysvn", "pytables", "pytaglib", "pyte", "pytest-aiohttp", "pytest-asyncio", "pytest-cache", "pytest-cov", "pytest-datadir", "pytest-describe", "pytest-django", "pytest-env", "pytest-expect", "pytest-faulthandler", "pytest-fixture-config", "pytest-flake8", "pytest-flakes", "pytest-forked", "pytest-freezegun", "pytest-helpers-namespace", "pytest-html", "pytest-httpbin", "pytest-httpx", "pytest-lazy-fixture", "pytest-localftpserver", "pytest-localserver", "pytest-metadata", "pytest-mock", "pytest-ordering", "pytest-plus", "pytest-pylint", "pytest-qt", "pytest-regressions", "pytest-rerunfailures", "pytest-salt-factories", "pytest-salt", "pytest-services", "pytest-shutil", "pytest-subtesthack", "pytest-subtests", "pytest-tempdir", "pytest-testinfra", "pytest-timeout", "pytest-trio", "pytest-verbose-parametrize", "pytest-virtualenv", "pytest-xdist", "pytest-xprocess", "pytest-xvfb", "pytest", "python-augeas", "python-axolotl-curve25519", "python-axolotl", "python-bugzilla", "python-caja", "python-ceilometerclient", "python-cinderclient", "python-cstruct", "python-ctags", "python-daemon", "python-dateutil", "python-debian", "python-discid", "python-distutils-extra", "python-docs", "python-dotenv", "python-editor", "python-efl", "python-email-validator", "python-engineio", "python-etcd", "python-evdev", "python-gammu", "python-gflags", "python-glanceclient", "python-gnupg", "python-iptables", "python-ironicclient", "python-jose", "python-jwt", "python-keystoneclient", "python-keyutils", "python-ldap", "python-levenshtein", "python-lhafile", "python-libevdev", "python-linux-procfs", "python-lsp-black", "python-lsp-jsonrpc", "python-lsp-server", "python-ly", "python-lzo", "python-magic", "python-markdown-math", "python-memcached", "python-mimeparse", "python-mpd", "python-mpv", "python-nbxmpp", "python-netlink", "python-neutronclient", "python-novaclient", "python-openstackclient", "python-poppler-qt5", "python-redmine", "python-sense-hat", "python-slip", "python-slugify", "python-socks", "python-sshpubkeys", "python-stdnum", "python-swiftclient", "python-systemd", "python-utils", "python-varlink", "python-vlc", "python-xlib", "python-xmlsec", "python-xmp-toolkit", "python-zipstream", "python3-lxc", "python3-openid", "python3-saml", "python_orocos_kdl", "pythondialog", "pythran", "pytidylib", "pytimeparse", "pytools", "pytrie", "pytz", "pytzdata", "pyu2f", "pyudev", "pyusb", "pyvirtualdisplay", "pywavelets", "pywinrm", "pyx", "pyxDamerauLevenshtein", "pyxattr", "pyxdg", "pyyaml", "pyyaml_env_tag", "pyzbar", "pyzmq", "pyzotero", "qdarkstyle", "qrcode", "qscintilla-python", "qstylizer", "qtawesome", "qtconsole", "qtsass", "quantities", "quex", "radon", "raet", "random2", "rarfile", "ratelimit", "rcssmin", "rdflib", "re-assert", "readme_renderer", "readthedocs-sphinx-ext", "rebulk", "recommonmark", "redis-py", "reedsolomon", "reflink", "regex", "rencode", "reno", "reportlab", "repoze-lru", "repoze-sphinx-autointerface", "requests-cache", "requests-credssp", "requests-file", "requests-futures", "requests-kerberos", "requests-mock", "requests-ntlm", "requests-oauthlib", "requests-toolbelt", "requests-unixsocket", "requests", "requests_download", "requests_pkcs12", "requestsexceptions", "resolvelib", "responses", "restructuredtext-lint", "retry-decorator", "retrying", "rfc3339-validator", "rfc3986-validator", "rfc3986", "rfc3987", "rich", "rjsmin", "robot-detection", "roman", "rope", "ropemode", "rosdistro", "rospkg", "routes", "rply", "rpy", "rpyc", "rq", "rsa", "rst-linker", "rtimulib", "rtslib-fb", "ruamel-std-pathlib", "ruamel-yaml-clib", "ruamel-yaml", "s3transfer", "sabyenc", "sarge", "scandir", "scikit-build", "scipy", "scripttest", "scrypt", "seaborn", "secretstorage", "selenium", "semantic_version", "semver", "send2trash", "sentinels", "sentry-sdk", "serpent", "serverfiles", "service_identity", "setproctitle", "setuptools-git", "setuptools", "setuptools_rust", "setuptools_scm", "setuptools_scm_git_archive", "setuptools_trial", "sexpdata", "sgmllib3k", "sh", "shiboken2", "signature_dispatch", "simplebayes", "simpleeval", "simplegeneric", "simplejson", "simplekml", "simplesoapy", "simplespectral", "simpy", "sip", "six", "slackclient", "slimit", "slixmpp", "smartypants", "smmap", "snakeoil", "snaketrace", "snappy", "snapshottest", "sniffio", "snowballstemmer", "socketio-client-nexus", "socketio-client", "socketpool", "sortedcontainers", "soupsieve", "sparql-wrapper", "speaklater", "speg", "sphinx-aiohttp-theme", "sphinx-autodoc-typehints", "sphinx-bootstrap-theme", "sphinx-epytext", "sphinx-gallery", "sphinx-issues", "sphinx-jinja", "sphinx-multiversion", "sphinx-notfound-page", "sphinx-panels", "sphinx-prompt", "sphinx-py3doc-enhanced-theme", "sphinx-tabs", "sphinx-testing", "sphinx", "sphinx_ansible_theme", "sphinx_celery", "sphinx_lv2_theme", "sphinx_rtd_theme", "sphinx_selective_exclude", "sphinxcontrib-applehelp", "sphinxcontrib-asyncio", "sphinxcontrib-autoprogram", "sphinxcontrib-bibtex", "sphinxcontrib-blockdiag", "sphinxcontrib-devhelp", "sphinxcontrib-doxylink", "sphinxcontrib-github-alt", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-log_cabinet", "sphinxcontrib-newsfeed", "sphinxcontrib-programoutput", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "sphinxcontrib-spelling", "sphinxcontrib-trio", "sphinxcontrib-websupport", "sphobjinv", "spur", "spyder-kernels", "spyder-line-profiler", "spyder-memory-profiler", "spyder-notebook", "spyder-terminal", "spyder-unittest", "spyder-vim", "spyder", "sqlalchemy-migrate", "sqlalchemy-rqlite", "sqlalchemy", "sqlparse", "ssh2-python", "sshtunnel", "ssl-fetch", "stapler", "statsd", "statsmodels", "stdio-mgr", "stestr", "stevedore", "stomp-py", "strict-rfc3339", "stripe", "subprocess-tee", "subunit", "suds", "sure", "svg-path", "svgwrite", "swagger-spec-validator", "sybil", "symengine", "sympy", "tabulate", "tagpy", "tappy", "tblib", "tekore", "tempita", "tempora", "tenacity", "termcolor", "terminado", "terminaltables", "test_server", "testfixtures", "testpath", "testresources", "testscenarios", "testtools", "text-unidecode", "textdistance", "texttable", "textx", "theano-pymc", "theano", "threadpoolctl", "three-merge", "thrift", "thriftpy2", "thunarx-python", "tikzplotlib", "timeout-decorator", "tinycss", "tinycss2", "tld", "tldextract", "toml", "tomli", "tomlkit", "toolz", "towncrier", "tox", "tqdm", "traitlets", "transitions", "translate-toolkit", "tree-sitter", "treq", "trio-asyncio", "trio", "trustme", "tubes", "tvdb_api", "twine", "twisted", "twython", "txAMQP", "txaio", "txgithub", "txrequests", "typed-ast", "typing-extensions", "typogrify", "tzlocal", "ubelt", "ujson", "uncertainties", "unicodecsv", "unidecode", "unidiff", "unittest-mixins", "unittest-or-fail", "uranium", "urdf_parser_py", "uritemplate", "url-normalize", "urlgrabber", "urllib3", "urwid", "urwidtrees", "utidylib", "uvicorn", "uvloop", "validators", "vcrpy", "vcstools", "vdf", "vdirsyncer", "vecrec", "verboselogs", "versioneer", "vine", "virtualenv-clone", "virtualenv", "virtualenvwrapper", "visitor", "vncdotool", "vobject", "voluptuous", "vpython", "waitress", "wand", "warlock", "watchdog", "wcmatch", "wcwidth", "weasyprint", "webassets", "webcolors", "webencodings", "webob", "websocket-client", "websockets", "websockify", "webtest", "werkzeug", "whatever", "wheel", "whichcraft", "whisper", "whoosh", "widgetsnbextension", "wrapt", "ws4py", "wsaccel", "wsgiproxy2", "wsproto", "wstools", "wtforms", "wurlitzer", "www-authenticate", "wxpython", "xapp", "xarray", "xcffib", "xdoctest", "xlrd", "xlsxwriter", "xlwt", "xmlschema", "xmltodict", "xvfbwrapper", "xxhash", "yamlpath", "yapf", "yappi", "yapsy", "yarl", "yaswfp", "zc-lockfile", "zconfig", "zeep", "zeroconf", "zipp", "zope-component", "zope-configuration", "zope-deprecation", "zope-event", "zope-exceptions", "zope-i18nmessageid", "zope-interface", "zope-schema", "zope-testing", "zope-testrunner", "zstandard", "zstd", "zxcvbn", "typeguard", "aioresponses", "aioredis", "ansible-pygments", "backoff", "cfn-lint", "podman-py", "python-dbusmock", "python-fcl", "python-musicbrainzngs", "u-msgpack-python", "debugpy", "autopage"], "dev-qt": ["assistant", "designer", "linguist-tools", "linguist", "pixeltool", "qdbus", "qdbusviewer", "qdoc", "qt-creator", "qt-docs", "qt3d", "qtbluetooth", "qtcharts", "qtchooser", "qtconcurrent", "qtcore", "qtdatavis3d", "qtdbus", "qtdeclarative", "qtdiag", "qtgamepad", "qtgraphicaleffects", "qtgui", "qthelp", "qtimageformats", "qtlocation", "qtlockedfile", "qtmultimedia", "qtnetwork", "qtnetworkauth", "qtopengl", "qtpaths", "qtplugininfo", "qtpositioning", "qtprintsupport", "qtquickcontrols", "qtquickcontrols2", "qtquicktimeline", "qtscript", "qtscxml", "qtsensors", "qtserialbus", "qtserialport", "qtsingleapplication", "qtspeech", "qtsql", "qtstyleplugins", "qtsvg", "qttest", "qttranslations", "qtvirtualkeyboard", "qtwayland", "qtwebchannel", "qtwebengine", "qtwebkit", "qtwebsockets", "qtwebview", "qtwidgets", "qtx11extras", "qtxml", "qtxmlpatterns"], "dev-ros": ["actionlib", "actionlib_msgs", "actionlib_tools", "actionlib_tutorials", "amcl", "ament_cmake_copyright", "ament_cmake_core", "ament_cmake_cppcheck", "ament_cmake_cpplint", "ament_cmake_export_definitions", "ament_cmake_export_dependencies", "ament_cmake_export_include_directories", "ament_cmake_export_interfaces", "ament_cmake_export_libraries", "ament_cmake_export_link_flags", "ament_cmake_export_targets", "ament_cmake_gmock", "ament_cmake_gtest", "ament_cmake_include_directories", "ament_cmake_libraries", "ament_cmake_lint_cmake", "ament_cmake_pytest", "ament_cmake_python", "ament_cmake_ros", "ament_cmake_target_dependencies", "ament_cmake_test", "ament_cmake_uncrustify", "ament_cmake_version", "ament_cmake_xmllint", "ament_copyright", "ament_cppcheck", "ament_cpplint", "ament_flake8", "ament_lint", "ament_lint_auto", "ament_lint_cmake", "ament_pep257", "ament_uncrustify", "ament_xmllint", "angles", "audio_capture", "audio_common_msgs", "audio_play", "base_local_planner", "bond", "bondcpp", "bondpy", "calibration_estimation", "calibration_launch", "calibration_msgs", "calibration_setup_helper", "camera_calibration", "camera_calibration_parsers", "camera_info_manager", "carrot_planner", "class_loader", "clear_costmap_recovery", "cmake_modules", "collada_parser", "collada_urdf", "combined_robot_hw", "combined_robot_hw_tests", "compressed_depth_image_transport", "compressed_image_transport", "console_bridge_vendor", "control_msgs", "control_toolbox", "controller_interface", "controller_manager", "controller_manager_msgs", "controller_manager_tests", "convex_decomposition", "costmap_2d", "cpp_common", "cv_bridge", "depth_image_proc", "depthimage_to_laserscan", "diagnostic_aggregator", "diagnostic_analysis", "diagnostic_common_diagnostics", "diagnostic_msgs", "diagnostic_updater", "driver_base", "dwa_local_planner", "dynamic_reconfigure", "eigen_conversions", "eigen_stl_containers", "fake_localization", "filters", "gazebo_dev", "gazebo_msgs", "gazebo_plugins", "gazebo_ros", "gazebo_ros_control", "gencpp", "geneus", "genlisp", "genmsg", "gennodejs", "genpy", "geodesy", "geographic_msgs", "geometric_shapes", "geometry_msgs", "global_planner", "gmapping", "hardware_interface", "hector_compressed_map_transport", "hector_geotiff", "hector_geotiff_launch", "hector_geotiff_plugins", "hector_imu_attitude_to_tf", "hector_imu_tools", "hector_map_server", "hector_map_tools", "hector_mapping", "hector_marker_drawing", "hector_nav_msgs", "hector_pose_estimation", "hector_pose_estimation_core", "hector_slam_launch", "hector_trajectory_server", "image_cb_detector", "image_geometry", "image_proc", "image_publisher", "image_rotate", "image_transport", "image_view", "imu_complementary_filter", "imu_filter_madgwick", "imu_processors", "imu_transformer", "interactive_marker_tutorials", "interactive_markers", "interval_intersection", "ivcon", "joint_limits_interface", "joint_state_publisher", "joint_state_publisher_gui", "joint_states_settler", "kdl_conversions", "kdl_parser", "kdl_parser_py", "laser_assembler", "laser_cb_detector", "laser_filters", "laser_geometry", "laser_proc", "libmavconn", "librviz_tutorial", "map_msgs", "map_server", "mavlink-gbp-release", "mavros", "mavros_extras", "mavros_msgs", "media_export", "message_filters", "message_generation", "message_runtime", "message_to_tf", "mk", "monocam_settler", "move_base", "move_base_msgs", "move_slow_and_clear", "moveit_msgs", "nav_core", "nav_msgs", "navfn", "nmea_msgs", "nodelet", "nodelet_topic_tools", "nodelet_tutorial_math", "object_recognition_msgs", "octomap_msgs", "octomap_ros", "opencv_apps", "opencv_tests", "openni2_camera", "openni2_launch", "openslam_gmapping", "pcl_conversions", "pcl_msgs", "pcl_ros", "pluginlib", "pluginlib_tutorials", "poco_vendor", "pointcloud_to_laserscan", "polled_camera", "pr2_dashboard_aggregator", "pr2_description", "pr2_machine", "pr2_msgs", "python_cmake_module", "python_qt_binding", "qt_dotgraph", "qt_gui", "qt_gui_app", "qt_gui_cpp", "qt_gui_py_common", "random_numbers", "realtime_tools", "resource_retriever", "rgbd_launch", "robot_localization", "robot_pose_ekf", "robot_pose_publisher", "robot_state_publisher", "ros_environment", "rosapi", "rosauth", "rosbag", "rosbag_migration_rule", "rosbag_storage", "rosbash", "rosboost_cfg", "rosbridge_library", "rosbridge_msgs", "rosbridge_server", "rosbuild", "rosclean", "rosconsole", "rosconsole_bridge", "roscpp", "roscpp_serialization", "roscpp_traits", "roscpp_tutorials", "roscreate", "rosdiagnostic", "rosgraph", "rosgraph_msgs", "roslang", "roslaunch", "roslib", "roslint", "roslisp", "roslz4", "rosmake", "rosmaster", "rosmsg", "rosnode", "rosout", "rospack", "rosparam", "rospy", "rospy_tutorials", "rosserial_arduino", "rosserial_client", "rosserial_embeddedlinux", "rosserial_msgs", "rosserial_python", "rosserial_server", "rosserial_tivac", "rosserial_windows", "rosserial_xbee", "rosservice", "rostest", "rostime", "rostopic", "rosunit", "roswtf", "rotate_recovery", "rqt_action", "rqt_bag", "rqt_bag_plugins", "rqt_console", "rqt_controller_manager", "rqt_dep", "rqt_graph", "rqt_gui", "rqt_gui_cpp", "rqt_gui_py", "rqt_image_view", "rqt_launch", "rqt_logger_level", "rqt_moveit", "rqt_msg", "rqt_nav_view", "rqt_plot", "rqt_pose_view", "rqt_publisher", "rqt_py_common", "rqt_py_console", "rqt_reconfigure", "rqt_robot_dashboard", "rqt_robot_monitor", "rqt_robot_steering", "rqt_runtime_monitor", "rqt_rviz", "rqt_service_caller", "rqt_shell", "rqt_srv", "rqt_tf_tree", "rqt_top", "rqt_topic", "rqt_web", "rviz", "rviz_imu_plugin", "rviz_plugin_tutorials", "rviz_python_tutorial", "self_test", "sensor_msgs", "settlerlib", "shape_msgs", "smach", "smach_msgs", "smach_ros", "smclib", "stage_ros", "std_msgs", "std_srvs", "stereo_image_proc", "stereo_msgs", "test_bond", "test_diagnostic_aggregator", "test_nodelet", "test_nodelet_topic_tools", "test_rosbag", "test_rosbag_storage", "test_roscpp", "test_rosgraph", "test_roslaunch", "test_roslib_comm", "test_rosmaster", "test_rosparam", "test_rospy", "test_rosservice", "test_tf2", "tf", "tf2", "tf2_bullet", "tf2_eigen", "tf2_geometry_msgs", "tf2_kdl", "tf2_msgs", "tf2_py", "tf2_ros", "tf2_sensor_msgs", "tf2_tools", "tf_conversions", "theora_image_transport", "timestamp_tools", "topic_tools", "trajectory_msgs", "transmission_interface", "turtle_actionlib", "turtle_tf", "turtle_tf2", "turtlesim", "unique_id", "urdf", "urdf_parser_plugin", "urdf_tutorial", "urg_c", "urg_node", "uuid_msgs", "visp_auto_tracker", "visp_bridge", "visp_camera_calibration", "visp_hand2eye_calibration", "visp_tracker", "visualization_marker_tutorials", "visualization_msgs", "voxel_grid", "xacro", "xmlrpcpp"], "dev-ruby": ["GeoRuby", "abstract", "acme-client", "actioncable", "actionmailbox", "actionmailer", "actionpack-action_caching", "actionpack-xml_parser", "actionpack", "actiontext", "actionview", "activejob", "activeldap", "activemodel-serializers-xml", "activemodel", "activerecord", "activestorage", "activesupport", "acts_as_list", "addressable", "ae", "afm", "airbrussh", "allison", "amatch", "ammeter", "amq-client", "amq-protocol", "amqp", "annoy", "ansi", "archive-tar-minitar", "arel-helpers", "arel", "ascii85", "asciidoctor-diagram", "asciidoctor", "asciimath", "ast", "async_sinatra", "atomic", "autoprefixer-rails", "aws-eventstream", "aws-partitions", "aws-s3", "aws-sdk-core", "aws-sdk-resources", "aws-sdk", "aws-sigv4", "axiom-types", "backports", "bacon", "barby", "base32", "bcrypt-ruby", "bcrypt_pbkdf", "best_in_place", "bindata", "bindex", "binding_of_caller", "bit-struct", "blankslate", "blinkstick", "bogus", "brass", "brotli", "bsearch", "bson", "buftok", "builder", "bundler-audit", "bundler", "bunny", "c21e", "capistrano", "capybara", "certificate_authority", "certified", "charlock_holmes", "childlabor", "childprocess", "chronic", "chunky_png", "cinch", "classifier-reborn", "climate_control", "cliver", "cmdparse", "coderay", "coercible", "coffee-rails", "coffee-script-source", "coffee-script", "color", "colorator", "colored", "colored2", "colorize", "columnize", "combustion", "commander", "concurrent-ruby", "connection_pool", "contracts", "coolio", "countdownlatch", "crack", "crass", "creole", "cri", "css_parser", "curb", "curses", "d3_rails", "daemon_controller", "daemons", "dalli", "database_cleaner-active_record", "database_cleaner-core", "database_cleaner", "date_validator", "dbf", "ddmemoize", "ddmetrics", "ddplugin", "debug_inspector", "deep_merge", "delayer-deferred", "delayer", "dependor", "deprecated", "descendants_tracker", "did_you_mean", "diff-lcs", "diva", "dnsruby", "docile", "domain_name", "dotenv", "duktape-rb", "dust", "ecma-re-validator", "ed25519", "elasticsearch-api", "elasticsearch-extensions", "elasticsearch-transport", "elasticsearch", "em-websocket", "equalizer", "equatable", "erubi", "erubis", "ethon", "evented-spec", "eventmachine", "execjs", "exifr", "facter", "fakefs", "faker", "faraday", "faraday_middleware-multi_json", "faraday_middleware", "fast-stemmer", "fast_gettext", "fast_xs", "fattr", "fcgi", "ferret", "ffaker", "ffi-compiler", "ffi", "file-tail", "filesize", "filigree", "fivemat", "flexmock", "flickraw", "flog", "font-awesome-rails", "forgery", "forwardable-extended", "fuubar", "gettext-setup", "gettext_i18n_rails", "gh", "gherkin", "gist", "git", "globalid", "gnuplot", "google-protobuf", "gpgme", "gruff", "haml-rails", "haml", "hamster", "hashdiff", "hashery", "hashicorp-checkpoint", "hashie", "hashr", "heredoc_unindent", "hiera-eyaml-gpg", "hiera-eyaml-plaintext", "hiera-eyaml", "hiera", "highline", "hipchat", "hiredis", "histogram", "hitimes", "hocon", "hoe", "hpricot", "html2haml", "htmlentities", "http-accept", "http-cookie", "http-form_data", "http-parser", "http", "http_parser_rb", "httparty", "httpauth", "httpclient", "i18n", "ice_nine", "idn-ruby", "image_processing", "imagesize", "inflecto", "instance_storage", "instantiator", "introspection", "iobuffer", "itextomml", "jbuilder", "jmespath", "jquery-rails", "jquery-ui-rails", "jsobfu", "json", "json_schema", "jwt", "kirbybase", "kissfft", "kpeg", "kramdown-parser-gfm", "kramdown-syntax-coderay", "kramdown", "launchy", "lemon", "letter_opener", "levenshtein", "libusb", "liquid-c", "liquid", "listen", "little-plugger", "locale", "lockfile", "log4r", "log_buddy", "logue", "loofah", "loquacious", "lumberjack", "mab", "magic", "mail", "maildir", "marcel", "maruku", "mash", "maxitest", "mecab-ruby", "mechanize", "memoist", "memoizable", "memoize", "mercenary", "metaclass", "metasm", "method_source", "middleware", "mime-types-data", "mime-types", "mimemagic", "mini_magick", "mini_mime", "minispec-metadata", "minitar", "minitest-around", "minitest-bonus-assertions", "minitest-global_expectations", "minitest-hooks", "minitest-power_assert", "minitest-pretty_diff", "minitest", "mixlib-shellout", "mocha", "moneta", "mqtt", "msgpack", "multi_json", "multi_test", "multi_xml", "multipart-post", "mustache", "mustermann", "mysql2", "nagios_analyzer", "nanotest", "narray", "naught", "necromancer", "nenv", "neovim-ruby-client", "net-http-digest_auth", "net-http-persistent", "net-http-pipeline", "net-scp", "net-sftp", "net-ssh-gateway", "net-ssh", "net-telnet", "netrc", "network_interface", "niceogiri", "nio4r", "nokogiri-diff", "nokogiri", "nokogumbo", "ntlm-http", "oauth", "oauth2", "octokit", "omniauth", "open4", "openssl-ccm", "optimist", "optionable", "org-ruby", "origin", "ox", "packetfu", "paint", "parallel", "paramesan", "parser", "pastel", "path_expander", "pathutil", "patron", "pcaprub", "pdf-core", "pdf-inspector", "pdf-reader", "permutation", "pg", "pg_array_parser", "pkg-config", "plist", "pluggaloid", "podcast", "polyglot", "posix-spawn", "power_assert", "prawn-table", "prawn", "pry", "public_suffix", "pundit", "puppet_forge", "puppetdb-termini", "pusher-client", "qed", "racc", "rack-attack", "rack-cache", "rack-openid", "rack-protection", "rack-ssl", "rack-test", "rack", "radius", "rails-dom-testing", "rails-html-sanitizer", "rails", "railties", "rainbow", "rake-compiler", "rake-remote_task", "rake", "rantly", "rash_alt", "rb-gsl", "rb-inotify", "rb-readline", "rbnacl", "rbpdf-font", "rbpdf", "rbs", "rbst", "rbtree", "rcairo", "rchardet", "rdiscount", "rdoc", "rdtool", "recog", "red-colors", "redcarpet", "redcloth", "redis", "ref", "regexp_parser", "regexp_property_values", "request_store", "rest-client", "rexical", "rexml", "rinku", "ritex", "rjb", "rkelly-remix", "rmagick", "roadie-rails", "roadie", "robots", "rouge", "rqrcode", "rqrcode_core", "rr", "rrdtool-bindings", "rspec-collection_matchers", "rspec-core", "rspec-expectations", "rspec-its", "rspec-json_expectations", "rspec-mocks", "rspec-rails", "rspec-retry", "rspec-stubbed_env", "rspec-support", "rspec", "rspectacular", "rss", "ruby-atk", "ruby-augeas", "ruby-cairo-gobject", "ruby-clutter-gdk", "ruby-clutter-gstreamer", "ruby-clutter-gtk", "ruby-clutter", "ruby-dict", "ruby-elf", "ruby-feedparser", "ruby-filemagic", "ruby-gdk3", "ruby-gdkpixbuf2", "ruby-gegl", "ruby-gettext", "ruby-gio2", "ruby-glib2", "ruby-gnome2", "ruby-gnumeric", "ruby-gobject-introspection", "ruby-goffice", "ruby-gsf", "ruby-gstreamer", "ruby-gtk2", "ruby-gtk3", "ruby-gtksourceview", "ruby-gtksourceview3", "ruby-gtksourceview4", "ruby-hmac", "ruby-ldap", "ruby-libsecret", "ruby-macho", "ruby-mp3info", "ruby-net-ldap", "ruby-odbc", "ruby-oembed", "ruby-ole", "ruby-opengl", "ruby-openid", "ruby-pango", "ruby-poppler", "ruby-prof", "ruby-progressbar", "ruby-rc4", "ruby-romkan", "ruby-rsvg", "ruby-sdl", "ruby-shadow", "ruby-shout", "ruby-termios", "ruby-vte", "ruby-vte3", "ruby-webkit2-gtk", "ruby-wnck3", "ruby-xslt", "ruby-yadis", "ruby2_keywords", "ruby2ruby", "ruby_gntp", "ruby_parser", "ruby_smb", "rubygems", "rubyntlm", "rubypants", "rubytest-cli", "rubytest", "rubytter", "rubyzip", "safe_yaml", "sanitize", "sass-listen", "sass-rails", "sass", "sassc-rails", "sassc", "sawyer", "sdoc", "seed-fu", "selenium-webdriver", "semantic_puppet", "semver2", "serialport", "serverengine", "settingslogic", "sexp_processor", "shoulda-context", "shoulda-matchers", "shoulda", "sigar", "sigdump", "simple-rss", "simple_oauth", "simplecov-html", "simplecov", "simpleidn", "sinatra-partial", "sinatra", "six", "slim", "slop", "slow_enumerator_tools", "sourcemap", "sparklines", "spreadsheet", "spring", "sprockets-rails", "sprockets", "spy", "sqlite3", "sshkey", "sshkit", "stamp", "state_machine", "stomp", "stringex", "strptime", "subexec", "sync", "syntax", "sys-uname", "syslogger", "systemu", "tdiff", "temple", "term-ansicolor", "terminal-table", "test-unit-rr", "test-unit", "test_construct", "test_declarative", "text-hyphen", "text", "textpow", "thor", "thread_order", "thread_safe", "tidy-ext", "tidy_table", "tilt", "timecop", "timers", "tins", "tokyocabinet", "tomlrb", "totoridipjp", "transaction-simple", "travis", "treetop", "trollop", "ttfunk", "tty-color", "tty-command", "tty-cursor", "tty-file", "tty-platform", "tty-prompt", "tty-reader", "tty-screen", "tty-which", "turbolinks-source", "turbolinks", "twitter-text", "twitter", "typed-array", "typeprof", "typhoeus", "tzinfo", "uconv", "uglifier", "ultraviolet", "unf", "unf_ext", "unicode-display_width", "unindent", "uuidtools", "vagrant_cloud", "vcard", "vcr", "virtus", "vlad", "warden", "web-console", "webmock", "webrick", "webrobots", "websocket-driver", "websocket-extensions", "websocket", "whole_history_rating", "will_paginate", "windows_error", "wirble", "wisper", "x25519", "xdr", "xml-simple", "xmlrpc", "xpath", "yajl-ruby", "yard", "zeitwerk", "zentest", "tty-editor", "set", "sorted_set"], "dev-scheme": ["bytestructures", "c-wrapper", "chicken", "elk", "escm", "gambit", "gauche-cdb", "gauche-gl", "gauche-gtk", "gauche-kakasi", "gauche-mecab", "gauche-qdbm", "gauche", "goosh", "guile-gcrypt", "guile-git", "guile-json", "guile-sqlite3", "guile", "jscheme", "kawa", "racket", "scheme48", "scm", "scmxlate", "sigscheme", "slib", "stklos", "termite", "tinyscheme", "xdgdirs", "ypsilon"], "dev-tcltk": ["blt", "bwidget", "expect-lite", "expect", "itcl", "itk", "iwidgets", "mysqltcl", "scwoop", "snack", "tablelist", "tcl3d", "tcllib", "tclperl", "tclpython", "tclreadline", "tclx", "tclxml", "tdom", "thread", "tix", "tkcon", "tkdnd", "tkimg", "tklib", "tkpiechart", "tkpng", "tktable", "tktray", "tktreectrl", "tkzinc", "tls", "togl", "vtcl"], "dev-tex": ["abntex", "biber", "biblatex-gost", "biblatex", "bibtex2html", "bibtexu", "catdvi", "cpp2latex", "culmus-latex", "dot2tex", "dvi2gr", "foiltex", "frakturx", "glossaries", "hevea", "html2latex", "hyphen_show", "ivritex", "latex-beamer", "latex-calendar", "latex2html", "latex2rtf", "latexdiff", "latexmk", "lgrind", "pdfannotextractor", "pgf", "pscyr", "pythontex", "rail", "rubber", "serienbrief", "sketch", "style-check", "tex4ht", "tth", "vc"], "dev-texlive": ["texlive-basic", "texlive-bibtexextra", "texlive-context", "texlive-fontsextra", "texlive-fontsrecommended", "texlive-fontutils", "texlive-formatsextra", "texlive-games", "texlive-humanities", "texlive-langarabic", "texlive-langchinese", "texlive-langcjk", "texlive-langcyrillic", "texlive-langczechslovak", "texlive-langenglish", "texlive-langeuropean", "texlive-langfrench", "texlive-langgerman", "texlive-langgreek", "texlive-langitalian", "texlive-langjapanese", "texlive-langkorean", "texlive-langother", "texlive-langpolish", "texlive-langportuguese", "texlive-langspanish", "texlive-latex", "texlive-latexextra", "texlive-latexrecommended", "texlive-luatex", "texlive-mathscience", "texlive-metapost", "texlive-music", "texlive-pictures", "texlive-plaingeneric", "texlive-pstricks", "texlive-publishers", "texlive-xetex"], "dev-util": ["App-SVN-Bisect", "abi-compliance-checker", "abi-dumper", "abootimg", "ald", "amtterm", "android-ndk", "android-sdk-update-manager", "android-studio", "android-tools", "anjuta", "apitrace", "appdata-tools", "appinventor", "archdiff", "argouml", "artifactory-bin", "aruba", "astyle", "autodia", "autoproject", "babeltrace", "bats", "bazel", "bbe", "bcc", "bcpp", "bdelta", "bear", "biew", "bin_replace_string", "bingrep", "bitcoin-tx", "bitrise", "bloaty", "bnfc", "boost-build", "bpftrace", "bsdiff", "btyacc", "build2", "buildbot-badges", "buildbot-console-view", "buildbot-grid-view", "buildbot-pkg", "buildbot-waterfall-view", "buildbot-worker", "buildbot-wsgi-dashboards", "buildbot-www", "buildbot", "bustle", "byacc", "cargo-audit", "cargo-c", "cargo-ebuild", "cargo-license", "catalyst", "catfish", "catkin", "cbindgen", "ccache", "cccc", "ccls", "cflow", "cgdb", "cgvg", "checkbashisms", "checkstyle", "chroot-wrapper", "clair", "clazy", "cligh", "clinfo", "clion", "clippy", "cloc", "cmake-fedora", "cmake", "cmocka", "codeblocks", "codespell", "colm", "colorgcc", "comparator", "complexity", "conan", "conf2struct", "cookiecutter", "cppcheck", "cppi", "cpptest", "cppunit", "cpputest", "cproto", "cpuinfo-collection", "cram", "crash", "cscope", "csup", "ctags", "cucumber-core", "cucumber-create-meta", "cucumber-cucumber-expressions", "cucumber-expressions", "cucumber-gherkin", "cucumber-html-formatter", "cucumber-messages", "cucumber-rails", "cucumber-tag-expressions", "cucumber-tag_expressions", "cucumber-wire", "cucumber", "cunit", "cutils", "cutter", "cvise", "cwdiff", "d-feet", "dbus-test-runner", "ddd", "debhelper", "debootstrap", "debugedit", "dejagnu", "desktop-file-utils", "devhelp", "dialog", "diff-cover", "diffball", "difffilter", "diffoscope", "diffstat", "diffuse", "dirdiff", "dissembler", "distro-info-data", "distro-info", "dmake", "docker-distribution-pruner", "docker-ls", "dogtail", "dput-ng", "drone-cli", "drone", "dropwatch", "duma", "dwdiff", "ebuildtester", "edb-debugger", "edi", "editorconfig-geany", "egypt", "elfkickers", "emilpro", "envman", "fix-la-relink-command", "flatpak-builder", "flawfinder", "ftjam", "ftnchek", "fuzz", "gcovr", "gdbus-codegen", "geany-plugins", "geany", "gengetopt", "gertty", "gi-docgen", "git-delta", "github-cli", "gitlab-ci-linter", "glade", "glib-utils", "global", "glslang", "gn", "gnome-builder", "gnome-devel-docs", "gob", "goland", "google-perftools", "gource", "gperf", "gprof2dot", "gtk-builder-convert", "gtk-doc-am", "gtk-doc", "gtk-update-icon-cache", "gyp", "heaptrack", "herdtools7", "hermes", "hfstospell", "hip", "howdoi", "huc", "hxd", "hxtools", "icemon", "icmake", "idea-community", "ignition-cmake", "imediff2", "include-what-you-use", "indent", "intel-graphics-compiler", "intel-ocl-sdk", "intltool", "its4", "itstool", "japi-compliance-checker", "jenkins-bin", "jfrog-cli", "kbuild", "kcov", "kdbg", "kdevelop-pg-qt", "kdevelop-php", "kdevelop-python", "kdevelop", "kdstatemachineeditor", "kernelshark", "kubebuilder", "kup", "kyua", "lcov", "leaktracer", "libabigail", "linklint", "lldb", "lockrun", "lsuio", "ltrace", "lttng-modules", "lttng-tools", "lttng-ust", "lxqt-build-tools", "mage", "makeheaders", "makepp", "massif-visualizer", "maturin", "mdds", "meld", "memprof", "meson-format-array", "meson", "min-cscope", "mingw64-runtime", "mutrace", "nemiver", "netsurf-buildsystem", "ninja", "ninka", "numdiff", "nvidia-cuda-sdk", "nvidia-cuda-toolkit", "objconv", "omake", "open-vcdiff", "opencl-headers", "oprofile", "ostree", "packer", "pahole", "patchbin", "patchelf", "patchutils", "patdiff", "peg", "perf", "pkgcheck", "pkgconf", "pkgconfig", "pkgdev", "pkgdiff", "plan9port", "ply", "poke", "premake", "pretrace", "promu", "protobuf-cucumber", "pscan", "pycharm-community", "pycharm-professional", "qbs", "qdevicemonitor", "qstlink2", "quilt", "radare2", "ragel", "rats", "rbtools", "re2c", "rebar-bin", "rebar", "redo", "regexxer", "rej", "rizin", "rocm-cmake", "rocm-smi", "rocminfo", "roctracer", "rosdep", "rosinstall", "rosinstall_generator", "rpmdevtools", "rr", "rt-tests", "rustup", "samurai", "sasm", "scala-ide", "scanmem", "sccache", "schroot", "scons", "sel", "serialtalk", "sgb", "shadowman", "shards", "shc", "shellcheck-bin", "shellcheck", "shelltestrunner", "shflags", "shtool", "shunit2", "smem", "source-highlight", "spirv-headers", "spirv-llvm-translator", "spirv-tools", "splint", "squashdelta", "squashmerge", "src-cli", "statifier", "stepman", "strace", "stressapptest", "stripe-mock", "stubgen", "sysdig-kmod", "sysdig", "sysprof-capture", "sysprof-common", "sysprof", "systemtap", "tinlink", "tkdiff", "tmake", "trace-cmd", "treecc", "trinity", "tup", "txt2regex", "uftrace", "umockdev", "uncrustify", "unifdef", "usb-robot", "valgrind", "vbindiff", "vint", "visual-regexp", "visualvm", "vmtouch", "vtable-dumper", "vulkan-headers", "vulkan-tools", "wasmer", "watchman", "wayland-scanner", "webhook", "weka", "wiggle", "woke", "wstool", "xdelta", "xfce4-dev-tools", "xmlindent", "xxdi", "xxdiff", "yacc", "ydiff", "yuicompressor", "intel-graphics-system-controller", "uglifyjs"], "dev-vcs": ["bfg", "colorcvs", "colorsvn", "cssc", "cvs-fast-export", "cvs", "cvs2cl", "cvsgraph", "cvsps", "cvsspam", "cvsutils", "cvsync", "darcs", "easygit", "fossil", "git-annex", "git-big-picture", "git-cola", "git-crypt", "git-deploy", "git-extras", "git-flow", "git-lfs", "git-mailz", "git-mantle", "git-merge-changelog", "git-pimp", "git-publish", "git-pw", "git-sh", "git-tools", "git", "gitg", "github-pages-publish", "gitolite-gentoo", "gitolite", "gitstats", "gti", "guilt", "hg-evolve", "hg-git", "hub", "kdesvn", "lab", "mercurial", "mr", "notify-webhook", "pre-commit", "python-gitlab", "qgit", "rcs", "rcsi", "repo", "reposurgeon", "rsvndump", "stgit", "subversion", "svn2cl", "svn2git", "svneverever", "tig", "tkcvs", "topgit", "tortoisehg", "vcsh", "git-sizer"], "games-action": ["0verkill", "abuse", "apotheon", "armagetronad", "assault-android-cactus+", "astromenace", "atanks", "badland", "barrage", "battalion", "beathazardultra", "bomberclone", "brutal-legend", "bzflag", "chickens", "chromium-bsu", "clanbomber", "crimsonland", "deathchase3d", "descent1-data", "descent1-demodata", "descent1-freedata", "descent2-data", "descent2-demodata", "descent2-freedata", "descent2-vertigo", "descent3-demo", "descent3", "dxx-rebirth", "extreme-tuxracer", "fakk2", "formido", "garden", "geki2-KXL", "geki3-KXL", "gltron", "guacamelee", "heretic2-demo", "heretic2", "heroes", "hotline-miami", "intrusion2", "koth", "lugaru", "luola", "maelstrom", "minecraft-launcher", "minetest", "moon-buggy", "multimc", "nighthawk", "noiz2sa", "orbital-eunuchs-sniper", "postalplus", "powermanga", "rive", "rrootage", "shadowgrounds-bin", "shadowgrounds-survivor-bin", "shootingstar", "snipes", "solar2", "spacearyarya-kxl", "super-hexagon", "supermariowar", "supertuxkart", "swordandsworcery", "teeworlds", "towbowl-tactics", "transcend", "trine-enchanted-edition", "trine", "trine2", "trosh", "tuxkart", "violetland", "wordwarvi", "xblast", "xbomber", "xpilot"], "games-arcade": ["abe", "afternoonstalker", "alienwave", "amphetamine", "aop", "apricots", "aquaria", "ascii-invaders", "asteroid", "balloonchase", "barbarian-bin", "batrachians", "berusky", "betna", "blobby", "blobwars", "blockrage", "bomns", "briquolo", "bumprace", "burgerspace", "cavezofphear", "cdogs-sdl", "ceferino", "circuslinux", "cob", "commandergenius", "conveysdl", "cosmosmash", "crack-attack", "criticalmass", "defendguin", "digger", "dynamitejack", "emilia-pinball", "epiar", "excido", "fishsupper", "frozen-bubble", "funnyboat", "gav", "gish-demo", "gnake", "gnome-nibbles", "gnome-robots", "gnujump", "grande-KXL", "gunocide2ex", "holotz-castle", "insaneodyssey", "jardinains", "jazz2-data", "jazz2", "jumpnbump", "jvgs", "kajaani-kombat", "kobodeluxe", "komi", "late", "lbreakout", "lbreakout2", "methane", "missile", "moleinvasion", "mrrescue", "netris", "nibbles", "ninvaders", "njam", "notpacman", "nottetris2", "open-supaplex", "openbubbles", "openmortal", "opensonic", "opentyrian", "orthorobot", "oshu", "pachi", "pacmanarena", "penguin-command", "pengupop", "performous", "primateplunge", "retrobattle", "ri-li", "rockdodger", "rocksndiamonds", "sable", "savagewheels", "sdb", "sdl-sopwith", "sdlroids", "sdlsasteroids", "shovel-knight", "slimevolley", "solarwolf", "spacerider", "spout", "stardork", "supertransball2", "supertux", "syobon", "tecnoballz", "thinktanks-demo", "tomatoes", "trailblazer", "tuxanci", "tuxdash", "tuxpuck", "vor", "whichwayisup", "wop", "xbill", "xboing", "xbubble", "xgalaga", "xjump", "xrick", "xscavenger", "xsfcave", "xtux", "yarsrevenge"], "games-board": ["ace", "ascal", "atakks", "awale", "biloba", "blokish", "camato", "ccgo", "cgoban", "chessx", "cockatrice", "crafty", "domination", "eboard", "four-in-a-row", "freedoko", "fruit", "gambit", "gmchess", "gnome-chess", "gnome-mahjongg", "gnome-mines", "gnubg", "gnuchess-book", "gnuchess", "gnugo", "gnushogi", "goatee-gtk", "grhino", "gtkatlantic", "gtkboard", "hexxagon", "iagno", "mah-jong", "maitretarot", "megamek", "mt_dolphin_ia", "mt_ncurses_client", "natch", "openyahtzee", "pasang-emas", "peg-e", "phalanx", "pioneers", "pokerth", "polyglot", "pychess", "pysolfc", "scid", "simsu", "sjeng", "stockfish", "tablebase-syzygy", "tali", "tetzle", "xboard", "xfreecell", "xgammon", "xmahjongg", "xmille", "xscrabble", "xskat"], "games-emulation": ["advancemame", "advancescan", "atari800", "caps", "desmume", "dgen-sdl", "dolphin", "dosbox-staging", "dosbox", "emutos", "fbzx", "fceux", "gcube", "generator", "gens", "gngb", "gngeo", "gnuboy", "hatari", "higan", "jrommanager", "libretro-bnes", "libretro-dosbox", "libretro-fceumm", "libretro-info", "libretro-nestopia", "libretro-snes9x", "libretro-twentyfortyeight", "lxdream", "m64py", "mamory", "mastergear-bin", "mednafen", "mednaffe", "mekanix", "mgba", "mupen64plus-audio-sdl", "mupen64plus-core", "mupen64plus-input-sdl", "mupen64plus-rsp-hle", "mupen64plus-ui-console", "mupen64plus-video-glide64mk2", "mupen64plus-video-rice", "mupen64plus", "nestopia", "nestra", "openmsx", "pcsx2", "pcsxr", "ppsspp", "snes9x", "stella", "vbam", "vgba", "yabause", "zinc", "zsnes"], "games-engines": ["box2d", "dMagnetic", "devilutionx", "exult", "frobtads", "frotz", "gargoyle", "love", "nazghul", "odamex", "openmw", "openxcom", "qtads", "residualvm", "scummvm-tools", "scummvm", "solarus", "stratagus", "xzip", "zoom"], "games-fps": ["alienarena", "avp", "blackshades", "chocolate-doom", "darkplaces", "doom-data", "doomsday", "duke3d-data", "eduke32", "etqw-bin", "etqw-data", "etqw-demo", "ezquake-bin", "freedm-data", "freedm", "freedoom-data", "freedoom", "glxquake-bin", "gzdoom", "industri", "legends", "nexuiz", "prboom-plus", "quake1-data", "quake1-demodata", "quake1-killer", "quake1-rally", "quake1-teamfortress", "quake1-textures", "quake2-data", "quake2-demodata", "quake2-icculus", "quake2-textures", "quakeforge", "qudos", "red-blue-quake2", "redeclipse", "rott", "sauerbraten", "serious-sam-tse", "soldieroffortune", "tenebrae", "transfusion-bin", "tribes2", "turtlearena", "urbanterror-data", "urbanterror", "ut2003-bonuspack-cm", "ut2003-bonuspack-de", "ut2003-bonuspack-epic", "ut2003-data", "ut2003-demo", "ut2003", "ut2004-bonuspack-cbp1", "ut2004-bonuspack-cbp2", "ut2004-bonuspack-ece", "ut2004-bonuspack-mega", "ut2004-data", "ut2004-demo", "ut2004", "wolfgl", "worldofpadman", "xonotic", "yamagi-quake2"], "games-kids": ["gcompris", "gmult", "lletters", "memonix", "tuxmath", "tuxtype"], "games-misc": ["asr-manpages", "ballerburg", "bsd-games", "bsod", "c++robots", "cowsay", "doge", "exult-sound", "fortune-mod-all", "fortune-mod-at-linux", "fortune-mod-bofh-excuses", "fortune-mod-chucknorris", "fortune-mod-cs", "fortune-mod-flashrider", "fortune-mod-fvl", "fortune-mod-it", "fortune-mod-kernelcookies", "fortune-mod-mormon", "fortune-mod-norbert-tretkowski", "fortune-mod-osfortune", "fortune-mod-rss", "fortune-mod-scriptures", "fortune-mod-tao", "fortune-mod-taow", "fortune-mod-thomas-ogrisegg", "fortune-mod-zx-error", "fortune-mod", "funny-manpages", "gBhed", "gtklife", "little-inferno", "lolcat", "lucidlife", "nyancat", "opengfx", "openmsx", "opensfx", "papers-please", "ponysay", "rfksay", "robotfindskitten", "sdljoytest", "sex", "sound-of-sorting", "typespeed", "usolitaire", "wtf", "wumpus", "xcowsay", "xcruiser", "xpenguins"], "games-mud": ["circlemud", "crystal", "gmudix", "gnome-mud", "kildclient", "mudix", "powwow", "tf", "tintin", "tkmoo", "trebuchet"], "games-puzzle": ["amoebax", "anagramarama", "angrydd", "arrows", "atomix", "bastet", "bff-or-die", "biniax2", "braincurses", "brainparty", "brainworkshop", "color-lines", "colorcode", "concentration", "connectagram", "construo", "cutemaze", "cuyo", "einstein", "enigma", "fbg", "fish-fillets", "five-or-more", "flobopuyo", "freesweep", "galaxis", "gemdropx", "gfifteen", "glightoff", "gnome-klotski", "gnome-sudoku", "gnome-taquin", "gnome-tetravex", "gnome2048", "gnudoku", "gnurobbo", "gottet", "greedy", "groundhog", "gtkballs", "gweled", "hangman", "hexalate", "hitori", "icebreaker", "ksokoban", "lightsoff", "lmarbles", "lpairs", "ltris", "magiccube4d", "meandmyshadow", "mindless", "mirrormagic", "monsterz", "mures", "neverball", "nightsky", "nudoku", "numptyphysics", "pathological", "pauker", "penguzzle", "picpuz", "pingus", "pipepanic", "pipewalker", "quadra", "quadrapassel", "rezerwar", "scramble", "sdl-jewels", "seatris", "sgt-puzzles", "splice", "swell-foop", "tanglet", "tetrinet", "textmaze", "tint", "tiny-and-big", "tod", "tong", "toppler", "torrent", "triptych", "twindistress", "wakkabox", "wizznic", "wmpuzzle", "world-of-goo-demo", "world-of-goo-gog", "world-of-goo-hb", "xblockout", "xbomb", "xlogical", "xpired", "xtris", "xwelltris", "xye", "zaz"], "games-roguelike": ["FTL-gog", "FTL", "adom", "angband", "crossfire-client", "dwarf-fortress", "hengband", "moria", "neon-chrome", "nethack", "powder", "scourge", "stone-soup", "tome", "tomenet", "wrogue", "zangband"], "games-rpg": ["adonthell", "avadon", "baldurs-gate-ee", "bass", "bastion", "broken-age", "coe2", "comi", "costume-quest", "daimonin-client", "dear-esther", "deponia-doomsday", "deponia-tcj", "draci-historie", "drascula", "dreamweb", "dungeon-defenders", "egoboo", "eschalon-book-1-demo", "eternal-lands", "freedink-data", "freedink", "freedroid", "freedroidrpg", "grimrock", "gwiz", "hatoful-boyfriend-holiday-star", "hatoful-boyfriend", "kqlives", "lure", "manaplus", "openglad", "pcgen", "queen", "rpg-cli", "soltys", "sumwars", "to-the-moon", "vendetta-online-bin", "wasteland2", "wastesedge", "xu4", "zsdx", "zsxd"], "games-server": ["bedrock-server", "crossfire-server", "etqw-ded", "mednafen-server", "minecraft-server", "monopd", "mtavc", "pvpgn", "steamcmd", "ut2004-ded"], "games-simulation": ["bcs-demo", "cannonsmash", "corsix-th", "crashtest", "crrcsim", "flightgear-data", "flightgear", "gl117", "lincity-ng", "lincity", "micropolis", "openrct2", "openttd", "pmars-sdl", "searchandrescue", "senken", "simutrans", "singularity", "sky-rogue", "slime-rancher", "train-valley"], "games-sports": ["billardgl", "bygfoot", "dustrac", "foobillard", "gracer", "speed-dreams", "stormbaancoureur", "torcs", "trigger", "trophy", "ultimatestunts", "xmoto"], "games-strategy": ["0ad", "colobot-data", "colobot", "crimson", "darwinia-demo", "darwinia", "defcon-demo", "dominions2", "dopewars", "dunelegacy", "freeciv", "freecol", "freeorion", "freesynd", "galaxyhack", "hedgewars", "ja2-stracciatella-data", "ja2-stracciatella", "julius", "knights-demo", "lgeneral", "liquidwar", "majesty-demo", "maxr", "megaglest-data", "megaglest", "naev", "netherearth", "openra", "s25rttr", "satellite-reign", "scorched3d", "settlers-2-gold-data", "seven-kingdoms", "spaz", "tornado", "triplea", "ufoai", "uqm", "war1gus", "wargus-data", "wargus", "warmux", "warzone2100", "wesnoth", "widelands", "xbattleai", "augustus"], "games-util": ["acc", "antimicro", "atlas", "biounzip", "catcodec", "datutil", "deutex", "dfarc", "dzip", "etswitch", "eureka", "fteqcc", "game-device-udev-rules", "gamemode", "gamepick", "glbsp", "grfcodec", "gslist", "higan-purify", "joystick", "lgogdownloader", "linux-wbfs-manager", "loki_patch", "lutris", "mcrcon", "nml", "pyfa", "qjoypad", "qstat", "sc-controller", "slade", "springlobby", "ucon64", "uglygs", "umodpack", "uz2unpack", "vispatch", "wiiload", "wit", "wxchtdecoder", "xboxdrv", "xgame-gtk2", "xgame", "xgamer", "xpadneo", "xqf"], "gnome-base": ["dconf-editor", "dconf", "gconf", "gdm", "gnome-applets", "gnome-common", "gnome-control-center", "gnome-core-apps", "gnome-core-libs", "gnome-desktop", "gnome-extra-apps", "gnome-flashback", "gnome-keyring", "gnome-light", "gnome-menus", "gnome-mime-data", "gnome-panel", "gnome-session", "gnome-settings-daemon", "gnome-shell", "gnome-vfs", "gnome", "gsettings-desktop-schemas", "gvfs", "libglade", "libgnomecanvas", "libgnomekbd", "libgtop", "librsvg", "nautilus"], "gnome-extra": ["chrome-gnome-shell", "cinnamon-control-center", "cinnamon-desktop", "cinnamon-menus", "cinnamon-screensaver", "cinnamon-session", "cinnamon-settings-daemon", "cinnamon-translations", "cinnamon", "cjs", "eiciel", "evolution-data-server", "evolution-ews", "filemanager-actions", "gconf-editor", "gnome-boxes", "gnome-calculator", "gnome-calendar", "gnome-characters", "gnome-clocks", "gnome-color-manager", "gnome-commander", "gnome-contacts", "gnome-directory-thumbnailer", "gnome-documents", "gnome-getting-started-docs", "gnome-integration-spotify", "gnome-logs", "gnome-power-manager", "gnome-search-tool", "gnome-shell-extension-appindicator", "gnome-shell-extension-applications-overview-tooltip", "gnome-shell-extension-bing-wallpaper", "gnome-shell-extension-bluetooth-quick-connect", "gnome-shell-extension-control-blur-effect-on-lock-screen", "gnome-shell-extension-dash-to-panel", "gnome-shell-extension-desktop-icons-ng", "gnome-shell-extension-gsconnect", "gnome-shell-extension-pop-shell", "gnome-shell-extensions", "gnome-shell-frippery", "gnome-software", "gnome-system-monitor", "gnome-tweaks", "gnome-user-docs", "gnome-user-share", "gnome-utils", "gnome-weather", "gtkhtml", "gucharmap", "libgda", "libgsf", "mousetweaks", "nautilus-dropbox", "nautilus-sendto", "nemo-fileroller", "nemo", "nm-applet", "office-runner", "pch-session", "polkit-gnome", "seahorse-nautilus", "sushi", "synapse", "yelp-xsl", "yelp", "zenity"], "gnustep-apps": ["aclock", "addresses", "affiche", "batmon", "cdplayer", "cenon", "cynthiune", "fisicalab", "ftp", "gemas", "gmines", "gnumail", "gorm", "graphos", "gshisen", "gspdf", "gworkspace", "lapispuzzle", "laternamagica", "mpdcon", "pictureframe", "pikopixel", "preview", "price", "projectcenter", "simpleagenda", "sogo", "systempreferences", "talksoup", "terminal", "textedit", "zipper"], "gnustep-base": ["gnustep-back-art", "gnustep-back-cairo", "gnustep-back-xlib", "gnustep-base", "gnustep-gui", "gnustep-make", "gnustep-updater", "libobjc2", "mknfonts"], "gnustep-libs": ["cenonlibrary", "dbuskit", "gsldap", "highlighterkit", "netclasses", "pantomime", "performance", "renaissance", "sope", "sqlclient"], "gui-apps": ["grim", "gtkgreet", "kanshi", "lavalauncher", "mako", "nm-tray", "slurp", "swappy", "swaybg", "swayidle", "swaylock", "tuigreet", "waybar", "wayland-logout", "waypipe", "wayvnc", "wcm", "wf-recorder", "wf-shell", "wl-clipboard"], "gui-libs": ["amtk", "display-manager-init", "egl-wayland", "eglexternalplatform", "gdk-pixbuf-loader-webp", "greetd", "gtk-layer-shell", "gtk", "libhandy", "libwpe", "neatvnc", "tepl", "wayfire-plugins-extra", "wf-config", "wlroots", "wpebackend-fdo", "xdg-desktop-portal-wlr"], "gui-wm": ["hikari", "sway", "wayfire"], "java-virtuals": ["ejb-api", "interceptor-api", "jms", "saaj-api", "script-api", "servlet-api", "transaction-api", "xmlrpc-api"], "kde-apps": ["akonadi-calendar", "akonadi-contacts", "akonadi-import-wizard", "akonadi-mime", "akonadi-notes", "akonadi-search", "akonadi", "akonadiconsole", "akregator", "analitza", "ark", "artikulate", "audiocd-kio", "baloo-widgets", "blinken", "bomber", "bovo", "calendarjanitor", "calendarsupport", "cantor", "cervisia", "dolphin-plugins-dropbox", "dolphin-plugins-git", "dolphin-plugins-mercurial", "dolphin-plugins-subversion", "dolphin", "dragon", "eventviews", "ffmpegthumbs", "filelight", "granatier", "grantlee-editor", "grantleetheme", "gwenview", "incidenceeditor", "juk", "k3b", "kaccounts-integration", "kaccounts-providers", "kaddressbook", "kajongg", "kalarm", "kalarmcal", "kalgebra", "kalzium", "kamera", "kamoso", "kanagram", "kapman", "kapptemplate", "kate", "katomic", "kbackup", "kblackbox", "kblocks", "kbounce", "kbreakout", "kbruch", "kcachegrind", "kcalc", "kcalutils", "kcharselect", "kcolorchooser", "kcron", "kde-apps-meta", "kde-dev-scripts", "kde-dev-utils", "kde-meta", "kdeaccessibility-meta", "kdeadmin-meta", "kdebase-meta", "kdebugsettings", "kdecore-meta", "kdeedu-data", "kdeedu-meta", "kdegames-meta", "kdegraphics-meta", "kdegraphics-mobipocket", "kdemultimedia-meta", "kdenetwork-filesharing", "kdenetwork-meta", "kdenlive", "kdepim-addons", "kdepim-meta", "kdepim-runtime", "kdesdk-kioslaves", "kdesdk-meta", "kdesdk-thumbnailers", "kdeutils-meta", "kdf", "kdialog", "kdiamond", "keditbookmarks", "kfind", "kfloppy", "kfourinline", "kgeography", "kget", "kgoldrunner", "kgpg", "khangman", "khelpcenter", "kidentitymanagement", "kig", "kigo", "killbots", "kimagemapeditor", "kimap", "kio-extras", "kipi-plugins", "kiriki", "kiten", "kitinerary", "kjumpingcube", "kldap", "kleopatra", "klettres", "klickety", "klines", "kmag", "kmahjongg", "kmail-account-wizard", "kmail", "kmailtransport", "kmbox", "kmime", "kmines", "kmix", "kmousetool", "kmouth", "kmplot", "knavalbattle", "knetwalk", "knights", "knotes", "kolf", "kollision", "kolourpaint", "kompare", "konqueror", "konquest", "konsole", "konsolekalendar", "kontact", "kontactinterface", "kopete", "korganizer", "kpat", "kpimtextedit", "kpkpass", "kqtquickcharts", "krdc", "kreversi", "krfb", "kross-interpreters", "kruler", "kshisen", "ksirk", "ksmtp", "ksnakeduel", "kspaceduel", "ksquares", "ksudoku", "ksystemlog", "kteatime", "ktimer", "ktouch", "ktp-accounts-kcm", "ktp-approver", "ktp-auth-handler", "ktp-common-internals", "ktp-contact-list", "ktp-contact-runner", "ktp-desktop-applets", "ktp-filetransfer-handler", "ktp-kded-module", "ktp-send-file", "ktp-text-ui", "ktuberling", "kturtle", "kubrick", "kwalletmanager", "kwave", "kwordquiz", "kwrite", "libgravatar", "libkcddb", "libkcompactdisc", "libkdcraw", "libkdegames", "libkdepim", "libkeduvocdocument", "libkexiv2", "libkgapi", "libkipi", "libkleo", "libkmahjongg", "libkomparediff2", "libksane", "libksieve", "libktnef", "lokalize", "lskat", "mailcommon", "mailimporter", "marble", "mbox-importer", "messagelib", "minuet", "okular", "palapeli", "parley", "picmi", "pim-data-exporter", "pim-sieve-editor", "pimcommon", "plasma-telepathy-meta", "poxml", "print-manager", "rocs", "signon-kwallet-extension", "spectacle", "step", "svgpart", "sweeper", "thumbnailers", "umbrello", "yakuake", "zeroconf-ioslave"], "kde-frameworks": ["attica", "baloo", "bluez-qt", "breeze-icons-rcc", "breeze-icons", "extra-cmake-modules", "frameworkintegration", "kactivities-stats", "kactivities", "kapidox", "karchive", "kauth", "kbookmarks", "kcalendarcore", "kcmutils", "kcodecs", "kcompletion", "kconfig", "kconfigwidgets", "kcontacts", "kcoreaddons", "kcrash", "kdav", "kdbusaddons", "kdeclarative", "kded", "kdelibs4support", "kdesu", "kdnssd", "kdoctools", "kemoticons", "kf-env", "kfilemetadata", "kglobalaccel", "kguiaddons", "kholidays", "khtml", "ki18n", "kiconthemes", "kidletime", "kimageformats", "kinit", "kio", "kirigami", "kitemmodels", "kitemviews", "kjobwidgets", "kjs", "knewstuff", "knotifications", "knotifyconfig", "kpackage", "kparts", "kpeople", "kplotting", "kpty", "kquickcharts", "kross", "krunner", "kservice", "ktexteditor", "ktextwidgets", "kunitconversion", "kwallet", "kwayland", "kwidgetsaddons", "kwindowsystem", "kxmlgui", "modemmanager-qt", "networkmanager-qt", "oxygen-icons", "plasma", "prison", "purpose", "qqc2-desktop-style", "solid", "sonnet", "syndication", "syntax-highlighting", "threadweaver"], "kde-misc": ["basket", "colord-kde", "kdeconnect", "kdiff3", "kdirstat", "kimtoy", "kio-fuse", "kio-gdrive", "kio-gopher", "kio-locate", "kio-stash", "kmarkdownwebview", "krename", "krusader", "kshutdown", "ktoshiba", "latte-dock", "markdownpart", "openofficeorg-thumbnail", "plasma-applet-network-monitor", "plasma-applet-weather-widget", "plasma-pass", "playbar2", "rsibreak", "skanlite", "tellico", "ultimate-gmail-feed", "wacomtablet", "zanshin"], "kde-plasma": ["bluedevil", "breeze-grub", "breeze-gtk", "breeze-plymouth", "breeze", "discover", "drkonqi", "kactivitymanagerd", "kde-cli-tools", "kde-gtk-config", "kdecoration", "kdeplasma-addons", "kgamma", "khotkeys", "kinfocenter", "kmenuedit", "kscreen", "kscreenlocker", "ksshaskpass", "ksysguard", "ksystemstats", "kwallet-pam", "kwayland-integration", "kwayland-server", "kwin", "kwrited", "layer-shell-qt", "libkscreen", "libksysguard", "libkworkspace", "milou", "oxygen", "plasma-browser-integration", "plasma-desktop", "plasma-disks", "plasma-firewall", "plasma-integration", "plasma-meta", "plasma-nm", "plasma-pa", "plasma-sdk", "plasma-systemmonitor", "plasma-thunderbolt", "plasma-vault", "plasma-workspace-wallpapers", "plasma-workspace", "plymouth-kcm", "polkit-kde-agent", "powerdevil", "sddm-kcm", "systemsettings", "xdg-desktop-portal-kde", "xembed-sni-proxy"], "lxde-base": ["lxappearance-obconf", "lxappearance", "lxde-common", "lxde-icon-theme", "lxde-meta", "lxdm", "lxinput", "lxlauncher", "lxmenu-data", "lxpanel", "lxrandr", "lxsession", "lxtask", "lxterminal", "menu-cache"], "lxqt-base": ["liblxqt", "libsysstat", "lxqt-about", "lxqt-admin", "lxqt-config", "lxqt-globalkeys", "lxqt-meta", "lxqt-notificationd", "lxqt-openssh-askpass", "lxqt-panel", "lxqt-policykit", "lxqt-powermanagement", "lxqt-qtplugin", "lxqt-runner", "lxqt-session", "lxqt-sudo"], "mail-client": ["aerc", "alot", "alpine", "balsa", "bower", "claws-mail", "clawsker", "cone", "evolution", "geary", "hap", "kube", "mailx-support", "mailx", "mutt-wizard", "mutt", "neomutt", "novell-groupwise-client", "roundcube", "s-nail", "sylpheed", "thunderbird-bin", "thunderbird", "trojita"], "mail-filter": ["MailScanner", "afew", "amavisd-milter", "amavisd-new", "bmf", "bogofilter", "courier-pythonfilter", "couriersrs", "dcc", "dkimproxy", "exim-geoip", "exim-p0f", "gld", "imapfilter", "libmilter", "libsieve", "libspf2", "libsrs2", "libsrs_alt", "maildrop", "mailfilter", "mapson", "milter-regex", "mimedefang", "normalizemime", "opendkim", "opendmarc", "opensmtpd-filter-rspamd", "policyd-weight", "policyd", "popfile", "postforward", "postfwd", "postgrey", "postsrsd", "procmail", "pyzor", "razor", "rblcheck", "rspamd", "scmail", "sieve-connect", "sigh", "spamassassin-botnet", "spamassassin", "spamdyke", "spampd", "spamprobe", "spf-engine", "sqlgrey", "zdkimfilter"], "mail-mta": ["courier", "esmtp", "exim", "msmtp", "netqmail", "notqmail", "nullmailer", "opensmtpd", "postfix", "protonmail-bridge", "qpsmtpd", "sendmail", "ssmtp"], "mate-base": ["caja", "libmatekbd", "mate-applets-meta", "mate-applets", "mate-common", "mate-control-center", "mate-desktop", "mate-menus", "mate-panel", "mate-session-manager", "mate-settings-daemon", "mate"], "mate-extra": ["caja-admin", "caja-dropbox", "caja-extensions", "caja-hide", "mate-calc", "mate-indicator-applet", "mate-media", "mate-netbook", "mate-polkit", "mate-power-manager", "mate-screensaver", "mate-sensors-applet", "mate-system-monitor", "mate-user-guide", "mate-user-share", "mate-utils"], "media-fonts": ["Humor-Sans", "ahem", "alee-fonts", "alegreya-sans", "alegreya-serif", "andika", "anonymous-pro", "aquafont", "aquapfont", "arabeyes-fonts", "arkpandora", "arphicfonts", "artwiz-aleczapka-en", "artwiz-latin1", "baekmuk-fonts", "bitstream-cyberbit", "cantarell", "cardo", "cascadia-code", "cheapskatefonts", "clearsans", "cm-unicode", "comic-neue", "corefonts", "courier-prime", "cronyx-fonts", "croscorefonts", "crosextrafonts-caladea", "crosextrafonts-carlito", "culmus", "dejavu", "dina", "droid", "dzongkha-fonts", "eb-garamond", "efont-unicode", "ekushey-bangla-fonts", "encodings", "essays1743", "exljbris-free", "exo", "fantasque-sans-mono", "farsi-fonts", "fgdc-emergency", "fifth-leg", "fira-code", "fira-mono", "fira-sans", "font-adobe-100dpi", "font-adobe-75dpi", "font-adobe-utopia-100dpi", "font-adobe-utopia-75dpi", "font-adobe-utopia-type1", "font-alias", "font-arabic-misc", "font-bh-100dpi", "font-bh-75dpi", "font-bh-lucidatypewriter-100dpi", "font-bh-lucidatypewriter-75dpi", "font-bh-ttf", "font-bh-type1", "font-bitstream-100dpi", "font-bitstream-75dpi", "font-bitstream-speedo", "font-bitstream-type1", "font-cronyx-cyrillic", "font-cursor-misc", "font-daewoo-misc", "font-dec-misc", "font-ibm-type1", "font-isas-misc", "font-jis-misc", "font-micro-misc", "font-misc-cyrillic", "font-misc-ethiopic", "font-misc-meltho", "font-misc-misc", "font-mutt-misc", "font-schumacher-misc", "font-screen-cyrillic", "font-sony-misc", "font-sun-misc", "font-util", "font-winitzki-cyrillic", "font-xfree86-type1", "fontawesome", "fonts-meta", "free-bangla-font", "freefont", "freefonts", "fs-fonts", "gidole", "glass-tty-vt220", "hack", "hermit", "heuristica", "hunkyfonts", "ibm-plex", "inconsolata-hellenic", "inconsolata-lgc", "inconsolata", "intlfonts", "iosevka", "ipaex", "ipamonafont", "ja-ipafonts", "jetbrains-mono", "jisx0213-fonts", "jomolhari", "joypixels", "jsmath-extra-dark", "jsmath", "kacst-fonts", "kanjistrokeorders", "khmer", "kochi-substitute", "konfont", "koruri", "lfpfonts-fix", "lfpfonts-var", "liberation-fonts", "libertine", "lklug", "lohit-assamese", "lohit-bengali", "lohit-devanagari", "lohit-fonts", "lohit-gujarati", "lohit-gurmukhi", "lohit-kannada", "lohit-malayalam", "lohit-marathi", "lohit-nepali", "lohit-odia", "lohit-tamil-classical", "lohit-tamil", "lohit-telugu", "mgopen", "mikachan-font-otf", "mikachan-font-ttc", "mikachan-font-ttf", "mix-mplus-ipa", "monafont", "monoid", "montecarlo", "mplus-fonts", "mplus-outline-fonts", "nanum", "nanumfont", "noto-cjk", "noto-emoji", "noto", "nunito", "nuosu-sil", "office-code-pro", "ohsnap", "oldstandard", "open-sans", "opendesktop-fonts", "oto", "oxygen-fonts", "paratype-astra", "paratype", "pcf2bdf", "pigiarniq", "polarsys-b612-fonts", "pothana2k", "powerline-symbols", "proggy-fonts", "qomolangma", "quivira", "ricty", "roboto", "sazanami", "sgi-fonts", "shinonome", "signika", "sil-abyssinica", "sil-arabicfonts", "sil-charis", "sil-doulos", "sil-ezra", "sil-galatia", "sil-gentium", "sil-padauk", "solarize", "sophia-nubian", "source-han-sans", "source-pro", "stix-fonts", "takao-fonts", "tengwar-fonts", "terminus-font", "termsyn", "tex-gyre", "texcm-ttf", "thaifonts-scalable", "tibetan-machine-font", "ttf-bitstream-vera", "ubuntu-font-family", "umeplus-fonts", "unfonts-extra", "unfonts", "unifont", "urw-fonts", "urwvn-fonts", "vdrsymbols-ttf", "viga", "vlgothic", "vollkorn", "webby-fonts", "wqy-bitmapfont", "wqy-microhei", "wqy-unibit", "wqy-zenhei", "x11fonts-jmk", "zh-kcfonts"], "media-gfx": ["aaphoto", "aewan", "ahoviewer", "album", "alembic", "apng2gif", "apngasm", "apngdis", "apngopt", "argyllcms", "arss", "asymptote", "autopano-sift-C", "aview", "blender", "brscan4", "cairosvg", "cellwriter", "chafa", "clockphoto", "colorhug-client", "converseen", "cropgui", "crwinfo", "cura", "curaengine", "darktable", "dawn", "dcraw", "digikam", "ditaa", "dmtx-utils", "dpic", "duhdraw", "ebdftopcf", "enblend", "engauge", "entangle", "eog-plugins", "eog", "eom", "ephoto", "esci-interpreter-gt-s80", "evoluspencil", "exact-image", "exif", "exiv2", "farbfeld", "fbgrab", "fbida", "fdm-materials", "feh", "figurine", "fim", "flam3", "flameshot", "fondu", "fontforge", "fotowall", "fotoxx", "freecad", "freepv", "frogr", "geeqie", "gif2apng", "gif2png", "gifsicle", "gimp-arrow-brushes", "gimp", "gmic", "gnofract4d", "gnome-font-viewer", "gnome-photos", "gnome-raw-thumbnailer", "gnome-screenshot", "gnuclad", "gozer", "gphoto2", "gphotofs", "gpicview", "graphicsmagick", "graphite2", "graphviz", "grub-splashes", "gscan2pdf", "gthumb", "gtkimageview", "hp2xx", "hugin", "hydrus", "icon-slicer", "icoutils", "igal", "imagemagick", "imageworsener", "img2pdf", "imv", "inkscape", "iscan-data", "iscan-plugin-esdip", "iscan-plugin-gt-f500", "iscan-plugin-gt-f720", "iscan-plugin-gt-x770", "iscan-plugin-gt-x820", "iscan-plugin-network-nt", "iscan-plugin-perfection-v370", "iscan", "jhead", "jigl", "jp2a", "jpeg2ps", "jpeginfo", "jpegoptim", "jpegpixi", "jpegtoavi", "kcoloredit", "kgeotag", "kgraphviewer", "kphotoalbum", "krita", "kuickshow", "kxstitch", "libimagequant", "librecad", "libredwg", "llgal", "luminance-hdr", "lximage-qt", "maim", "mandelbulber", "mcomix", "meshlab", "metapixel", "mkgallery", "monica", "mscgen", "mypaint-brushes", "mypaint", "netpaint", "nomacs", "nvidia-cg-toolkit", "nvidia-texture-tools", "openclipart", "opencsg", "openmesh", "openscad", "opentoonz", "openvdb", "optipng", "panini", "pdf2svg", "pencil", "peps", "photopc", "photoqt", "phototonic", "pixels2pgf", "plantuml", "png2ico", "pngcheck", "pngcrush", "pngnq", "pngquant", "pngrewrite", "pngtoico", "pngtools", "potrace", "povray", "pqiv", "pqstego", "propaganda", "prusaslicer", "psftools", "pstoedit", "qimgv", "qiv", "qrencode", "quat", "qvv", "raw-thumbnailer", "rawtherapee", "recoverjpeg", "ristretto", "rotoscope", "sam2p", "sane-backends", "sane-frontends", "scantailor-advanced", "scour", "scrot", "sfftobmp", "shotwell", "simple-scan", "slic3r", "solvespace", "springgraph", "svg2rlg", "sxiv", "symboleditor", "tachyon", "termtosvg", "tgif", "tif22pnm", "tintii", "transfig", "ttygif", "tuxpaint-stamps", "tuxpaint", "valentina", "viewer", "viewnior", "w3mimgfb", "waifu2x-ncnn-vulkan", "wings", "word_cloud", "xdot", "xfig", "xli", "xloadimage", "xpaint", "xsane", "xv", "xzgv", "yafaray", "zbar", "zgv"], "media-libs": ["Field3D", "SoQt", "SoXt", "a52dec", "aalib", "aften", "allegro", "alsa-lib", "alsa-oss", "alsa-topology-conf", "alsa-ucm-conf", "alure", "ampache_browser", "aribb24", "assimp", "aubio", "audiofile", "avidemux-core", "avidemux-plugins", "babl", "bcg729", "bio2jack", "blib", "cal3d", "chromaprint", "cimg", "clutter-gst", "clutter-gtk", "clutter", "codec2", "cogl", "coin", "compface", "ctl", "dav1d", "devil", "dssi", "dumb", "elgato-streamdeck", "elles_icc_profiles", "embree", "esdl", "exempi", "exiftool", "faac", "faad2", "fdk-aac", "ffmpegsource", "fidlib", "flac", "flickcurl", "fluidsynth-dssi", "fontconfig", "freealut", "freeglut", "freeimage", "freetype", "freeverb3", "ftgl", "game-music-emu", "ganv", "gavl", "gd", "gegl", "gexiv2", "giblib", "giflib", "glew", "glfw", "glm", "glpng", "glu", "glyr", "gmmlib", "gnonlin", "graphene", "grilo", "gsound", "gst-plugins-bad", "gst-plugins-base", "gst-plugins-good", "gst-plugins-ugly", "gst-rtsp-server", "gstreamer-editing-services", "gstreamer", "guilib", "gupnp-dlna", "hamlib", "harfbuzz", "icc-profiles-basiccolor-printing2009", "icc-profiles-openicc", "icclib", "id3lib", "ilmbase", "imlib", "imlib2", "intel-mediasdk", "jbig2dec", "jbig2enc", "jbigkit", "kcolorpicker", "kimageannotator", "kodi-platform", "kquickimageeditor", "kvazaar", "ladspa-sdk", "lasi", "lastfmlib", "lcms", "lensfun", "leptonica", "lib3ds", "lib3mf", "libaacplus", "libaacs", "libafterimage", "libao", "libaom", "libart_lgpl", "libass", "libavif", "libbdplus", "libbluray", "libbs2b", "libbsb", "libcaca", "libcanberra", "libcdaudio", "libcddb", "libcdr", "libchamplain", "libclastfm", "libcue", "libcuefile", "libdc1394", "libdca", "libde265", "libdiscid", "libdmtx", "libdv", "libdvbcsa", "libdvbpsi", "libdvd-audio", "libdvdcss", "libdvdnav", "libdvdread", "libebur128", "libemf", "libeot", "libepoxy", "libexif", "libextractor", "libfame", "libffado", "libfishsound", "libfpx", "libfreehand", "libggi", "libggigcp", "libggimisc", "libggiwmh", "libgig", "libgii", "libglvnd", "libgphoto2", "libgpod", "libgroove", "libharu", "libhdhomerun", "libheif", "libicns", "libid3tag", "libiec61883", "libifp", "libilbc", "libinsane", "libiptcdata", "libirman", "libjpeg-turbo", "libjsw", "libkate", "libkeyfinder", "liblastfm", "libldac", "liblingoteach", "liblo", "liblqr", "liblrdf", "liblscp", "libltc", "libmad", "libmatemixer", "libmatroska", "libmediaart", "libmediainfo", "libmetalink", "libmikmod", "libmms", "libmng", "libmodplug", "libmp3splt", "libmp4v2", "libmpd", "libmpdclient", "libmpeg2", "libmpeg3", "libmpris2client", "libmtp", "libmygpo-qt", "libmypaint", "libnjb", "libnsbmp", "libnsgif", "libnspsl", "libofa", "libogg", "liboggz", "libopenaptx", "libopenglrecorder", "libopenmpt", "libopenraw", "libopenshot-audio", "libopenshot", "libopusenc", "libpagemaker", "libpano13", "libpgf", "libplacebo", "libpng-compat", "libpng", "libpqstego", "libprojectm", "libqaccessibilityclient", "libquicktime", "libquvi-scripts", "libquvi", "libraw", "libreplaygain", "librosprite", "libsamplerate", "libsbsms", "libsdl", "libsdl2", "libsfml", "libshout", "libsidplay", "libsidplayfp", "libsixel", "libsmf", "libsndfile", "libsoundio", "libsoundtouch", "libsvgtiny", "libtaginfo", "libtgvoip", "libtheora", "libtiger", "libtimidity", "libuninameslist", "libuvc", "libv4l", "libvisio", "libvisual", "libvorbis", "libvpx", "libwebp", "libwmf", "libxmi", "libxspf", "libxtract", "libyami", "libzen", "libzmf", "lilv", "lsp-plugins", "lv2", "lvtk", "mesa", "mlt", "munt-mt32emu", "musicbrainz", "mutagen", "nas", "netpbm", "noise-suppression-for-voice", "nv-codec-headers", "oidn", "openal", "opencollada", "opencolorio", "opencore-amr", "openctm", "opencv", "openexr", "openglide", "openh264", "openimageio", "openjpeg", "opensubdiv", "opus", "opusfile", "osl", "partio", "pcaudiolib", "phat", "phonon-gstreamer", "phonon-vlc", "phonon", "plib", "plotutils", "pnglite", "portaudio", "portmidi", "ptex", "pulseaudio-qt", "qhull", "qtav", "quarter", "quesoglc", "quvi", "raptor", "raspberrypi-userland-bin", "raspberrypi-userland", "resid", "rlottie", "rnnoise", "rtaudio", "rubberband", "sbc", "sdl-gfx", "sdl-image", "sdl-mixer", "sdl-net", "sdl-pango", "sdl-sound", "sdl-terminal", "sdl-ttf", "sdl2-gfx", "sdl2-image", "sdl2-mixer", "sdl2-net", "sdl2-ttf", "sg", "sge", "shaderc", "simage", "smpeg", "smpeg2", "soxr", "spandsp", "speex", "speexdsp", "sratom", "stimg", "stk", "stops", "suil", "svgalib", "svt-av1", "t1lib", "taglib-extras", "taglib", "tg_owt", "theoraplay", "tiff", "tremor", "tse3", "urt", "vamp-plugin-sdk", "vidstab", "vigra", "virglrenderer", "vitamtp", "vo-aacenc", "vo-amrwbenc", "volpack", "vulkan-layers", "vulkan-loader", "waffle", "webrtc-audio-processing", "woff2", "wxsvg", "x264", "x265", "xine-lib", "xvid", "zimg", "zita-alsa-pcmi", "zita-convolver", "zita-resampler", "zmusic", "zvbi", "zxing-cpp", "libfreeaptx"], "media-plugins": ["alsa-plugins", "alsaequal", "amb-plugins", "ams-lv2", "audacious-plugins", "calf", "caps-plugins", "cmt-plugins", "fil-plugins", "frei0r-plugins", "g2reverb", "gimp-lqr", "gkrellmpc", "gmpc-alarm", "gmpc-albumview", "gmpc-avahi", "gmpc-awn", "gmpc-discogs", "gmpc-extraplaylist", "gmpc-jamendo", "gmpc-last-fm", "gmpc-libnotify", "gmpc-lyrics", "gmpc-lyricwiki", "gmpc-magnatune", "gmpc-mdcover", "gmpc-mmkeys", "gmpc-mserver", "gmpc-playlistsort", "gmpc-shout", "gmpc-tagedit", "grilo-plugins", "gst-plugins-a52dec", "gst-plugins-amr", "gst-plugins-aom", "gst-plugins-assrender", "gst-plugins-bluez", "gst-plugins-bs2b", "gst-plugins-cairo", "gst-plugins-cdio", "gst-plugins-cdparanoia", "gst-plugins-chromaprint", "gst-plugins-colormanagement", "gst-plugins-dash", "gst-plugins-dtls", "gst-plugins-dts", "gst-plugins-dv", "gst-plugins-dvb", "gst-plugins-dvdread", "gst-plugins-faac", "gst-plugins-faad", "gst-plugins-flac", "gst-plugins-gdkpixbuf", "gst-plugins-gtk", "gst-plugins-hls", "gst-plugins-jack", "gst-plugins-jpeg", "gst-plugins-kate", "gst-plugins-ladspa", "gst-plugins-lame", "gst-plugins-libav", "gst-plugins-libde265", "gst-plugins-libmms", "gst-plugins-libnice", "gst-plugins-libpng", "gst-plugins-libvisual", "gst-plugins-lv2", "gst-plugins-meta", "gst-plugins-modplug", "gst-plugins-mpeg2dec", "gst-plugins-mpeg2enc", "gst-plugins-mpg123", "gst-plugins-mplex", "gst-plugins-neon", "gst-plugins-ofa", "gst-plugins-opencv", "gst-plugins-openh264", "gst-plugins-opus", "gst-plugins-oss", "gst-plugins-pulse", "gst-plugins-raw1394", "gst-plugins-resindvd", "gst-plugins-rtmp", "gst-plugins-shout2", "gst-plugins-sidplay", "gst-plugins-smoothstreaming", "gst-plugins-sndio", "gst-plugins-soundtouch", "gst-plugins-soup", "gst-plugins-speex", "gst-plugins-srt", "gst-plugins-srtp", "gst-plugins-taglib", "gst-plugins-twolame", "gst-plugins-uvch264", "gst-plugins-v4l2", "gst-plugins-vaapi", "gst-plugins-voaacenc", "gst-plugins-voamrwbenc", "gst-plugins-vpx", "gst-plugins-wavpack", "gst-plugins-webrtc", "gst-plugins-x264", "gst-plugins-x265", "gst-plugins-ximagesrc", "gst-plugins-zbar", "gst-transcoder", "hdx-realtime-media-engine", "hexter", "imlib2_loaders", "ir_lv2", "kodi-audiodecoder-modplug", "kodi-audiodecoder-nosefart", "kodi-audiodecoder-sacd", "kodi-audiodecoder-sidplay", "kodi-audiodecoder-snesapu", "kodi-audiodecoder-stsound", "kodi-audiodecoder-timidity", "kodi-audiodecoder-vgmstream", "kodi-audioencoder-flac", "kodi-audioencoder-lame", "kodi-audioencoder-vorbis", "kodi-audioencoder-wav", "kodi-game-libretro-bnes", "kodi-game-libretro-dosbox", "kodi-game-libretro-fceumm", "kodi-game-libretro-nestopia", "kodi-game-libretro-snes9x", "kodi-game-libretro-twentyfortyeight", "kodi-game-libretro", "kodi-imagedecoder-heif", "kodi-imagedecoder-raw", "kodi-inputstream-adaptive", "kodi-inputstream-ffmpegdirect", "kodi-inputstream-rtmp", "kodi-peripheral-joystick", "kodi-peripheral-steamcontroller", "kodi-pvr-argustv", "kodi-pvr-demo", "kodi-pvr-dvblink", "kodi-pvr-dvbviewer", "kodi-pvr-filmon", "kodi-pvr-hts", "kodi-pvr-iptvsimple", "kodi-pvr-mediaportal-tvserver", "kodi-pvr-mythtv", "kodi-pvr-nextpvr", "kodi-pvr-njoy", "kodi-pvr-pctv", "kodi-pvr-stalker", "kodi-pvr-vbox", "kodi-pvr-vdr-vnsi", "kodi-pvr-vuplus", "kodi-pvr-wmc", "kodi-pvr-zattoo", "kodi-screensaver-asteroids", "kodi-screensaver-asterwave", "kodi-screensaver-biogenesis", "kodi-screensaver-cpblobs", "kodi-screensaver-greynetic", "kodi-screensaver-matrixtrails", "kodi-screensaver-pingpong", "kodi-screensaver-pyro", "kodi-screensaver-shadertoy", "kodi-screensaver-stars", "kodi-vfs-libarchive", "kodi-vfs-rar", "kodi-vfs-sftp", "kodi-visualization-fishbmc", "kodi-visualization-goom", "kodi-visualization-projectm", "kodi-visualization-shadertoy", "kodi-visualization-spectrum", "kodi-visualization-starburst", "kodi-visualization-waveform", "ladspa-bs2b", "libvisual-plugins", "libvisual-projectm", "live", "mcp-plugins", "mda-lv2", "mythplugins", "noise-repellent", "qmmp-plugin-pack", "rev-plugins", "swh-lv2", "swh-plugins", "tap-plugins", "vamp-aubio-plugins", "vamp-libxtract-plugins", "vco-plugins", "vdr-actuator", "vdr-avards", "vdr-beep", "vdr-burn-templates", "vdr-burn", "vdr-calc", "vdr-cdplayer", "vdr-cinebars", "vdr-clock", "vdr-ddci2", "vdr-devstatus", "vdr-dummydevice", "vdr-duplicates", "vdr-dvbapi", "vdr-dvbhddevice", "vdr-dvbsddevice", "vdr-dvd", "vdr-dvdswitch", "vdr-epgsearch", "vdr-epgsync", "vdr-exec", "vdr-extrecmenu", "vdr-femon", "vdr-ffnetdev", "vdr-filebrowser", "vdr-freecell", "vdr-fritzbox", "vdr-graphlcd", "vdr-imonlcd", "vdr-iptv", "vdr-joystick", "vdr-launcher", "vdr-lcdproc", "vdr-live", "vdr-loadepg", "vdr-menuorg", "vdr-mlist", "vdr-mp3ng", "vdr-mplayer", "vdr-newsticker", "vdr-noepg", "vdr-osdserver", "vdr-osdteletext", "vdr-peer", "vdr-permashift", "vdr-pin", "vdr-powermate", "vdr-pvr350", "vdr-radio", "vdr-rcu", "vdr-recsearch", "vdr-remote", "vdr-remoteosd", "vdr-remotetimers", "vdr-rpihddevice", "vdr-rssreader", "vdr-satip", "vdr-scheduler", "vdr-screenshot", "vdr-serial", "vdr-skincurses", "vdr-skinelchi", "vdr-skinsoppalusikka", "vdr-sleeptimer", "vdr-sndctl", "vdr-solitaire", "vdr-span", "vdr-streamdev", "vdr-suspendoutput", "vdr-svdrposd", "vdr-svdrpservice", "vdr-systeminfo", "vdr-ttxtsubs", "vdr-undelete", "vdr-vaapidevice", "vdr-vcd", "vdr-vdrmanager", "vdr-vompserver", "vdr-weatherng", "vdr-wirbelscan", "vdr-xineliboutput", "vdr-zappilot", "x42-avldrums", "x42-plugins", "xsynth-dssi", "zam-plugins"], "media-radio": ["KochMorse", "adifmerg", "ax25-apps", "ax25-tools", "cqrlog", "cwdaemon", "direwolf", "dxcc", "flamp", "fldigi", "flmsg", "flrig", "fsync-mdc1200-decode", "gpredict", "grig", "ibp", "js8call", "qrq", "qsstv", "svxlink", "tlf", "tqsl", "tucnak", "unixcw", "wsjtx", "xastir", "xdx", "xlog", "xwxapt"], "media-sound": ["SmarTagger", "a2jmidid", "abcde", "abcm2ps", "abcmidi", "aeolus", "alac_decoder", "alsa-tools", "alsa-utils", "alsamixer-app", "alsamixergui", "alsaplayer", "amsynth", "apetag", "apulse", "aqualung", "ardour", "ario", "aseqview", "asunder", "aucatctl", "aucdtect", "audacious", "audacity", "audex", "audicle", "audiocompress", "audiotag", "audiotools", "aumix", "awesfx", "aylet", "baudline", "beets", "bempc", "bitmeter", "bluez-alsa", "bplay", "bpmdetect", "bristol", "brutefir", "cadence", "cantata", "cd-discid", "cdcd", "cdparanoia", "cdplay", "cdstatus", "cdtool", "chordii", "chuck", "clementine", "cmix", "cmus", "cmusfm", "combine_wave", "coquillo", "csound", "cvoicecontrol", "dagrab", "darkice", "darksnow", "daudio", "dbmeasure", "dcadec", "dcaenc", "dcd", "deadbeef", "declick", "deinvert", "denemo", "din", "dir2ogg", "drumstick", "dvda-author", "easyeffects", "easytag", "ecasound", "elisa", "erec", "exaile", "ezstream", "fapg", "flac-image", "flac123", "flack", "flacon", "flake", "fluid-soundfont", "fluidsynth", "fmdrv", "fmit", "fmtools", "frescobaldi", "gbsplay", "gigedit", "gimmix", "glurp", "gmorgan", "gmpc", "gmtp", "gmusicbrowser", "gnomad", "gnome-music", "gnome-sound-recorder", "gnump3d", "gogglesmm", "gom", "gpodder", "gqradio", "grip", "gsm", "gst123", "gstreamripper", "gtick", "gtkguitune", "guayadeque", "guitarix", "helm", "herrie", "horgand", "hydrogen", "icecream", "id3", "id3ed", "id3ted", "id3tool", "id3v2", "jaaa", "jack-audio-connection-kit", "jack-keyboard", "jack-rack", "jack-smf-utils", "jack", "jack2", "jack_capture", "jalv", "jamin", "justeport", "kid3", "klick", "kmetronome", "kmidimon", "lame", "lash", "lilypond", "lingot", "linuxsampler", "litestream", "lltag", "lmms", "lollypop", "lxmusic", "mac", "madplay", "mangler", "marrie", "mcdp", "meterbridge", "mhwaveedit", "mikmod", "milkytracker", "mixxx", "mmix", "moc", "modplugtools", "mp32ogg", "mp3asm", "mp3blaster", "mp3c", "mp3cat", "mp3check", "mp3diags", "mp3gain", "mp3info", "mp3report", "mp3splt-gtk", "mp3splt", "mp3unicode", "mp3val", "mp3wrap", "mpc", "mpck", "mpd", "mpdas", "mpdscribble", "mpfc", "mpg123", "mpg321", "mplay", "mps-youtube", "mt-daapd", "multimux", "mumble", "munt-mt32emu-alsadrv", "mup", "murmur", "muse", "musepack-tools", "musescore", "music-file-organizer", "musique", "ncmpc", "ncmpcpp", "normalize", "ogg2mp3", "oggtst", "ogmtools", "openmpt123", "opus-tools", "orpheus", "pamix", "paprefs", "pasystray", "patchage", "pavucontrol-qt", "pavucontrol", "pavumeter", "peercast", "pianobar", "picard", "picoxine", "pitchtune", "pithos", "playerctl", "pms", "pnmixer", "poc", "podcatcher", "podget", "podracer", "potamus", "pragha", "ptabtools", "puddletag", "pulseaudio-ctl", "pulseaudio-modules-bt", "pulseaudio", "pulseeffects", "pulsemixer", "pwavecat", "qastools", "qjackctl", "qmidiarp", "qmidiroute", "qmmp", "qsampler", "qsynth", "qtagger", "qtgain", "qtractor", "qtscrobbler", "quimup", "quodlibet", "rawrec", "rcenter", "redoflacs", "retrovol", "rexima", "rhythmbox", "rip", "ripperx", "rosegarden", "rplay", "saydate", "schismtracker", "scmpc", "scream", "seq24", "setmixer", "sexypsf", "shnflacverify", "shntool", "shorten", "sidplay", "sidplayfp", "smixer", "snapcast", "snd", "sndfile-tools", "sndio", "sndpeek", "solfege", "sonata", "sonic-visualiser", "sooperlooper", "sound-juicer", "soundconverter", "soundkonverter", "sox", "spek", "splay", "split2flac", "spotify-tray", "spotify", "strawberry", "streamripper", "streamtranscoder", "subsonic-bin", "substract_wave", "supercollider", "synaesthesia", "taginfo", "tagtool", "tap-reverbed", "teamspeak-client", "teamspeak-server", "tempest_for_eliza", "terminatorx", "timemachine", "timidity++", "timidity-eawpatches", "timidity-freepats", "tk707", "toolame", "ttaenc", "tudor-volumed", "twolame", "umix", "umurmur", "upmpdcli", "vb2rip", "vbrfixc", "vimpc", "vkeybd", "vlevel", "vlorb", "vmpk", "volumeicon", "volwheel", "vorbis-tools", "vorbisgain", "vsound", "wav2json", "wavbreaker", "wavegain", "wavpack", "wavplay", "wavsplit", "whipper", "wildmidi", "wmsound-data", "xfmpc", "xineadump", "xmms2", "xnoise", "xwax", "yarock", "yoshimi", "zynaddsubfx"], "media-tv": ["channeleditor", "dtv-scan-tables", "dvbstream", "dvbtune", "gentoo-vdr-scripts", "gtk-v4l", "ivtv-utils", "ivtvplayer", "kodi", "linuxtv-dvb-apps", "mythtv-status", "mythtv", "nvtv", "plex-media-server", "shoutcast2vdr", "tvbrowser-bin", "tvheadend", "tvnamer", "v4l-dvb-saa716x", "v4l-utils", "w_scan", "xmltv"], "media-video": ["acidrip", "aegisub", "alevt", "aravis", "asfrecorder", "atomicparsley-wez", "atomicparsley", "avidemux", "baka-mplayer", "bashnapi", "bbtools", "bdsup2sub", "binkplayer", "bino", "blind", "blinkensim", "blinkenthemes", "blinkentools", "bluray_info", "ccextractor", "cclive", "celluloid", "chaplin", "cheese", "clive", "cpvts", "devedeng", "dirac", "droidcam", "dv2sub", "dvbackup", "dvbsnoop", "dvd9to5", "dvd_info", "dvdauthor", "dvdbackup", "dvdimagecmp", "dvdrip", "dvdstyler", "dvgrab", "ffcast", "ffdiaporama", "ffmpeg", "ffmpeg2theora", "ffmpegthumbnailer", "flvstreamer", "frameworks", "gaupol", "gnome-video-effects", "google2srt", "gpac", "guvcview", "gxine", "h264enc", "handbrake", "harvid", "imagination", "isight-firmware-tools", "jubler", "kaffeine", "kino", "libva-utils", "lsdvd", "luvcview", "lxdvdrip", "m2vrequantizer", "makemkv", "matroxset", "mediainfo", "mjpegtools", "mjpg-streamer", "mkclean", "mkvalidator", "mkvtoolnix", "motion", "motiontrack", "movit", "mpeg-tools", "mpeg2vidcodec", "mpglen", "mpgtx", "mplay-sh", "mplayer-sh", "mplayer", "mpv", "noad", "nvidia-video-codec", "nvidia_video_sdk", "obs-studio", "obs-v4l2sink", "ogmrip", "openshot", "oxine", "parole", "peek", "pgmfindclip", "pipewire", "pitivi", "projectx", "qmplay2", "raspberrypi-omxplayer", "rav1e", "recmpeg", "recordmydesktop", "rovclock", "rtmpdump", "setpwc", "shotcut", "shrip", "simplescreenrecorder", "smplayer", "snappy", "sonic-snap", "streamdeck-ui", "streamdvd", "sub2srt", "subcheck", "subliminal", "submux-dvd", "subsync", "subtitlecomposer", "subtitleeditor", "subtitler-yuv", "subtitleripper", "super_demux", "tcmplex-panteltje", "tivodecode", "totem", "transcode", "tsmuxer", "ttcut", "unifi-video", "ushare", "v4l2loopback", "vamps", "vcdimager", "vcsi", "vdr", "vdr2jpeg", "vdrsync", "vdrtools-genindex", "vidcutter", "videotrans", "vidify-audiosync", "vidify", "vlc", "vobcopy", "vstrip", "webcamoid", "x264-encoder", "xine-ui", "xvattr", "xvid4conf", "yle-dl"], "net-analyzer": ["2ping", "alive", "amap", "angst", "apinger", "argus-clients", "argus", "arp-scan", "arp-sk", "arping", "arpoison", "arpon", "arptools", "arpwatch", "authforce", "barnyard", "barnyard2", "bigeye", "bing", "bmon", "braa", "bwbar", "bwm-ng", "bwmon", "bwping", "cacti-spine", "cacti", "calamaris", "carl", "cbm", "chaosreader", "check_mk_agent", "chronograf", "cloudshark", "cnet", "cryptcat", "cutter", "darkstat", "dhcp_probe", "dhcpdump", "dnsenum", "dnsmap", "dnstracer", "driftnet", "echoping", "egressor", "etherape", "ethloop", "ettercap", "fail2ban", "firewalk", "flent", "flow-tools", "flowgrind", "fping", "fprobe", "fragroute", "ftester", "fwlogwatch", "gensink", "gnome-nettool", "goaccess", "gr-fosphor", "graphite-web", "greenbone-security-assistant", "gspoof", "gvm-libs", "gvm-tools", "gvm", "gvmd", "hexinject", "hping", "httping", "hunt", "hydra", "ibmonitor", "icinga2", "ifmetric", "ifstat", "ifstatus", "iftop", "ike-scan", "ipaudit", "ipband", "ipcad", "ipgen", "ipguard", "iplog", "ippl", "ipsumdump", "iptraf-ng", "iptstate", "ipv6toolkit", "isic", "jmx2munin", "jnettop", "kapacitor", "knocker", "labrea", "lft", "lilac", "linkchecker", "macchanger", "masscan", "mbrowse", "mdns-scan", "monitoring-plugins", "mping", "mrtg-ping-probe", "mrtg", "mtr", "multimon-ng", "multipath-tcp-tools", "munin-plugins-zfs", "munin", "nagios-check_dnssec", "nagios-check_fail2ban", "nagios-check_glsa2", "nagios-check_ipmi_sensor", "nagios-check_linux_bonding", "nagios-check_logfiles", "nagios-check_multiple", "nagios-check_mysql_health", "nagios-check_pidfile", "nagios-check_rbl", "nagios-core", "nagios-icinga-openvpn", "nagios-plugin-check_lm_sensors", "nagios-plugin-check_raid", "nagios-plugins-linux-madrisan", "nagios-plugins-snmp", "nagios-plugins", "nagios", "nagircbot", "nagstamon", "nagtrap", "nast", "nbtscan", "nbwmon", "ndoutils", "ndsad", "nessus-agent-bin", "nessus-bin", "net-snmp", "netcat", "netdata", "netdiscover", "nethogs", "neti", "netio", "netperf", "netpipe", "netselect", "nettop", "netwag", "netwatch", "netwox", "nfdump", "ngrep", "nikto", "nipper", "nload", "nmap", "nmapsi", "nmbscan", "nrpe", "nsat", "nsca", "nstats", "ntopng", "nttcp", "nuttcp", "odhcploc", "oinkmaster", "openbsd-netcat", "openvas-scanner", "opsgenie-lamp", "ospd-openvas", "ospd", "ossec-hids", "ostinato", "p0f", "packit", "pathload", "pbnj", "pinger", "pktstat", "pmacct", "pnp4nagios", "poink", "portmon", "portsentry", "prelude-correlator", "prelude-lml-rules", "prelude-lml", "prettyping", "pypacker", "python-gvm", "quidscor", "raddump", "rain", "rrdcollect", "rrdtool", "rtpbreak", "sancp", "sarg", "sbd", "scanlogd", "scanssh", "scapy", "scli", "sec", "sflowtool", "sguil-client", "sguil-sensor", "sinfo", "siphon", "slurm", "smokeping", "snallygaster", "sngrep", "sniffit", "snmpclitools", "snmptt", "snort", "snortalog", "snortsam", "softflowd", "speedtest-cli", "sqlninja", "squid-graph", "squidsites", "squidview", "ssldump", "sslscan", "sslsplit", "ssmping", "suricata", "symon", "synscan", "syweb", "tcpdump", "tcpflow", "tcping", "tcpreen", "tcpreplay", "tcpslice", "tcpstat", "tcptrace", "tcptraceroute", "tcptrack", "telegraf", "testssl", "thc-ipv6", "thcrut", "thrulay", "tleds", "tptest", "tracebox", "traceproto", "traceroute-nanog", "traceroute", "trafshow", "tsung", "ttcp", "upnpscan", "vnstat", "wapiti", "webfuzzer", "wireshark", "xnetload", "xprobe", "yersinia", "zabbix", "zmap", "zniper"], "net-dialup": ["accel-ppp", "cistronradius", "cutecom", "dial", "dwun", "fbgetty", "freeradius-client", "freeradius", "isdn-firmware", "kpnadsl4linux", "linux-atm", "lrzsz", "mgetty", "mingetty", "minicom", "moserial", "mwavem", "neocon", "openl2tp", "picocom", "ppp-scripts", "ppp", "pppconfig", "pptpclient", "radiusclient-ng", "rp-l2tp", "rp-pppoe", "sendpage", "sercd", "speedtouch-usb", "wvdial", "xc", "xl2tpd"], "net-dns": ["avahi", "bind-tools", "bind", "c-ares", "coredns", "ddclient", "djbdns", "dnrd", "dnscap", "dnscrypt-proxy", "dnsdist", "dnshijacker", "dnsmasq", "dnssec-check", "dnssec-root", "dnssec-tools", "dnssec-validator", "dnstop", "dnsviz", "dnswalk", "dog", "ez-ipupdate", "fpdns", "getdns", "hash-slinger", "https_dns_proxy", "idnkit", "knot", "ldns-utils", "libidn", "libidn2", "maradns", "mdns-repeater", "mydns", "ndu", "nsd", "odsclient", "opendnssec", "openresolv", "pdns-recursor", "pdns", "pdnsd", "rbldnsd", "resolv_wrapper", "resolvconf-symlink", "s6-dns", "totd", "unbound", "updatedd", "valtz"], "net-firewall": ["arno-iptables-firewall", "arptables", "conntrack-tools", "ebtables", "ferm", "firehol", "firewalld", "fwbuilder", "fwknop", "ipkungfu", "ipset", "ipt_netflow", "iptables", "itval", "lutelwall", "nfacct", "nftables", "nftlb", "nufw", "pglinux", "psad", "rtsp-conntrack", "sanewall", "shorewall", "ufw", "xtables-addons"], "net-fs": ["autofs", "btfs", "cifs-utils", "curlftpfs", "cvmfs", "davfs2", "docker-volume-netshare", "libnfs", "mc", "minio", "netatalk", "nfs-utils", "nfs4-acl-tools", "openafs-legacy", "openafs", "s3backer", "s3fs", "samba", "smbnetfs", "smbtad", "sshfs", "wdfs"], "net-ftp": ["atftp", "cmdftp", "filezilla", "frox", "ftp", "ftpbase", "gftp", "gproftpd", "lftp", "linksys-tftp", "ncftp", "proftpd", "profxp", "pure-ftpd", "pureadmin", "tftp-hpa", "tnftp", "uftpd", "vsftpd", "yafc"], "net-im": ["bitlbee-facebook", "bitlbee-steam", "bitlbee", "centerim", "choqok", "corebird", "coturn", "cpop", "dianara", "dino", "discord-bin", "ejabberd", "ekg2", "element-desktop-bin", "empathy", "err", "gajim", "gg-transport", "gitter-bin", "jabber-base", "kouchat", "libcommuni", "librvp", "mattermost-desktop-bin", "mcabber", "neochat", "openmittsu", "pidgin", "poezio", "profanity", "prosody-modules", "prosody", "psi", "psimedia", "purple-events", "qtox", "ricochet", "rocketchat-desktop-bin", "sendxmpp", "signal-cli-bin", "signal-desktop-bin", "skype-dbus-mock", "skypeforlinux", "slack", "spectrum2", "swift", "teams", "telegram-desktop-bin", "telegram-desktop", "telepathy-connection-managers", "telepathy-logger", "telepathy-mission-control", "tkabber", "toxic", "transwhat", "vacuum", "webex", "whatsapp-desktop-bin", "yowsup", "ysm", "zoom"], "net-irc": ["anope", "atheme-services", "bnc", "cgiirc", "dccserver", "eggdrop", "emech", "epic5", "ergo", "hexchat", "ii", "inspircd", "irccloud-desktop-bin", "ircii", "ircmap", "ircstats", "irker", "iroffer-dinoex", "irssi-xmpp", "irssi", "irssistats", "konversation", "kvirc", "limnoria-plugins-chantracker", "limnoria-plugins-jlu5", "limnoria-plugins-progval", "limnoria", "muh", "ngircd", "ninja", "onis", "pisg", "polari", "psybnc", "quassel", "quasselgrep", "rbot", "rhapsody", "scrollz", "sic", "telepathy-idle", "unrealircd", "weechat", "znc-clientbuffer", "znc-igloo-push", "znc-palaver", "znc-playback", "znc"], "net-libs": ["NativeThread", "accounts-qml", "accounts-qt", "aqbanking", "axtls", "balde-markdown", "balde", "biblesync", "c-client", "canlock", "courier-authlib", "courier-unicode", "cppzmq", "cvm", "czmq", "daq", "davix", "dleyna-connector-dbus", "dleyna-core", "dleyna-renderer", "enet", "farstream", "freaklabs-chibiarduino", "glib-networking", "gloox", "gnet", "gnome-online-accounts", "gnutls", "google-cloud-cpp", "grpc", "gsnmp", "gsoap", "gssdp", "gtk-vnc", "gupnp-av", "gupnp-igd", "gupnp", "http-parser", "iax", "ignition-msgs", "ignition-transport", "jreen", "kdav2", "kdsoap-ws-discovery-client", "kdsoap", "kimap2", "ldns", "libaccounts-glib", "libad9361-iio", "libasr", "libasyncns", "libaxc", "libbitcoinconsensus", "libblkmaker", "libbloom", "libbtbb", "libcapi", "libcork", "libcorkipset", "libcrafter", "libdmapsharing", "libdom", "libecap", "libesmtp", "libetpan", "libflowmanager", "libgadu", "libgfbgraph", "libgrss", "libgsasl", "libgssglue", "libhackrf", "libhtp", "libhubbub", "libident", "libiio", "libircclient", "libiscsi", "libisds", "libktorrent", "liblockfile", "libmbim", "libmediawiki", "libmicrodns", "libmicrohttpd", "libmirisdr", "libmnl", "libmrss", "libnatpmp", "libndp", "libnet", "libnetconf2", "libnetfilter_acct", "libnetfilter_conntrack", "libnetfilter_cthelper", "libnetfilter_cttimeout", "libnetfilter_log", "libnetfilter_queue", "libnfnetlink", "libnfsidmap", "libnftnl", "libnice", "libnids", "libnipper", "libnma", "libnpupnp", "libnsl", "libntlm", "libnxml", "liboauth", "libomemo", "liboping", "libosmo-dsp", "libosmocore", "libotr", "libpcap", "libpcapnav", "libpri", "libprotoident", "libproxy", "libpsl", "libqmi", "libquotient", "librouteros", "librsync", "libsearpc", "libsignal-protocol-c", "libsignon-glib", "libslirp", "libsmi", "libsoup", "libsrsirc", "libsrtp", "libssh", "libssh2", "libtelnet", "libtirpc", "libtorrent-rasterbar", "libtorrent", "libtrace", "libupnp", "libupnpp", "libvncserver", "libwebsockets", "libyang", "libzapojit", "liquid-dsp", "loudmouth", "mbedtls", "meanwhile", "miniupnpc", "nDPI", "nativebiginteger", "neon", "net6", "netwib", "nghttp2", "nghttp3", "ngtcp2", "nodejs", "ntirpc", "obby", "onion", "ortp", "pacparser", "phodav", "pjproject", "quiche", "qxmpp", "rabbitmq-c", "rest", "rpc2", "rpcsvc-proto", "rtrlib", "serf", "shairplay", "signon-oauth2", "signon-ui", "signond", "socket_wrapper", "sofia-sip", "srt", "stem", "telepathy-accounts-signon", "telepathy-farstream", "telepathy-glib", "telepathy-logger-qt", "telepathy-qt", "tox", "udns", "uhttpmock", "usrsctp", "wandio", "webkit-gtk", "wvstreams", "xrootd-ceph", "xrootd", "zeromq", "zmqpp"], "net-mail": ["altermime", "amavis-logwatch", "asmail", "automx2", "autorespond", "b4", "checkpassword-pam", "checkpassword", "cmd5checkpw", "courier-imap", "courierpassd", "cyrus-imapd", "dbmail", "django-mailman3", "dot-forward", "dovecot", "email", "eps", "ezmlm-idx", "fdm", "fetchmail", "getmail", "gnubiff", "grepmail", "hyperkitty", "imapsync", "isync", "lbdb", "libdbx", "list-remote-forwards", "mailbase", "mailbox-count", "mailfront", "mailgraph", "mailman-meta", "mailman", "mailmanclient", "mailshears", "mailutils", "mairix", "mboxgrep", "mess822", "metamail", "mhonarc-gentoo", "mhonarc", "mlmmj", "mpack", "mpop", "mswatch", "mu", "muchsync", "nmzmail", "notmuch", "onionrouter", "pflogsumm", "pfqueue", "pop-before-smtp", "pop2imap", "popa3d", "poppassd_ceti", "postfix-logwatch", "postorius", "qlogtools", "qmail-autoresponder", "qmail-notify", "qmailadmin", "qmailanalog", "qmhandle", "qmrtg", "qprint", "qtools", "queue-fix", "queue-repair", "randomsig", "relay-ctrl", "renattach", "ripmime", "ripole", "rss2email", "safecat", "sendEmail", "serialmail", "signify", "smtptools", "swaks", "t-prot", "tnef", "tpop3d", "vchkuser", "vpopmail", "vqadmin", "ytnef"], "net-misc": ["AQtion", "adjtimex", "aget", "aggregate", "anydesk", "apt-cacher-ng", "aria2", "arpd", "arpsponge", "asterisk-core-sounds", "asterisk-extra-sounds", "asterisk-g729", "asterisk-moh-opsound", "asterisk-opus", "asterisk", "astmanproxy", "autossh", "autoupnp", "axel", "babeld", "balance", "batctl", "bfgminer", "bgpq3", "bird", "blinkperl", "bopm", "bridge-utils", "bsdwhois", "buka", "bwwhois", "cadaver", "calico-cni-plugin", "calicoctl", "casync", "cbqinit", "cbugzilla", "cfengine", "cgminer", "chrome-remote-desktop", "chrony", "clockspeed", "clusterssh", "cmst", "cni-plugins", "connect", "connman-gtk", "connman-json-client", "connman-notify", "connman-ui", "connman", "croc", "csync", "curl", "dahdi-tools", "dahdi", "datapipe", "dcetest", "dhcdrop", "dhcp", "dhcpcd-ui", "dhcpcd", "dhcping", "dibbler", "dleyna-server", "drive", "dropbear", "dropbox-cli", "dropbox", "econnman", "efax", "electron-cash", "electrum-ltc", "electrum", "ena-driver", "endlessh", "ethercard-diag", "etherdfs", "ethertypes", "ethflop", "eventd", "exabgp", "fakeidentd", "fatrat", "felix", "freerdp", "frr", "gallery-dl", "gcap", "geoipupdate", "geomyidae", "gerbera", "getdate", "gnome-online-miners", "gnome-remote-desktop", "gns3-gui", "gns3-server", "gofish", "grdesktop", "grive", "gsasl", "gsutil", "gupnp-tools", "gvrpcd", "gwhois", "haeredes", "hashcash", "hath", "htbinit", "htpdate", "httpie", "httpstat", "httptype", "hylafaxplus", "iaxmodem", "icaclient", "icecast", "ices", "ifenslave", "igmpproxy", "ip-sentinel", "ipcalc", "iperf", "ipmiview", "iprange", "ipsorcery", "ipsvd", "iputils", "ipv6calc", "jlj", "jrdesktop", "jwhois", "kafka-bin", "kafkacat", "kea", "keychain", "knock", "l7-filter-userspace", "l7-protocols", "lambdamoo", "lanmap", "libteam", "linux-eoip", "linuxptp", "liveice", "lksctp-tools", "lldpd", "lyricwikia", "mcproxy", "megatools", "memcached", "mico", "midentd", "mikutter", "minidlna", "minissdpd", "miniupnpd", "mobile-broadband-provider-info", "modemmanager", "monmotha", "mosh", "mrouted", "mstpd", "mulk", "nat-traverse", "ncman", "ncp", "ndisc6", "ndppd", "nemesis", "netdate", "netevent", "netifrc", "netkit-bootparamd", "netkit-bootpd", "netkit-fingerd", "netkit-routed", "netkit-rsh", "netkit-talk", "netkit-telnetd", "netkit-timed", "netopeer2", "netpipe", "netpipes", "netsed", "netstat-nat", "networkmanager", "nextcloud-client", "nicstat", "npapi-sdk", "ntp", "ntpsec", "nx", "nxplayer", "nyx", "ofono", "oidc-agent", "oidentd", "olsrd", "omniORB", "omnisync", "openntpd", "openr2", "openssh", "openvswitch", "owncloud-client", "packETH", "pcapfix", "pedro", "pen", "pimpd", "pingu", "pipes", "plowshare", "pmsvn", "portfwd", "portspoof", "pps-tools", "proxychains", "proxytunnel", "ps3mediaserver", "pssh", "ptpd", "puf", "pulseaudio-dlna", "putty", "pyhoca-cli", "pyhoca-gui", "python-x2go", "qtm", "quagga", "r8168", "rabbitmq-server", "radvd", "rclone", "rdate", "rdesktop", "realtek-r8152", "redir", "remmina", "rinetd", "rsync", "rwbs", "rwhoisd", "rygel", "s3cmd", "s6-networking", "samplicator", "scponly", "seafile-client", "seafile", "secpanel", "selfdhcp", "ser2net", "sgopherd", "shigofumi", "shmux", "sipcalc", "sipp", "sipsak", "sitecopy", "sks", "smb4k", "smbc", "snarf", "sntpd", "sobby", "socat", "sock", "socket-burst-dampener", "socket", "spice-gtk", "spiped", "spread", "ssh-askpass-fullscreen", "ssh-chain", "sshpass", "sshrc", "sslh", "sstp-client", "streamlink", "streamtuner", "stunnel", "stuntman", "suite3270", "sysrepo", "taptap", "taylor-uucp", "tcpsound", "teamviewer", "telnet-bsd", "throttle", "tiers", "tigervnc", "tipcutils", "ttytter", "turbovnc", "ubridge", "ucarp", "udpcast", "udpxy", "uftp", "unison", "unix2tcp", "usbip", "utelnetd", "valve", "vconfig", "vde", "vinagre", "vino", "vmnet", "vmpsd", "vncrec", "vncsnapshot", "vrrpd", "wakeonlan", "websocat", "websocketd", "wget", "wget2", "whatmask", "whois", "wol", "wput", "x11-ssh-askpass", "x2goclient", "x2goserver", "xmrig", "yandex-disk", "you-get", "youtube-dl", "youtube-viewer", "zerotier", "zssh", "zsync", "yt-dlp", "s4cmd"], "net-nds": ["389-ds-base", "adtool", "gssproxy", "jxplorer", "ldapvi", "led", "nsscache", "openldap", "phpldapadmin", "rpcbind", "shelldap", "smbldap-tools", "tac_plus", "yp-tools"], "net-news": ["amphetadesk", "canto-curses", "canto-daemon", "liferea", "newsboat", "rssguard", "rsstail", "rsstool", "snownews", "yydecode"], "net-nntp": ["brag", "leafnode", "newspost", "nzbget", "sabnzbd", "slrn", "suck", "tin"], "net-p2p": ["airdcpp-webclient", "amule", "automatic", "bitcoin-cli", "bitcoin-qt", "bitcoind", "bitflu", "bittornado", "classified-ads", "cpuminer-opt", "ctorrent", "dbhub", "deluge", "ed2k_hash", "eiskaltdcpp", "energi3", "fms", "freenet", "gnut", "go-ethereum", "go-ipfs", "gtk-gnutella", "gtorrentviewer", "ktorrent", "litecoind", "mktorrent", "mldonkey", "ncdc", "nicotine+", "opendchub", "qbittorrent", "resilio-sync", "retroshare", "rtorrent", "syncthing", "syrep", "torrentinfo", "transmission-remote-gtk", "transmission", "tremc", "tvrss", "vuze-coreplugins", "vuze"], "net-print": ["apsfilter", "brlaser", "c2esp", "cndrvcups-common-lb", "cndrvcups-lb", "cnijfilter2", "cnrdrvcups-lb", "cups-bjnp", "cups-filters", "cups-pdf", "cups-pk-helper", "cups-windows", "cups", "dymo-cups-drivers", "epson-inkjet-printer-escpr", "fax4cups", "foo2zjs", "foomatic-db-engine", "foomatic-db-ppds", "foomatic-db", "gtklp", "gutenprint", "hplip-plugin", "hplip", "ink", "kyocera-1x2x-mfp-driver", "kyocera-mita-ppds", "libgnomecups", "libinklevel", "lm1100", "mtink", "npadmin", "pnm2ppa", "poster", "splix", "sshlpr"], "net-proxy": ["3proxy", "adzapper", "cntlm", "dante", "dnsproxy", "haproxy-dataplaneapi", "haproxy", "hatop", "havp", "microsocks", "mitmproxy", "nutcracker", "obfs4proxy", "pingtunnel", "piper", "privoxy", "redsocks", "rejik", "shadowsocks-libev", "sqtop", "squid", "squidguard", "squirm", "sshuttle", "tayga", "tinyproxy", "torsocks", "trojan", "tsocks", "wwwoffle", "ziproxy"], "net-voip": ["captagent", "sipvicious", "telepathy-gabble", "telepathy-rakia", "telepathy-salut", "yate"], "net-vpn": ["6tunnel", "badvpn", "corkscrew", "fp-multiuser", "frp", "httptunnel", "i2p", "i2pd", "iodine", "ipsec-tools", "isatapd", "libreswan", "logmein-hamachi", "mullvad-netns", "networkmanager-fortisslvpn", "networkmanager-l2tp", "networkmanager-libreswan", "networkmanager-openconnect", "networkmanager-openvpn", "networkmanager-pptp", "networkmanager-sstp", "networkmanager-strongswan", "networkmanager-vpnc", "nstx", "ocserv", "openconnect", "openfortivpn", "openvpn", "pptpd", "protonvpn-cli", "riseup-vpn", "strongswan", "tailscale", "tinc", "tor", "vpnc", "vpncwatch", "vtun", "wireguard-modules", "wireguard-tools"], "net-wireless": ["aircrack-ng", "airspy", "airtraf", "b43-fwcutter", "bladerf-firmware", "bladerf-fpga", "bladerf", "blueberry", "blueman", "bluez-hcidump", "bluez-tools", "bluez", "broadcom-sta", "bss", "btcrack", "crackle", "crda", "dump1090", "gnome-bluetooth", "gnuradio", "gobi_loader", "gqrx-scanner", "gqrx", "gr-ieee802154", "gr-iio", "gr-iqbal", "gr-m2k", "gr-osmosdr", "gr-paint", "gr-rds", "gr-scan", "gr-scopy", "hackrf-tools", "hidclient", "horst", "hostap-utils", "hostapd", "inspectrum", "iw", "iwd", "iwgtk", "jackit", "kismet-rest", "kismet", "kismetdb", "kismetmobiledashboard", "liblms7002m", "libm2k", "libusb3380", "libxtrx", "libxtrxdsp", "libxtrxll", "limesuite", "linssid", "lorcon", "madwimax", "mdk", "mfoc", "nanovna-saver", "neard", "osmo-fl2k", "portapack-firmware", "portapack-havoc", "qdmr", "reaver", "rfkill", "rtl-sdr", "rtl_433", "rtl_power_fftw", "sdrplay", "sigdigger", "sigutils", "soapy_power", "soapybladerf", "soapyhackrf", "soapyplutosdr", "soapyremote", "soapyrtlsdr", "soapysdr", "soapysdrplay", "soapyuhd", "spectools", "srslte", "suscan", "suwidgets", "tempestsdr", "ubertooth", "uhd", "unifi", "urh", "wavemon", "wepattack", "wepdecrypt", "wireless-regdb", "wireless-tools", "wpa_supplicant", "yatebts"], "perl-core": ["Encode", "ExtUtils-MakeMaker", "ExtUtils-Manifest", "File-Path", "File-Temp", "Getopt-Long", "HTTP-Tiny", "IO-Zlib", "JSON-PP", "Locale-Maketext-Simple", "MIME-Base64", "Math-BigInt", "Math-Complex", "Memoize", "Module-CoreList", "Module-Load", "Module-Loaded", "Module-Metadata", "Params-Check", "Pod-Simple", "Scalar-List-Utils", "Sys-Syslog", "Term-ANSIColor", "Test-Simple", "Test", "Text-Balanced", "Text-ParseWords", "Text-Tabs+Wrap", "Thread-Semaphore", "Time-HiRes", "Unicode-Collate", "libnet", "parent", "podlators", "version"], "ros-meta": ["ament_cmake", "audio_common", "bond_core", "calibration", "common_msgs", "common_tutorials", "desktop", "desktop_full", "diagnostics", "driver_common", "executive_smach", "gazebo_ros_pkgs", "geographic_info", "geometry", "geometry2", "geometry_tutorials", "hector_localization", "hector_slam", "image_common", "image_pipeline", "image_transport_plugins", "imu_pipeline", "imu_tools", "laser_pipeline", "mavros", "navigation", "nodelet_core", "perception", "perception_pcl", "pr2_common", "qt_gui_core", "robot", "robot_model", "ros", "ros_base", "ros_comm", "ros_control", "ros_core", "ros_tutorials", "rosbridge_suite", "roscpp_core", "rosserial", "rqt", "rqt_common_plugins", "rqt_robot_plugins", "simulators", "slam_gmapping", "unique_identifier", "vision_opencv", "vision_visp", "visualization_tutorials", "viz"], "sci-astronomy": ["aatm", "casa-data", "cdsclient", "celestia", "cpl", "ds9-bin", "erfa", "esomidas", "esorex", "fitsh", "fitspng", "funtools", "galaxy", "gasgano", "gnuastro", "healpix", "idlastro", "kstars", "missfits", "montage", "pal", "predict", "psfex", "pyephem", "scamp", "sextractor", "skycat", "skymaker", "sofa_c", "stellarium", "stiff", "stuff", "swarp", "wcslib", "wcstools", "weightwatcher", "xephem", "xfitsview"], "sci-biology": ["ApE", "GBrowse", "HTSeq", "STAR", "aaindex", "abyss", "amap", "augustus", "bamtools", "bcftools", "bedtools", "bfast", "biogrep", "biopandas", "bioperl-db", "bioperl-network", "bioperl-run", "bioperl", "biopython", "biosql", "blat", "bowtie", "bwa", "cd-hit", "clustal-omega", "clustalw-mpi", "clustalw", "clustalx", "consed", "cutg", "dialign-tx", "dialign2", "elph", "embassy-cbstools", "embassy-clustalomega", "embassy-domainatrix", "embassy-domalign", "embassy-domsearch", "embassy-emnu", "embassy-esim4", "embassy-hmmer", "embassy-iprscan", "embassy-mse", "embassy-phylipnew", "embassy-signature", "embassy-structure", "embassy-topo", "embassy-vienna", "embassy", "emboss", "eugene", "exonerate", "express", "fasta", "fasttree", "fastx_toolkit", "finchtv", "foldingathome", "gibbs", "glimmer", "glimmerhmm", "gmap", "hmmer", "iedera", "infernal", "iqpnni", "kalign", "kallisto", "lagan", "libgtextutils", "mafft", "maq", "maqview", "mcl", "mira", "mosaik", "mothur", "mrbayes", "mummer", "muscle", "newick-utils", "pals", "paml", "phrap", "phred", "phylip", "phyml", "picard", "piler", "pilercr", "plink", "poa", "prank", "primer3", "prints", "probcons", "prodigal", "profphd", "prosite", "pysam", "qrna", "raxml", "rebase", "recon", "repeatmasker-libraries", "repeatmasker", "rmblast", "rnaview", "samtools", "seaview", "seqan", "sibsim4", "sim4", "stride", "t-coffee", "transfac", "tree-puzzle", "treeviewx", "trf", "trnascan-se", "uchime", "ucsc-genome-browser", "unafold", "update-blastdb", "vcftools", "velvet", "wgs-assembler", "wise", "yass"], "sci-calculators": ["bc-gh", "calcoo", "datamash", "galculator", "grpn", "hcalc", "hexcalc", "keurocalc", "orpie", "pcalc", "qalculate-gtk", "speedcrunch", "tiemu", "tilp2", "transcalc", "units", "wcalc", "xsv"], "sci-chemistry": ["GromacsWrapper", "MDAnalysis", "aqua", "autodock", "autodock_vina", "avogadro2", "bodr", "cara-bin", "chemex", "chemical-mime-data", "chemtool", "clashlist", "cluster", "dssp", "easychem", "elem", "gelemental", "gnome-chemistry-utils", "gperiodic", "gromacs", "ksdssp", "mdtraj", "mm-align", "modeller", "molden", "moldy", "molequeue", "molmol", "molscript", "molsketch", "mopac7", "mpqc", "msms-bin", "mustang", "namd", "nmrglue", "numbat", "openbabel-perl", "openbabel", "pdbcat", "pdbcns", "pdbmat", "povscript+", "prekin", "probe", "procheck", "propka", "psi", "pymol", "raster3d", "suitename", "surf", "theseus", "threeV", "tinker", "tm-align", "vmd", "votca-csg", "votca-csgapps", "votca-ctp", "votca-xtp", "wxmacmolplt", "xds-bin", "xyza2pipe"], "sci-electronics": ["Stage", "drahnr-oregano", "eagle", "electric", "electronics-menu", "espresso-ab", "fasthenry", "freehdl", "fritzing", "gazebo", "geda-suite", "geda", "gerbv", "gnetman", "gnucap", "gsmc", "gspeakers", "gspiceui", "gtkwave", "gwave", "irsim", "iverilog", "kicad-footprints", "kicad-i18n", "kicad-meta", "kicad-packages3d", "kicad-symbols", "kicad-templates", "kicad", "klayout", "ktechlab", "labone", "librepcb", "magic", "netgen", "ngspice", "osqoop", "pcb", "petrify", "puff", "pulseview", "qelectrotech", "quartus-prime-lite", "sigrok-cli", "spice", "splat", "systemc", "vbs", "voacapl", "xcircuit", "xnec2c", "xoscope"], "sci-geosciences": ["GeographicLib", "bt747", "congen", "dcw-gmt", "folium", "foxtrotgps", "geocode-glib", "geopy", "gmaptool", "gmt", "gnome-maps", "gpsbabel", "gpscorrelate", "gpsd", "gpx-viewer", "gpxlab", "gpxsee", "grass", "gshhg-gmt", "gshhs-data", "gshhs", "gtk-g-rays2", "harmonics-dwf-free-noncomm", "harmonics-dwf-free", "josm", "laszip", "liblas", "libtcd", "mapserver", "mc2bsbh", "merkaartor", "mtkbabel", "opencpn-plugin-br24radar", "opencpn-plugin-climatology", "opencpn-plugin-dr", "opencpn-plugin-findit", "opencpn-plugin-gxradar", "opencpn-plugin-iacfleet", "opencpn-plugin-launcher", "opencpn-plugin-logbookkonni", "opencpn-plugin-objsearch", "opencpn-plugin-ocpn_draw", "opencpn-plugin-ocpndebugger", "opencpn-plugin-oesenc", "opencpn-plugin-otcurrent", "opencpn-plugin-polar", "opencpn-plugin-radar", "opencpn-plugin-route", "opencpn-plugin-squiddio", "opencpn-plugin-statusbar", "opencpn-plugin-watchdog", "opencpn-plugin-weather_routing", "opencpn-plugin-weatherfax", "opencpn-plugins-meta", "opencpn", "osm-gps-map", "osm2pgsql", "osmctools", "qgis", "qmapshack", "readosm", "routino", "swmm", "tcd-utils", "viking", "xtide", "josm-bin"], "sci-libs": ["ViSP", "adolc", "alglib", "amd", "armadillo", "arpack", "arprec", "atlas", "avogadrolibs", "beagle", "blis", "bliss", "bmrblib", "branca", "brial", "btf", "buddy", "camd", "cantera", "cartopy", "ccfits", "ccolamd", "cdd+", "cddlib", "cdf", "ceres-solver", "cfitsio", "cgcode", "cgnslib", "cholmod", "cifparse-obj", "clapack", "clashscore-db", "clblas", "clblast", "cln", "cminpack", "cmpfit", "coinhsl", "coinor-alps", "coinor-bcp", "coinor-bcps", "coinor-blis", "coinor-bonmin", "coinor-cbc", "coinor-cgl", "coinor-clp", "coinor-couenne", "coinor-cppad", "coinor-csdp", "coinor-dip", "coinor-dylp", "coinor-flopcpp", "coinor-mp", "coinor-netlib", "coinor-os", "coinor-osi", "coinor-sample", "coinor-smi", "coinor-symphony", "coinor-utils", "coinor-vol", "colamd", "colpack", "cqrlib", "cxsparse", "dcmtk", "dealii", "djbfft", "dlib", "dmlc-core", "dsdp", "eccodes", "exodusii", "fcl", "fetk", "fflas-ffpack", "fftw", "flann", "fplll", "galib", "gamer", "gaul-devel", "gdal", "geos", "gerris", "getdata", "ginkgo", "givaro", "gmsh", "gsl", "gts", "h5hut", "h5part", "hdf", "hdf5", "hipCUB", "hipSPARSE", "htslib", "hypre", "idlcoyote", "idlmarkwardt", "ignition-common", "ignition-fuel-tools", "ignition-math", "iml", "inchi", "indilib", "io_lib", "ipopt", "itpp", "jama", "keras-applications", "keras-preprocessing", "kim-api", "kissfft", "klu", "lapack", "ldl", "lemon", "levmar", "libaec", "libbraiding", "libbufr", "libccd", "libcerf", "libcmatrix", "libdap", "libecpint", "libexcelformat", "libgenome", "libgeodecomp", "libgeotiff", "libghemical", "libh2o", "libh2oxx", "libhomfly", "libigl", "libint", "libmems", "libmuscle", "libnova", "liborigin", "libpdb++", "libpdb", "libqalculate", "libsc", "libsigrok", "libsigrokdecode", "libspatialindex", "libsvm", "libticables2", "libticalcs2", "libticonv", "libtifiles2", "libxc", "linbox", "linux-gpib-modules", "linux-gpib", "lis", "lmfit", "lrslib", "m4ri", "m4rie", "mathgl", "matio", "mc", "med", "metis", "minuit", "mkl", "mpfi", "mpir", "mumps", "nanoflann", "neartree", "nemesis", "netcdf-cxx", "netcdf-fortran", "netcdf", "nfft", "nlopt", "numkit", "o2scl", "oc", "oce", "octomap", "ogdi", "openblas", "opencascade", "openlibm", "orocos-bfl", "orocos_kdl", "p4est", "parmetis", "pastix", "pcl", "pgplot", "plplot", "primegen", "profnet", "profphd-utils", "proj", "punc", "pyshp", "qd", "qfits", "qrupdate", "rocFFT", "rocPRIM", "rocRAND", "rocSPARSE", "rocThrust", "rosetta-db", "rtabmap", "rtree", "scalapack", "scikit-image", "scikit-learn", "scikit-optimize", "scotch", "shapelib", "shapely", "silo", "spglib", "spqr", "spr", "stellarsolver", "suitesparse", "suitesparseconfig", "sundials", "superlu", "superlu_mt", "symengine", "symmetrica", "szip", "ta-lib", "tamu_anova", "taucs", "tensorflow-estimator", "tensorflow", "tnt", "trilinos", "udunits", "ufconfig", "umfpack", "volk", "voro++", "votca-tools", "vtk", "xdmf2", "xdrfile", "xgks-pmel", "xylib", "rocBLAS", "libcifpp"], "sci-mathematics": ["4ti2", "agda-stdlib", "agda", "alt-ergo", "arb", "bertini", "calc", "cgal", "cliquer", "coq", "cvc4", "dataplot", "diagrtb", "dsfmt", "dunshire", "eclib", "ent", "euler", "fann", "flint", "flintqs", "form", "fricas", "frobby", "genius", "geogebra-bin", "geomview", "gfan", "giac", "gimps", "ginac", "glpk", "gmm", "gmp-ecm", "gp2c", "gretl", "gsl-shell", "jags", "lcalc", "lpsolve", "lrcalc", "mathematica", "mathmod", "mathomatic", "maxima", "minisat", "msieve", "nauty", "nestedsums", "normaliz", "num-utils", "octave-epstk", "octave", "otter", "pari-data", "pari", "petsc", "planarity", "polymake", "prng", "prover9", "psmt2-frontend", "pspp", "relational", "rkward", "rngstreams", "rstudio", "rw", "sha1-polyml", "singular", "slepc", "spin", "sympow", "topcom", "twelf", "unuran", "why3-for-spark", "wxmaxima", "yacas", "yafu", "z3"], "sci-misc": ["ViSP-images", "apertium", "boinc", "cdfplayer", "fitscut", "fitsverify", "flashdot", "gt-itm", "h5utils", "lttoolbox", "nco", "ncview", "netlogo-bin", "oww", "vitables"], "sci-physics": ["bullet", "clhep", "espresso", "fastjet", "geant-data", "geant", "hepmc", "heppdt", "herwig", "lammps", "lhapdf", "looptools", "pythia", "qmeq", "reduze", "root", "siscone", "thepeg", "vgm", "vmc", "xfoil", "yoda", "geant4_vmc"], "sci-visualization": ["circos", "dash-core-components", "dash-html-components", "dash-table", "dash", "epix", "fig2sxd", "fityk", "g3data", "gcalc", "ggobi", "gle", "gnuplot", "gr", "grace", "gri", "gwyddion", "jupyter-dash", "kst", "labplot", "opendx-samples", "opendx", "paraview", "pythonprop", "quickplot", "scidavis", "spectromatic", "spyview", "tensorboard", "veusz", "xd3d", "xgraph", "xyscan", "zhu3d"], "sec-policy": ["apparmor-profiles", "selinux-abrt", "selinux-accountsd", "selinux-acct", "selinux-afs", "selinux-aide", "selinux-alsa", "selinux-amanda", "selinux-amavis", "selinux-android", "selinux-apache", "selinux-apcupsd", "selinux-apm", "selinux-arpwatch", "selinux-asterisk", "selinux-at", "selinux-automount", "selinux-avahi", "selinux-awstats", "selinux-backup", "selinux-bacula", "selinux-base-policy", "selinux-base", "selinux-bind", "selinux-bitcoin", "selinux-bitlbee", "selinux-bluetooth", "selinux-brctl", "selinux-cachefilesd", "selinux-calamaris", "selinux-canna", "selinux-ccs", "selinux-cdrecord", "selinux-ceph", "selinux-cgmanager", "selinux-cgroup", "selinux-chromium", "selinux-chronyd", "selinux-clamav", "selinux-clockspeed", "selinux-collectd", "selinux-colord", "selinux-corosync", "selinux-couchdb", "selinux-courier", "selinux-cpucontrol", "selinux-cpufreqselector", "selinux-cups", "selinux-cvs", "selinux-cyphesis", "selinux-daemontools", "selinux-dante", "selinux-dbadm", "selinux-dbskk", "selinux-dbus", "selinux-dcc", "selinux-ddclient", "selinux-ddcprobe", "selinux-denyhosts", "selinux-devicekit", "selinux-dhcp", "selinux-dictd", "selinux-dirmngr", "selinux-dirsrv", "selinux-distcc", "selinux-djbdns", "selinux-dkim", "selinux-dmidecode", "selinux-dnsmasq", "selinux-dovecot", "selinux-dpkg", "selinux-dracut", "selinux-dropbox", "selinux-entropyd", "selinux-evolution", "selinux-exim", "selinux-fail2ban", "selinux-fetchmail", "selinux-finger", "selinux-flash", "selinux-fprintd", "selinux-ftp", "selinux-games", "selinux-gatekeeper", "selinux-git", "selinux-gitosis", "selinux-gnome", "selinux-googletalk", "selinux-gorg", "selinux-gpg", "selinux-gpm", "selinux-gpsd", "selinux-gssproxy", "selinux-hddtemp", "selinux-howl", "selinux-icecast", "selinux-ifplugd", "selinux-imaze", "selinux-inetd", "selinux-inn", "selinux-ipsec", "selinux-irc", "selinux-ircd", "selinux-irqbalance", "selinux-jabber", "selinux-java", "selinux-kdeconnect", "selinux-kdump", "selinux-kerberos", "selinux-kerneloops", "selinux-kismet", "selinux-ksmtuned", "selinux-kudzu", "selinux-ldap", "selinux-links", "selinux-lircd", "selinux-loadkeys", "selinux-lockdev", "selinux-logrotate", "selinux-logsentry", "selinux-logwatch", "selinux-lpd", "selinux-mailman", "selinux-makewhatis", "selinux-mandb", "selinux-mcelog", "selinux-memcached", "selinux-milter", "selinux-modemmanager", "selinux-mono", "selinux-mozilla", "selinux-mpd", "selinux-mplayer", "selinux-mrtg", "selinux-munin", "selinux-mutt", "selinux-mysql", "selinux-nagios", "selinux-ncftool", "selinux-networkmanager", "selinux-nginx", "selinux-nslcd", "selinux-ntop", "selinux-ntp", "selinux-nut", "selinux-nx", "selinux-oddjob", "selinux-oident", "selinux-openct", "selinux-openrc", "selinux-openvpn", "selinux-pan", "selinux-pcmcia", "selinux-pcscd", "selinux-phpfpm", "selinux-plymouthd", "selinux-podsleuth", "selinux-policykit", "selinux-portmap", "selinux-postfix", "selinux-postgresql", "selinux-postgrey", "selinux-ppp", "selinux-prelink", "selinux-prelude", "selinux-privoxy", "selinux-procmail", "selinux-psad", "selinux-publicfile", "selinux-pulseaudio", "selinux-puppet", "selinux-pyicqt", "selinux-pyzor", "selinux-qemu", "selinux-qmail", "selinux-quota", "selinux-radius", "selinux-radvd", "selinux-razor", "selinux-redis", "selinux-remotelogin", "selinux-resolvconf", "selinux-rgmanager", "selinux-rngd", "selinux-roundup", "selinux-rpc", "selinux-rpcbind", "selinux-rpm", "selinux-rssh", "selinux-rtkit", "selinux-rtorrent", "selinux-salt", "selinux-samba", "selinux-sasl", "selinux-screen", "selinux-sendmail", "selinux-sensord", "selinux-shorewall", "selinux-shutdown", "selinux-skype", "selinux-slocate", "selinux-slrnpull", "selinux-smartmon", "selinux-smokeping", "selinux-snmp", "selinux-snort", "selinux-soundserver", "selinux-spamassassin", "selinux-speedtouch", "selinux-squid", "selinux-sssd", "selinux-stunnel", "selinux-subsonic", "selinux-sudo", "selinux-sxid", "selinux-syncthing", "selinux-sysstat", "selinux-tboot", "selinux-tcpd", "selinux-tcsd", "selinux-telnet", "selinux-tftp", "selinux-tgtd", "selinux-thunderbird", "selinux-timidity", "selinux-tmpreaper", "selinux-tor", "selinux-tripwire", "selinux-ucspitcp", "selinux-ulogd", "selinux-uml", "selinux-unconfined", "selinux-uptime", "selinux-usbmuxd", "selinux-uucp", "selinux-uwimap", "selinux-uwsgi", "selinux-varnishd", "selinux-vbetool", "selinux-vdagent", "selinux-vde", "selinux-virt", "selinux-vlock", "selinux-vmware", "selinux-vnstatd", "selinux-vpn", "selinux-watchdog", "selinux-webalizer", "selinux-wine", "selinux-wireguard", "selinux-wireshark", "selinux-wm", "selinux-xen", "selinux-xfs", "selinux-xprint", "selinux-xscreensaver", "selinux-xserver", "selinux-zabbix"], "sys-apps": ["accountsservice", "ack", "acl", "agedu", "apmd", "apparmor-utils", "apparmor", "apply-default-acl", "arrayprobe", "attr", "audio-entropyd", "baobab", "bar", "baselayout-java", "baselayout-prefix", "baselayout", "bat", "biosdevname", "biosdisk", "bleachbit", "bolt", "bubblewrap", "busybox", "byld", "cciss_vol_status", "ccs-tools", "checkpolicy", "chname", "cinit", "ckbcomp", "clrngd", "collectl", "colorized-logs", "consolation", "conspy", "coreutils", "cpint", "cpuid", "cracklib-words", "crazydiskinfo", "daemonize", "daisydog", "darwin-miscutils", "dbus-broker", "dbus", "dcfldd", "dchroot", "debianutils", "diffutils", "dmapi", "dmidecode", "dnotify", "dog", "dstat", "dtc", "duc", "earlyoom", "ed", "edac-utils", "edid-decode", "edid-fixdim", "elfix", "epoch", "etckeeper", "ethq", "ethtool", "exa", "fakechroot", "fakeroot-ng", "fakeroot", "fbset", "fd", "file", "findutils", "firejail-lts", "firejail", "fix-gnustack", "flashrom", "flatpak", "frandom", "fwts", "fwupd-efi", "fwupd", "fxload", "gawk", "gcp", "gentoo-functions", "gentoo-systemd-integration", "gnome-disk-utility", "gpet", "gptfdisk", "gradm", "grep", "grepcidr", "groff", "gscanbus", "gsmartcontrol", "haveged", "hd-idle", "hdparm", "heirloom-tools", "help2man", "hexdump-esr", "highway", "hotplug2stdout", "hponcfg", "hprofile", "hw-probe", "hwids", "hwinfo", "hwloc", "i2c-tools", "ibm-powerpc-utils", "idle3-tools", "ifd-gempc", "ifplugd", "init-system-helpers", "input-utils", "install-xattr", "intel-performance-counter-monitor", "intel-sa-00075-tools", "inxi", "iotools", "ipmicfg", "ipmitool", "ipmiutil", "iproute2", "irqbalance", "isapnptools", "iucode_tool", "kbd", "kcheck", "kexec-tools", "keyutils", "kmod", "kmscon", "lcdsplash", "lcdutils", "less", "likwid", "linux-misc-apps", "lm-sensors", "lnxhc", "logwatch", "lsadb", "lsb-release", "lsd", "lshw", "lssbus", "lsvpd", "makedev", "man-db", "man-pages-posix", "man-pages", "man2html", "mawk", "mcstrans", "memtest86+", "memtest86-bin", "memtest86", "memtester", "miller", "minijail", "minised", "miscfiles", "mlocate", "mlxup-bin", "moreutils", "most", "mount-gtk", "mouseemu", "msr-tools", "mtree", "nawk", "net-tools", "netkit-base", "netplug", "noexec", "nosig", "nvme-cli", "onerng", "opal-utils", "openrc", "opentmpfiles", "osinfo-db-tools", "osinfo-db", "paxctl", "paxctld", "pciutils", "pcmciautils", "pcsc-lite", "pcsc-slb-rf72-drv", "pcsc-tools", "pick", "pkgcore", "plocate", "pmount-gui", "pmount", "pnputils", "policycoreutils", "portage", "powerpc-utils", "ppc64-diag", "prctl", "preload", "progress", "proot", "pv", "qcontrol", "qdirstat", "qingy", "radeontool", "razercfg", "readahead-list", "rename", "renameutils", "restartd", "restorecond", "ripgrep-all", "ripgrep", "rkflashtool", "rng-tools", "roccat-tools", "rootlesskit", "rtl-entropy", "s390-tools", "s6-linux-init", "s6-linux-utils", "s6-portable-utils", "s6-rc", "s6", "salinfo", "sandbox", "sdparm", "secilc", "sed", "selinux-python", "semodule-utils", "sensei-raw-ctl", "servicelog", "setserial", "sg3_utils", "shadow", "smartmontools", "smc-sum-driver", "smc-sum", "smcipmitool", "sparc-utils", "spu-tools", "stroke", "superdiag", "superiotool", "syscriptor", "syslog-notify", "systemd-readahead", "systemd-tmpfiles", "systemd", "sysvinit", "tas", "tcp-wrappers", "texinfo", "the_silver_searcher", "thunderbolt-software-user-space", "tomoyo-tools", "toybox", "tuned", "uam", "ucspi-proxy", "ucspi-ssl", "ucspi-tcp", "ucspi-unix", "udevil", "unscd", "usb_modeswitch", "usbguard", "usbmon", "usbredir", "usbutils", "usermode-utilities", "utempter", "util-linux", "vbetool", "watchdog", "which", "x86info", "xdg-dbus-proxy", "xdg-desktop-portal-gtk", "xdg-desktop-portal", "xinetd", "xmbmon", "yarn", "zorroutils"], "sys-auth": ["AusweisApp2", "docker_auth", "elogind", "fprintd", "google-authenticator-libpam-hardened", "google-authenticator-wrappers", "google-authenticator", "libfprint", "libnss-cache", "libnss-mysql", "libnss-nis", "libnss-pgsql", "libyubikey", "munge", "nss-mdns", "nss-myhostname", "nss-pam-ldapd", "nss_ldap", "oath-toolkit", "otpcalc", "pam-pgsql", "pam-script", "pam_abl", "pam_blue", "pam_dotfile", "pam_fprint", "pam_krb5", "pam_ldap", "pam_mktemp", "pam_mount", "pam_mysql", "pam_p11", "pam_require", "pam_skey", "pam_smb", "pam_ssh", "pam_ssh_agent_auth", "pam_u2f", "pam_yubico", "pambase", "passwdqc", "polkit-pkla-compat", "polkit-qt", "polkit", "realtime-base", "rtkit", "seatd", "skey", "solo-python", "ssh-ldap-pubkey", "sssd", "thinkfinger", "ykclient", "ykneo-ccid-tools", "ykpers", "yubico-piv-tool", "yubikey-personalization-gui"], "sys-block": ["aoetools", "arcconf", "blktrace", "buffer", "cec", "devio", "di", "disktype", "endpoint", "f3", "fio", "flashbench", "fwdl", "gpart", "gparted", "hdrecover", "hpacucli", "hpssacli", "io-scheduler-udev-rules", "libfabric", "libzbc", "libzbd", "lsiutil", "mbuffer", "megacli", "megactl", "megamgr", "megarc", "mpt-status", "ms-sys", "mtx", "nbd", "ndctl", "noflushd", "open-iscsi", "open-isns", "parted", "partimage", "partitionmanager", "perccli", "qla-fc-firmware", "raid-check", "sas2ircu", "sas3flash", "sas3ircu", "scsiadd", "scsiping", "scsirastools", "sedutil", "seekwatcher", "smp_utils", "spindown", "storcli", "tapecat", "targetcli-fb", "tgt", "thin-provisioning-tools", "tw_cli", "vblade", "viaideinfo", "whdd", "zram-init"], "sys-boot": ["aboot", "arcload", "bootcreator", "colo", "cromwell-bin", "cromwell", "dvhtool", "efibootmgr", "elilo", "gnu-efi", "grub", "lilo", "makebootfat", "mbr-gpt", "mbr", "milo", "mokutil", "netboot", "nettrom", "os-prober", "palo", "plymouth-openrc-plugin", "plymouth", "raspberrypi-firmware", "refind", "sgibootcd", "shim", "silo", "syslinux", "systemd-boot", "tboot", "unetbootin", "vboot-utils", "woeusb", "yaboot-static", "yaboot"], "sys-cluster": ["ampi", "c3", "ceph", "charliecloud", "charm", "charmdebug", "classads", "cluster-glue", "corosync", "crmsh", "csync2", "drbd-utils", "fake", "galera", "ganglia-web", "ganglia", "gasnet", "glusterfs", "gmqtt", "hpl", "hpx", "ipvsadm", "k3s", "k9scli", "keepalived", "knem", "kops", "kronosnet", "kube-apiserver", "kube-controller-manager", "kube-proxy", "kube-router", "kube-scheduler", "kubeadm", "kubectl", "kubelet", "kubeletctl", "legion", "libcircle", "libqb", "libquo", "lmod", "lustre", "minikube", "mpe2", "mpich", "mpich2", "native-mpi", "nomad", "nullmpi", "onesis", "openmpi", "pacemaker", "pconsole", "ploop", "pmix", "poolmon", "projections", "rdma-core", "resource-agents", "sanlock", "singularity", "slurm", "spark-bin", "teleport", "torque", "ucx", "vzctl", "wulfware", "zetcd", "zookeeper-bin", "zookeepercli"], "sys-devel": ["autoconf-archive", "autoconf-wrapper", "autoconf", "autogen", "automake-wrapper", "automake", "bc", "bin86", "binutils-apple", "binutils-config", "binutils-hppa64", "binutils", "bison", "bmake", "boost-m4", "clang-common", "clang-runtime", "clang", "cons", "crossdev", "ct-ng", "dev86", "distcc", "dwz", "elftoolchain", "flex", "gcc-apple", "gcc-config", "gcc", "gdb-apple", "gdb", "gettext", "gnuconfig", "icecream", "kgcc64", "libtool", "lld", "llvm-common", "llvm-roc", "llvm", "llvmgold", "m4", "make", "multilib-gcc-wrapper", "native-cctools", "parity", "patch", "pmake", "prelink", "qconf", "remake", "rust-std", "slibtool", "smatch", "sparse", "ucpp"], "sys-fabric": ["dapl", "ibacm", "infiniband-diags", "infinipath-psm", "libcxgb3", "libcxgb4", "libehca", "libibcm", "libibmad", "libibumad", "libibverbs", "libipathverbs", "libmlx4", "libmlx5", "libmthca", "libnes", "libocrdma", "librdmacm", "mstflint", "ofed", "opensm", "perftest", "qperf", "rds-tools", "srptools"], "sys-firmware": ["alsa-firmware", "atmel-firmware", "b43-firmware", "b43legacy-firmware", "bluez-firmware", "broadcom-bt-firmware", "edk2-ovmf", "firmware-imx", "intel-microcode", "ipw2100-firmware", "ipw2200-firmware", "ipxe", "ivtv-firmware", "iwl1000-ucode", "iwl3160-7260-bt-ucode", "iwl3160-ucode", "iwl6005-ucode", "iwl6030-ucode", "iwl7260-ucode", "iwl8000-ucode", "midisport-firmware", "nvidia-firmware", "raspberrypi-wifi-ucode", "seabios", "sgabios", "sigrok-firmware-fx2lafw", "sof-firmware", "tt-s2-6400-firmware", "vgabios", "zd1201-firmware", "zd1211-firmware"], "sys-fs": ["android-file-transfer-linux", "archivemount", "arm-fdisk", "atari-fdisk", "aufs-headers", "aufs-util", "autorun", "avfs", "bashmount", "bcache-tools", "bees", "bindfs", "btrfs-progs", "btrfsmaintenance", "cachefilesd", "clamfs", "compsize", "copyfs", "cramfs", "cryfs", "cryptmount", "cryptsetup", "ctmg", "davl", "dd-rescue", "ddrescue", "dfc", "diskdev_cmds", "dislocker", "dmg2img", "dmraid", "dosfstools", "duperemove", "e2fsprogs", "e2tools", "e4rat", "ecryptfs-utils", "encfs", "etcd-fs", "eudev", "exfat-utils", "exfatprogs", "ext3grep", "ext4magic", "extundelete", "f2fs-tools", "fatcat", "fatresize", "fatsort", "fragview", "fscrypt", "fuse-common", "fuse-convmvfs", "fuse-exfat", "fuse-overlayfs", "fuse-zip", "fuse", "fuseiso", "genext2fs", "genfstab", "go-mtpfs", "growpart", "gt5", "hfsplusutils", "hfsutils", "inotify-tools", "iprutils", "jdiskreport-bin", "jfsutils", "jmtpfs", "ldapfuse", "lde", "lessfs", "libeatmydata", "libfat", "loop-aes", "lsscsi", "lufis", "lufs", "lvm2", "lxcfs", "mac-fdisk", "mdadm", "mergerfs", "mhddfs", "mp3fs", "mtd-utils", "mtools", "mtpfs", "multipath-tools", "ncdu", "nilfs-utils", "ntfs3g", "progsreiserfs", "quota", "quotatool", "rar2fs", "reiser4progs", "reiserfs-defrag", "reiserfsprogs", "safecopy", "sandboxfs", "shake", "simple-mtpfs", "snapraid", "squashfs-tools-ng", "squashfs-tools", "squashfuse", "static-dev", "sysfsutils", "tmsu", "treesize", "udev-init-scripts", "udev", "udftools", "udiskie", "udisks", "unionfs-fuse", "vhba", "vzquota", "xfsdump", "xfsprogs", "xwmfs", "yaffs2utils", "zerofree", "zfs-auto-snapshot", "zfs-kmod", "zfs"], "sys-kernel": ["bliss-initramfs", "cryptodev", "dracut-crypt-ssh", "dracut", "genkernel", "gentoo-kernel-bin", "gentoo-kernel", "gentoo-sources", "git-sources", "installkernel-gentoo", "installkernel-systemd-boot", "kergen", "kpatch", "linux-docs", "linux-firmware", "linux-headers", "mips-sources", "pf-sources", "raspberrypi-image", "raspberrypi-sources", "rt-sources", "vanilla-kernel", "vanilla-sources", "zen-sources"], "sys-libs": ["argp-standalone", "binutils-libs", "blocksruntime", "compiler-rt-sanitizers", "compiler-rt", "cracklib", "csu", "cygwin-crypt", "db", "e2fsprogs-libs", "efivar", "fortify-headers", "freeipmi", "fts-standalone", "gdbm", "glibc", "gpm", "gwenhywfar", "kpmcore", "ldb", "libaal", "libapparmor", "libavc1394", "libblockdev", "libcap-ng", "libcap", "libchipcard", "libcxx", "libcxxabi", "libfaketime", "libhugetlbfs", "libhx", "libieee1284", "libixp", "libomp", "libosinfo", "libraw1394", "librtas", "libseccomp", "libselinux", "libsemanage", "libsepol", "libservicelog", "libsmbios", "libstatgrab", "libstdc++-v3", "libtermcap-compat", "libudev-compat", "libunwind", "liburing", "libutempter", "libuuid", "libvpd", "libxcrypt", "llvm-libunwind", "lwp", "mtdev", "musl-nscd", "musl", "native-uuid", "ncurses-compat", "ncurses", "newlib", "nss-usrfiles", "nss_wrapper", "obstack-standalone", "openipmi", "pam", "pam_wrapper", "pwdb", "queue-standalone", "readline", "rpmatch-standalone", "slang", "talloc", "tapi", "tdb", "tevent", "timezone-data", "uclibc-ng", "uid_wrapper", "zlib-ng", "zlib"], "sys-power": ["RyzenAdj", "acpi", "acpi_call", "acpid", "acpilight", "acpitool", "apcupsd", "athcool", "bbswitch", "cpupower", "dptfxtract", "hibernate-script", "iasl", "intel-undervolt", "nut", "nvclock", "nvram-reboot", "pmtools", "powermgmt-base", "powernowd", "powerstat", "powertop", "sispmctl", "suspend", "switcheroo-control", "thermald", "tuxedo-cc-wmi", "uhubctl", "upower"], "sys-process": ["acct", "anacron", "at", "atop", "audit", "bashtop", "bcron", "below", "bottom", "bpytop", "criu", "cronbase", "cronie", "cronutils", "ctop", "daemontools-encore", "daemontools", "dcron", "dumb-init", "evisum", "fcron", "ftop", "glances", "gnome-usage", "htop", "incron", "iotop", "latencytop", "lsof", "memwatch", "minicoredumper", "minit", "nmon", "numactl", "numad", "parallel", "pkill-darwin", "prll", "procenv", "procps", "psinfo", "psmisc", "rtirq", "runit", "schedtool", "supervise-scripts", "systemd-cron", "time", "tini", "tiptop", "top-apple", "uksmd", "unixtop", "usbtop", "wait_on_pid", "watchpid", "xjobs"], "virtual": ["acl", "awk", "bitcoin-leveldb", "blas", "cblas", "checkpassword", "commonlisp", "cron", "daemontools", "dev-manager", "dist-kernel", "dotnet-sdk", "editor", "fam", "fortran", "freedesktop-icon-theme", "glu", "gnustep-back", "gsasl", "httpd-basic", "httpd-cgi", "httpd-fastcgi", "httpd-php", "imagemagick-tools", "imap-c-client", "inetd", "jack", "jdk", "jpeg-compat", "jpeg", "jre", "krb5", "lapack", "lapacke", "latex-base", "libc", "libcrypt", "libelf", "libiconv", "libintl", "libudev", "libusb", "linux-sources", "linuxtv-dvb-headers", "logger", "mailx", "man", "mda", "mpi", "mta", "mysql", "notification-daemon", "ooo", "opencl", "opengl", "os-headers", "package-manager", "pager", "perl-Archive-Tar", "perl-Attribute-Handlers", "perl-AutoLoader", "perl-CPAN-Meta-Requirements", "perl-CPAN-Meta-YAML", "perl-CPAN-Meta", "perl-CPAN", "perl-Carp", "perl-Compress-Raw-Bzip2", "perl-Compress-Raw-Zlib", "perl-DB_File", "perl-Data-Dumper", "perl-Devel-PPPort", "perl-Digest-MD5", "perl-Digest-SHA", "perl-Digest", "perl-Dumpvalue", "perl-Encode", "perl-Exporter", "perl-ExtUtils-CBuilder", "perl-ExtUtils-Constant", "perl-ExtUtils-Install", "perl-ExtUtils-MakeMaker", "perl-ExtUtils-Manifest", "perl-ExtUtils-ParseXS", "perl-File-Path", "perl-File-Spec", "perl-File-Temp", "perl-Filter-Simple", "perl-Getopt-Long", "perl-HTTP-Tiny", "perl-I18N-LangTags", "perl-IO-Compress", "perl-IO-Socket-IP", "perl-IO-Zlib", "perl-IO", "perl-IPC-Cmd", "perl-JSON-PP", "perl-Locale-Maketext-Simple", "perl-Locale-Maketext", "perl-MIME-Base64", "perl-Math-BigInt-FastCalc", "perl-Math-BigInt", "perl-Math-BigRat", "perl-Math-Complex", "perl-Memoize", "perl-Module-CoreList", "perl-Module-Load-Conditional", "perl-Module-Load", "perl-Module-Loaded", "perl-Module-Metadata", "perl-Net-Ping", "perl-Params-Check", "perl-Parse-CPAN-Meta", "perl-Perl-OSType", "perl-Pod-Escapes", "perl-Pod-Parser", "perl-Pod-Simple", "perl-Safe", "perl-Scalar-List-Utils", "perl-Socket", "perl-Storable", "perl-Sys-Syslog", "perl-Term-ANSIColor", "perl-Term-ReadLine", "perl-Test-Harness", "perl-Test-Simple", "perl-Test", "perl-Text-Balanced", "perl-Text-ParseWords", "perl-Text-Tabs+Wrap", "perl-Thread-Queue", "perl-Thread-Semaphore", "perl-Tie-RefHash", "perl-Time-HiRes", "perl-Time-Local", "perl-Time-Piece", "perl-Unicode-Collate", "perl-Unicode-Normalize", "perl-XSLoader", "perl-autodie", "perl-bignum", "perl-if", "perl-libnet", "perl-parent", "perl-podlators", "perl-threads-shared", "perl-threads", "perl-version", "perl6", "pkgconfig", "podofo-build", "python-cffi", "python-greenlet", "qmail", "resolvconf", "ruby-ssl", "rubygems", "rust", "secret-service", "service-manager", "skkserv", "ssh", "szip", "tex-base", "texi2dvi", "tmpfiles", "ttf-fonts", "udev", "w3m", "wine", "yacc"], "www-apache": ["anyterm", "libapreq2", "mod_auth_kerb", "mod_auth_radius", "mod_auth_tkt", "mod_auth_xradius", "mod_authnz_external", "mod_authz_unixgroup", "mod_backtrace", "mod_bw", "mod_caucho", "mod_common_redirect", "mod_dnssd", "mod_evasive", "mod_extract_forwarded", "mod_fastcgi_handler", "mod_fcgid", "mod_gnutls", "mod_h2", "mod_jk", "mod_ldap_userdir", "mod_limitipconn", "mod_log_rotate", "mod_log_sql", "mod_maxminddb", "mod_musicindex", "mod_nss", "mod_perl", "mod_qos", "mod_rpaf", "mod_security", "mod_vdbh", "mod_vhost_ldap", "mod_whatkilledus", "mod_wsgi", "mod_xsendfile", "modsec-flameeyes", "modsecurity-crs", "mpm_itk", "passenger", "pwauth"], "www-apps": ["Apache-Gallery", "agendav", "airdcpp-webui", "baikal", "blazeblogger", "blohg", "bugzilla", "cgisysinfo", "cgit", "cgp", "chromedriver-bin", "cvsweb", "davical", "dokuwiki", "dotproject", "drupal", "element", "gitea", "gitit", "grafana-bin", "hugo", "icingaweb2-module-director", "icingaweb2-module-graphite", "icingaweb2-module-pnp4nagios", "icingaweb2", "ikiwiki", "jekyll-coffeescript", "jekyll-sass-converter", "jekyll-sitemap", "jekyll-watch", "jekyll", "karma-bin", "kibana-bin", "klaus", "liquid_feedback_core", "liquid_feedback_frontend", "mediawiki", "mirmon", "moodle", "mythweb", "nanoblogger", "nanoc-checking", "nanoc-cli", "nanoc-core", "nanoc-deploying", "nanoc-spec", "nanoc", "nextcloud-notify_push", "nextcloud", "nikola", "novnc", "owncloud", "phpBB", "phpsysinfo", "piwigo", "postfixadmin", "prewikka", "radicale", "redmine", "rocketwiki-lqfb", "roundup", "rt", "rutorrent", "trickster", "tt-rss", "webdavcgi", "webmcp", "websvn", "wiliki", "wordpress", "zeppelin-bin", "xpra-html5"], "www-client": ["chromium", "dillo", "elinks", "epiphany", "falkon", "fetch", "firefox-bin", "firefox", "google-chrome-beta", "google-chrome-unstable", "google-chrome", "httrack", "jd", "links", "luakit", "lynx", "microsoft-edge-beta", "microsoft-edge-dev", "midori", "netrik", "netsurf", "opera-beta", "opera-developer", "opera", "otter", "pybugz", "qutebrowser", "seamonkey", "surf", "surfraw", "uget", "vivaldi-snapshot", "vivaldi", "w3m", "w3mmee"], "www-misc": ["awstats", "bookmarksync", "buku", "fcgiwrap", "htdig", "litmus", "log-toolkit", "mergelog", "monitorix", "multisort", "profile-sync-daemon", "shellinabox", "urlwatch", "vdradmin-am", "visitors", "wsmake", "xxv"], "www-plugins": ["browserpass", "chrome-binary-plugins", "gosuslugi-plugin", "lightspark", "passff-host", "pdfjs"], "www-servers": ["adsf", "apache", "boa", "bozohttpd", "caddy", "civetweb", "fnord", "gatling", "gunicorn", "h2o", "lighttpd", "mongrel2", "monkeyd", "moonbridge", "nginx-unit", "nginx", "pound", "pshs", "puma", "servefile", "sniproxy", "spawn-fcgi", "thttpd", "tomcat", "tornado", "uwsgi", "varnish", "xsp", "thin"], "x11-apps": ["appres", "bdftopcf", "beforelight", "bitmap", "editres", "fonttosfnt", "fslsfonts", "fstobdf", "iceauth", "ico", "igt-gpu-tools", "listres", "luit", "mesa-progs", "mkfontscale", "oclock", "radeon-profile-daemon", "radeon-profile", "rgb", "rstart", "scripts", "sessreg", "setxkbmap", "showfont", "smproxy", "transset", "viewres", "x11perf", "xauth", "xbacklight", "xbiff", "xcalc", "xclipboard", "xclock", "xcmsdb", "xconsole", "xcursorgen", "xdbedizzy", "xditview", "xdm", "xdpyinfo", "xdriinfo", "xedit", "xev", "xeyes", "xf86dga", "xfd", "xfontsel", "xgamma", "xgc", "xhost", "xinit", "xinput", "xinput_calibrator", "xisxwayland", "xkbcomp", "xkbevd", "xkbprint", "xkbutils", "xkill", "xload", "xlogo", "xlsatoms", "xlsclients", "xlsfonts", "xmag", "xman", "xmessage", "xmodmap", "xmore", "xpr", "xprop", "xrandr", "xrdb", "xrectsel", "xrefresh", "xset", "xsetroot", "xsm", "xstdcmap", "xvidtune", "xvinfo", "xwarppointer", "xwd", "xwininfo", "xwud", "xrestop"], "x11-base": ["xcb-proto", "xorg-drivers", "xorg-proto", "xorg-server", "xorg-x11", "xwayland"], "x11-drivers": ["nvidia-drivers", "xf86-input-elographics", "xf86-input-evdev", "xf86-input-joystick", "xf86-input-libinput", "xf86-input-mtrack", "xf86-input-synaptics", "xf86-input-vmmouse", "xf86-input-void", "xf86-input-wacom", "xf86-video-amdgpu", "xf86-video-ast", "xf86-video-ati", "xf86-video-dummy", "xf86-video-fbdev", "xf86-video-geode", "xf86-video-glint", "xf86-video-intel", "xf86-video-mga", "xf86-video-nouveau", "xf86-video-nv", "xf86-video-omap", "xf86-video-openchrome", "xf86-video-qxl", "xf86-video-r128", "xf86-video-siliconmotion", "xf86-video-vboxvideo", "xf86-video-vesa", "xf86-video-vmware"], "x11-libs": ["agg", "c++-gtk-utils", "cairo", "colord-gtk", "dnd", "fltk", "fox-wrapper", "fox", "gdk-pixbuf-xlib", "gdk-pixbuf", "gl2ps", "gnome-pty-helper", "goffice", "goocanvas", "gtk+", "gtk+extra", "gtk-mac-integration", "gtkdatabox", "gtkglext", "gtkmathview", "gtksourceview", "libFS", "libGLw", "libICE", "libQGLViewer", "libSM", "libX11", "libXScrnSaver", "libXau", "libXaw", "libXaw3d", "libXaw3dXft", "libXcomposite", "libXcursor", "libXdamage", "libXdmcp", "libXext", "libXfixes", "libXfont2", "libXft", "libXi", "libXinerama", "libXmu", "libXpm", "libXpresent", "libXrandr", "libXrender", "libXres", "libXt", "libXtst", "libXv", "libXvMC", "libXxf86dga", "libXxf86vm", "libast", "libclxclient", "libcryptui", "libdlo", "libdmx", "libdockapp", "libdrm", "libfakekey", "libfm-extra", "libfm-qt", "libfm", "libfontenc", "libgxim", "libnotify", "liboglappth", "libpciaccess", "librfm", "libtinynotify-cli", "libtinynotify-systemwide", "libtinynotify", "libva-compat", "libva-intel-driver", "libva-intel-media-driver", "libva-vdpau-driver", "libva", "libvdpau", "libwnck", "libxcb", "libxcvt", "libxkbcommon", "libxkbfile", "libxklavier", "libxshmfence", "libyui-gtk", "libyui-ncurses", "libyui-qt", "libyui", "motif", "mx", "neXtaw", "pango", "pixman", "qscintilla", "qtermwidget", "qwt", "qwtplot3d", "qwtpolar", "rep-gtk", "scw", "snorenotify", "spread-sheet-widget", "startup-notification", "tslib", "vte", "wxGTK", "xapps", "xbae", "xcb-util-cursor", "xcb-util-image", "xcb-util-keysyms", "xcb-util-renderutil", "xcb-util-wm", "xcb-util-xrm", "xcb-util", "xforms", "xosd", "xpa", "xtrans", "libfakeXinerama"], "x11-misc": ["3ddesktop", "3dfb", "3dfm", "accessx", "alacarte", "albert", "alock", "appmenu-gtk-module", "apwal", "arandr", "autocutsel", "autorandr", "barrier", "bbacpi", "bbcd", "bbdate", "bbkeys", "bblaunch", "bbmail", "bbpager", "bbppp", "bbrun", "bbtime", "bbweather", "birdtray", "blockdpy", "bumblebee", "cairo-clock", "cbatticon", "cdm", "chgres", "clipmenu", "clipnotify", "colord", "compose-tables", "compton", "copyq", "dclock", "devilspie", "devilspie2", "dex", "dmenu", "dunst", "dxpc", "dzen", "e16-keyedit", "e16menuedit2", "easystroke", "efax-gtk", "evolvotron", "fbdesk", "fbpager", "fbpanel", "fireflies", "flow-pomodoro", "fluxter", "fpm2", "fracplanet", "fraqtive", "ftmenu", "gbase", "gbdfed", "gccmakedep", "gcolor2", "genmenu", "gigolo", "gmrun", "gpaste", "grabc", "gromit", "grsync", "grub2-theme-preview", "grun", "gtk2fontsel", "gtkdialog", "gxmessage", "habak", "hsetroot", "i3blocks-contrib", "i3blocks", "i3lock", "i3status", "i855crt", "icon-naming-utils", "iconbox", "idesk-extras", "idesk", "imake", "imwheel", "j4-dmenu-desktop", "kapow", "kaqaz", "kbdd", "kdocker", "kronometer", "ktsuss", "libinput-gestures", "light-locker", "lightdm-gtk-greeter", "lightdm-mini-greeter", "lightdm", "lineak-defaultplugin", "lineak-xosdplugin", "lineakd", "lndir", "lsw", "macopix", "makedepend", "matchbox-keyboard", "mate-notification-daemon", "menulibre", "menumaker", "mgm", "mixer_app", "mozo", "mugshot", "netwmpager", "nitrogen", "notification-daemon", "notify-osd", "numlockx", "obconf-qt", "obconf", "obmenu-generator", "openbox-menu", "oroborus-deskmenu", "oroborus-keylaunch", "parcellite", "pcmanfm-qt", "pcmanfm", "peksystray", "picom", "piedock", "polybar", "prime-run", "primus", "projecteur", "py3status", "qarma", "qcomicbook", "qlipper", "qps", "qt5ct", "qterm", "qtfm", "quitcount", "qxkb", "read-edid", "redshift", "rendercheck", "revelation", "rodent", "rofi-calc", "rofi", "rss-glx", "safeeyes", "screen-message", "screengrab", "screenkey", "sct", "sddm", "seetxt", "sent", "set_opacity", "shared-mime-info", "shutter", "simpleswitcher", "sisctrl", "skippy", "slim", "slock", "slop", "snixembed", "spacefm", "splatmoji", "spnavcfg", "sprop", "sselp", "stalonetray", "sunflower", "sux", "svkbd", "sw-notify-send", "sxhkd", "synergy", "tabbed", "tdrop", "tint2", "tinynotify-send", "touchcal", "trayer-srg", "trayer", "unclutter-xfixes", "unclutter", "urxvt-font-size", "urxvt-perls", "urxvt-tabbedex", "urxvtconfig", "util-macros", "vdpauinfo", "viewglob", "virtualgl", "vnc2swf", "vym", "wayv", "wbar", "wdm", "whaw", "wininfo", "wmctrl", "wmname", "x11vnc", "x2vnc", "x2x", "xaos", "xautolock", "xautomation", "xbatt", "xbattbar", "xbindkeys", "xbitmaps", "xcalendar", "xcalib", "xcape", "xcave", "xcb", "xclip", "xcompmgr", "xdaliclock", "xdesktopwaves", "xdg-user-dirs-gtk", "xdg-user-dirs", "xdg-utils", "xdialog", "xdiskusage", "xdo", "xdock", "xdotool", "xearth", "xfe", "xfishtank", "xflux-gui", "xflux", "xfractint", "xgestures", "xhkeys", "xiccd", "xidle", "xkbd", "xkblayout-state", "xkbset", "xkeyboard-config", "xkeycaps", "xlockmore", "xmobar", "xmountains", "xnee", "xnots", "xorg-cf-files", "xosview", "xowl", "xpad", "xplanet", "xprintidle", "xrootconsole", "xscreensaver-app", "xscreensaver", "xsel", "xsensors", "xsetleds", "xsettingsd", "xsnap", "xsnow", "xsr", "xsri", "xss-lock", "xssstate", "xteddy", "xtermcontrol", "xtitle", "xtoolwait", "xtrace", "xtrlock", "xvfb-run", "xvkbd", "xwallpaper", "xwit", "xwrits", "xxkb", "xystray", "yabar", "zim", "rofi-file-browser-extended"], "x11-plugins": ["allin1", "asapm", "asclock", "ascpu", "asmem", "asmon", "astime", "bfm", "bubblemon", "cputnik", "docker", "e16-epplets", "enigmail", "gkrellaclock", "gkrellfire", "gkrellkam", "gkrellm-bgchanger", "gkrellm-bluez", "gkrellm-countdown", "gkrellm-cpupower", "gkrellm-imonc", "gkrellm-leds", "gkrellm-mailwatch", "gkrellm-plugins", "gkrellm-radio", "gkrellm-trayicons", "gkrellm-vaiobright", "gkrellm-volume", "gkrellm-xkb", "gkrellmlaunch", "gkrellmoon", "gkrellmss", "gkrellmwireless", "gkrellshoot", "gkrellstock", "gkrellsun", "gkrelltop", "gkrellweather", "gkwebmon", "guifications", "hexchat-javascript", "i8krellm", "lurch", "pidgin-birthday-reminder", "pidgin-bot-sentry", "pidgin-encryption", "pidgin-extprefs", "pidgin-funyahoo-plusplus", "pidgin-gnome-keyring", "pidgin-gpg", "pidgin-hotkeys", "pidgin-indicator", "pidgin-latex", "pidgin-led-notification", "pidgin-libnotify", "pidgin-mbpurple", "pidgin-mpris", "pidgin-musictracker", "pidgin-opensteamworks", "pidgin-otr", "pidgin-privacy-please", "pidgin-rhythmbox", "pidgin-sipe", "pidgin-skypeweb", "pidgin-telegram", "pidgin-window_merge", "pidgin-xmpp-receipts", "pidgintex", "purple-facebook", "purple-hangouts", "purple-libnotify-plus", "vicious", "wmCalClock", "wmDownload", "wmMatrix", "wmSMPmon", "wmSpaceWeather", "wmSun", "wmXName", "wmacpi", "wmacpiload-ac", "wmacpimon", "wmail", "wmamixer", "wmapm", "wmapmload", "wmappl", "wmbatteries", "wmbattery", "wmbiff", "wmbinclock", "wmbio", "wmblob", "wmbutton", "wmcalc", "wmcalendar", "wmcdplay", "wmcliphist", "wmclock", "wmclockmon", "wmcms", "wmcoincoin", "wmcp", "wmcpuload", "wmcpuwatch", "wmcube", "wmdiskmon", "wmdots", "wmdrawer", "wmfire", "wmfishtime", "wmforkplop", "wmfortune", "wmfrog", "wmfsm", "wmget", "wmgrabimage", "wmgtemp", "wmhdplop", "wmifinfo", "wmifs", "wminet", "wmitime", "wmix", "wmlife", "wmload", "wmlongrun", "wmmaiload", "wmmand", "wmmemload", "wmmenu", "wmmisc", "wmmixer", "wmmon+smp", "wmmon", "wmmoonclock", "wmmp", "wmmp3", "wmnd", "wmnet", "wmnetload", "wmpager", "wmpasman", "wmpinboard", "wmping", "wmpop3", "wmpop3lb", "wmpower", "wmppp", "wmrack", "wmrecord", "wmsmixer", "wmstickynotes", "wmswallow", "wmsysmon", "wmsystemtray", "wmsystray", "wmtime", "wmtimer", "wmtop", "wmtz", "wmudmount", "wmweather+", "wmweather", "wmwifi", "wmwork", "wmxkb", "wmxres"], "x11-terms": ["alacritty", "aterm", "cool-retro-term", "gnome-terminal", "guake", "kitty-terminfo", "kitty", "kterm", "lilyterm", "mate-terminal", "mlterm", "mrxvt", "qterminal", "root-tail", "roxterm", "rxvt-unicode", "sakura", "st", "terminator", "terminology", "tilda", "xfce4-terminal", "xterm", "yeahconsole", "zutty"], "x11-themes": ["QGnomePlatform", "adapta-gtk-theme", "adwaita-icon-theme", "adwaita-qt", "arc-icon-theme", "arc-theme", "blueglass-xcursors", "chameleon-xcursors", "claws-mail-themes", "clearlooks-phenix", "comix-xcursors", "commonbox-styles-extra", "commonbox-styles", "constantine-backgrounds", "e-flat-theme", "e-gtk-theme", "e16-themes", "echo-icon-theme", "elementary-xfce-icon-theme", "experience", "faenza-icon-theme", "fedora-backgrounds", "flatsvg", "fluxbox-styles-fluxmod", "fvwm-crystal", "fvwm-themes-extra", "fvwm-themes", "fvwm_icons", "fvwm_sounds", "gargantuan-icon-theme", "gartoon-redux", "gartoon", "geany-themes", "gentoo-artwork-livecd", "gentoo-artwork", "gentoo-xcursors", "gentoo10-backgrounds", "geramik", "gkrellm-themes", "gnome-backgrounds", "gnome-colors-common", "gnome-colors-themes", "gnome-icon-theme-extras", "gnome-icon-theme-symbolic", "gnome-themes-standard", "gnustep-neos-theme", "gnustep-silver-theme", "goddard-backgrounds", "golden-xcursors", "greybird", "gtk-chtheme", "gtk-engines-adwaita", "gtk-engines-candido", "gtk-engines-experience", "gtk-engines-flat", "gtk-engines-murrine", "gtk-engines-nodoka", "gtk-engines-qtpixmap", "gtk-engines-quartz", "gtk-engines-rezlooks", "gtk-engines-ubuntulooks", "gtk-engines-unico", "gtk-engines", "gtk-theme-switch", "haematite-xcursors", "hicolor-icon-theme", "human-icon-theme", "iceicons", "icewm-extra-themes", "kfaenza", "kvantum", "larry-backgrounds", "laughlin-backgrounds", "leonidas-backgrounds", "light-themes", "lovelock-backgrounds", "lxqt-themes", "mate-backgrounds", "mate-icon-theme-faenza", "mate-icon-theme", "mate-themes-meta", "mate-themes", "murrine-themes", "neutral-xcursors", "notify-osd-icons", "nou-icon-theme", "numix-gtk-theme", "numix-icon-theme-circle", "numix-icon-theme", "nuovo-icon-theme", "nuvox", "obsidian-xcursors", "oxygen-gtk", "papirus-icon-theme", "pearlgrey-xcursors", "pidgin-penguins-smileys", "pulse-glass", "qtcurve", "redhat-artwork", "sawfish-themes", "shiki-colors", "silver-xcursors", "slim-themes", "smplayer-skins", "smplayer-themes", "solar-backgrounds", "sound-theme-freedesktop", "tactile", "tactile3", "tangerine-icon-theme", "tango-icon-theme-extras", "tango-icon-theme", "ubuntu-wallpapers", "vanilla-dmz-aa-xcursors", "vanilla-dmz-xcursors", "vdr-channel-logos", "verne-backgrounds", "vertex-icon-theme", "vertex-theme", "windowmaker-themes", "wm-icons", "xcursor-themes", "xfce-gant-icon-theme", "xfwm4-themes", "xxv-skins", "yasis-icon-theme", "zuki-themes", "zukini", "zukitwo-shell", "zukitwo"], "x11-wm": ["2bwm", "aewm++", "aewm", "amiwm", "awesome", "blackbox", "bspwm", "ctwm", "cwm", "dwm", "e16", "echinus", "enlightenment", "evilwm", "fluxbox", "fvwm", "goomwwm", "herbstluftwm", "i3-gaps", "i3", "icewm", "jwm", "larswm", "lumina", "lwm", "marco", "matwm2", "metacity", "muffin", "musca", "mutter", "notion", "openbox", "oroborus", "page", "pekwm", "qtile", "ratpoison", "sawfish", "selectwm", "sithwm", "spectrwm", "stumpwm-contrib", "stumpwm", "subtle", "treewm", "twm", "vtwm", "windowlab", "windowmaker", "wm2", "wmfs", "wmii", "xmonad-contrib", "xmonad", "xoat", "xpra"], "xfce-base": ["exo", "garcon", "libxfce4ui", "libxfce4util", "thunar", "xfce4-appfinder", "xfce4-meta", "xfce4-panel", "xfce4-session", "xfce4-settings", "xfconf", "xfdesktop", "xfwm4"], "xfce-extra": ["thunar-archive-plugin", "thunar-media-tags-plugin", "thunar-shares-plugin", "thunar-vcs-plugin", "thunar-volman", "transd", "tumbler", "xfce4-alsa-plugin", "xfce4-battery-plugin", "xfce4-calculator-plugin", "xfce4-clipman-plugin", "xfce4-cpufreq-plugin", "xfce4-cpugraph-plugin", "xfce4-datetime-plugin", "xfce4-dict", "xfce4-diskperf-plugin", "xfce4-eyes-plugin", "xfce4-fsguard-plugin", "xfce4-genmon-plugin", "xfce4-hdaps", "xfce4-indicator-plugin", "xfce4-kbdleds-plugin", "xfce4-mailwatch-plugin", "xfce4-mount-plugin", "xfce4-mpc-plugin", "xfce4-netload-plugin", "xfce4-notes-plugin", "xfce4-notifyd", "xfce4-panel-profiles", "xfce4-places-plugin", "xfce4-power-manager", "xfce4-pulseaudio-plugin", "xfce4-screensaver", "xfce4-screenshooter", "xfce4-sensors-plugin", "xfce4-smartbookmark-plugin", "xfce4-systemload-plugin", "xfce4-taskmanager", "xfce4-time-out-plugin", "xfce4-timer-plugin", "xfce4-vala", "xfce4-verve-plugin", "xfce4-volumed-pulse", "xfce4-wavelan-plugin", "xfce4-weather-plugin", "xfce4-whiskermenu-plugin", "xfce4-xkb-plugin", "xfdashboard"]}, "aliases": {"www-client": "\u0411\u0440\u0430\u0443\u0437\u0435\u0440\u044b", "www-server": "\u0421\u0435\u0440\u0432\u0435\u0440\u0430", "game": "\u0418\u0433\u0440\u044b", "dev-lang": "\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0438\u0440\u043e\u044b\u0432\u0432\u043d\u0438\u0435", "media-video": "\u0412\u0438\u0434\u0435\u043e", "media-sound": "\u0410\u0443\u0434\u0438\u043e"}, "overlays": [{"name": "2xsaiko", "description": "Personal overlay with no special focus", "homepage": "https://git.sr.ht/~dblsaiko/ebuilds"}, {"name": "4nykey", "description": "An experimental portage overlay", "homepage": "https://github.com/4nykey/4nykey"}, {"name": "AlexandreFournier", "description": "Alexandre Fournier's personal overlay", "homepage": "https://github.com/AlexandreFournier/gentoo-overlay"}, {"name": "ArchFeh", "description": "ArchFeh's personal overlay", "homepage": "https://github.com/ArchFeh/ArchFeh-overlay"}, {"name": "AstroFloyd", "description": "AstroFloyd's Gentoo overlay", "homepage": "https://cgit.gentoo.org/user/AstroFloyd.git/"}, {"name": "AzP", "description": "Peter's own software playground", "homepage": "https://cgit.gentoo.org/user/AzP.git/"}, {"name": "Case_Of", "description": "Personal overlay", "homepage": "https://framagit.org/Case_Of/gentoo-overlay"}, {"name": "Drauthius", "description": "Ebuilds related to game dev", "homepage": "https://cgit.gentoo.org/repo/user/Drauthius.git/"}, {"name": "EmilienMottet", "description": "Gentoo Overlay for Emilien Mottet personal/work needs.", "homepage": "https://github.com/EmilienMottet/overlay"}, {"name": "FireBurn", "description": "32bit ebuilds (libdrm, mesa, libx11, mesa-progs, ..)", "homepage": "https://github.com/FireBurn/Overlay"}, {"name": "HomeAssistantRepository", "description": "Home Assistant on Gentoo Linux without virtualenv or docker.", "homepage": "https://git.edevau.net/onkelbeh/HomeAssistantRepository"}, {"name": "JRG", "description": "John's Collaboration Overlay", "homepage": "https://github.com/john-r-graham/jrg-overlay"}, {"name": "KBrown-pub", "description": "KBrown's public overlay", "homepage": "http://sandino.araico.net/"}, {"name": "Miezhiko", "description": "Miezhiko personal overlay", "homepage": "https://github.com/Miezhiko/Overlay"}, {"name": "ROKO__", "description": "Unofficial ebuilds for gentoo based distributions.", "homepage": "https://github.com/sandikata/ROKO__"}, {"name": "R_Overlay", "description": "Gentoo overlay of R packages", "homepage": "https://cgit.gentoo.org/proj/R_overlay.git/"}, {"name": "SarahMiaOverlay", "description": "Everything for Budgie-Desktop and a little bit SarahMia's personal overlay", "homepage": "https://gitlab.com/SarahMia/sarahmiaoverlay"}, {"name": "SwordArMor", "description": "Personnal overlay of alarig/SwordArMor", "homepage": "https://git.grifon.fr/alarig/SwordArMor-gentoo-overlay"}, {"name": "ace", "description": "Personal overlay with ebuilds that were missing at one point or another", "homepage": "https://github.com/ananace/overlay"}, {"name": "activehome", "description": "Gentoo overlay for ebuilds related to 'hand-made' Active Home construction", "homepage": "https://cgit.gentoo.org/user/activehome.git/"}, {"name": "aeon-gentoo-overlay", "description": "Gentoo overlay for Aeon Dev packages and dependencies", "homepage": "https://github.com/aeon-engine/aeon-gentoo-overlay"}, {"name": "ag-ops", "description": "Useful tools for SysAdmins or DevOps", "homepage": "https://gitlab.com/ILMostro/ag-ops"}, {"name": "ago", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/ago.git/"}, {"name": "ahyangyi-overlay", "description": "Ahyangyi's overlay", "homepage": "https://github.com/ahyangyi/ahyangyi-overlay"}, {"name": "akater", "description": "Personal ebuild repository. Emacs, Lisp, minimalism.", "homepage": "https://gitlab.com/akater/ebuilds"}, {"name": "alatar-lay", "description": "Alatar`s personal ebuilds", "homepage": "https://github.com/alatarum/alatar-lay"}, {"name": "alesharik", "description": "Gentoo portage overlay of alesharik", "homepage": "https://github.com/alesharik/alesharik-overlay"}, {"name": "alexcepoi", "description": "Personal User Overlay", "homepage": "https://cgit.gentoo.org/user/alexcepoi.git/"}, {"name": "alexxy", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/alexxy.git/"}, {"name": "aluco", "description": "From drm-next to phoronix-test-suite ebuilds", "homepage": "https://cgit.gentoo.org/user/aluco.git/"}, {"name": "alxu", "description": "Alex Xu (Hello71) personal overlay", "homepage": "https://cgit.alxu.ca/gentoo-overlay.git/"}, {"name": "amedeos", "description": "amedeos's personal overlay", "homepage": "https://github.com/amedeos/amedeos-overlay"}, {"name": "anarchy", "description": "Testing/Bug fixes, new ebuilds", "homepage": "https://cgit.gentoo.org/dev/anarchy.git/"}, {"name": "anard", "description": "Anard's personnal repository, with some new ebuilds", "homepage": "https://github.com/Anard/anard-overlay"}, {"name": "anaximander", "description": "anaximander's user overlay", "homepage": "https://cgit.gentoo.org/user/anaximander.git/"}, {"name": "anders-larsson", "description": "A few packages that are not hosted elsewhere.", "homepage": "https://github.com/anders-larsson/gentoo-overlay"}, {"name": "andrey_utkin", "description": "Developer overlay", "homepage": "https://github.com/andrey-utkin/gentoo-overlay.git"}, {"name": "anomen", "description": "anomen's personal Gentoo overlay", "homepage": "https://github.com/anomen-s/anomen-overlay"}, {"name": "anyc", "description": "Testing ebuilds for out-of-tree applications", "homepage": "https://github.com/anyc/anyc-overlay"}, {"name": "apriluwu", "description": "apriluwu's personal overlay", "homepage": "https://github.com/apriluwu/gentoo-overlay"}, {"name": "argent-main", "description": "Argent Linux", "homepage": "https://gitlab.com/argent/argent-main"}, {"name": "arx-libertatis", "description": "Arx Libertatis Overlay", "homepage": "https://github.com/arx/ArxGentoo"}, {"name": "audio-overlay", "description": "Pro audio overlay. Please file bugs or package suggestions at https://github.com/gentoo-audio/audio-overlay/issues/new", "homepage": "https://github.com/gentoo-audio/audio-overlay"}, {"name": "average", "description": "Personal playground for some ebuilds not found elsewhere", "homepage": "https://github.com/AnAverageHuman/average"}, {"name": "awesome", "description": "Awesome ebuilds", "homepage": "https://gitlab.awesome-it.de/overlays/awesome"}, {"name": "barnowl", "description": "BarnOwl IM client", "homepage": "https://github.com/wthrowe/barnowl-overlay"}, {"name": "beatussum-overlay", "description": "Beatussum's overlay", "homepage": "https://github.com/beatussum/beatussum-overlay"}, {"name": "bell07", "description": "Some ebuilds not found in other overlays, including my server and desktop (xfce) profiles", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "benzene-overlay", "description": "Universebenzene's personal Gentoo overlay", "homepage": "https://github.com/Universebenzene/benzene-overlay"}, {"name": "bes", "description": "bes' personal overlay", "homepage": "https://github.com/bes-internal/gentoo-overlay-bes"}, {"name": "bezerker", "description": "Bezerker's Packages", "homepage": "https://github.com/bezerker/gentoo-overlay"}, {"name": "bibletime", "description": "BibleTime overlay", "homepage": "https://cgit.gentoo.org/user/bibletime.git/"}, {"name": "binaryden", "description": "Overlay for Cinnamon and other Gentoo packages", "homepage": "https://github.com/tkemmer/binaryden"}, {"name": "bircoph", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/bircoph.git/"}, {"name": "bitcetera", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/svoop/bitcetera-overlay"}, {"name": "bitcoin", "description": "Bitcoin and CPU/GPU mining related ebuilds", "homepage": "https://gitlab.com/bitcoin/gentoo.git"}, {"name": "blender-gentoo-logo", "description": "Software needed to render the Blender-based gentoo Logo of 2003", "homepage": "https://gitweb.gentoo.org/repo/proj/blender-gentoo-logo.git/"}, {"name": "bloody", "description": "krita bleeding edge and artists tools/resources", "homepage": "https://github.com/bloodywing/bloody"}, {"name": "bobwya", "description": "Miscellaneous Gentoo ebuilds", "homepage": "https://github.com/bobwya/miscellaneous_ebuilds"}, {"name": "bombo82", "description": "Bombo82's own gentoo overlay", "homepage": "https://github.com/bombo82/bombo82-overlay"}, {"name": "booboo", "description": "L29Ah personal overlay", "homepage": "https://github.com/l29ah/booboo"}, {"name": "brave-overlay", "description": "Brave Overlay", "homepage": "https://gitlab.com/jason.oliveira/brave-overlay"}, {"name": "brother-overlay", "description": "Brother printer and scanner software", "homepage": "https://github.com/stefan-langenmaier/brother-overlay"}, {"name": "bubba", "description": "\"Bubba\" platform support for Excito B2|3", "homepage": "https://github.com/gordonb3/bubba-overlay"}, {"name": "bumblebee", "description": "Packages related to the bumblebee project", "homepage": "https://github.com/Bumblebee-Project/bumblebee-gentoo/"}, {"name": "buzden", "description": "Personal overlay of Denis Buzdalov", "homepage": "https://github.com/buzden/buzden-overlay"}, {"name": "calculate", "description": "Calculate Overlay", "homepage": "http://www.calculate-linux.org"}, {"name": "canutethegreat-overlay", "description": "Overlay for personal projects, forks, and customizations", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "cdlp", "description": "Random/Custom ebuilds, no-(dbus,systemd,pam,polkit,elogind ...) stuff", "homepage": "https://codeberg.org/phranz/cdlp"}, {"name": "ceamac", "description": "This is a small Gentoo overlay with ebuilds that I could not find elsewhere or that I had to modify for some reason.", "homepage": "https://github.com/ceamac/overlay"}, {"name": "certbot-dns-plugins", "description": "Overlay for the DNS plugins of the ACME client certbot", "homepage": "https://github.com/osirisinferi/certbot-dns-plugins-overlay"}, {"name": "cg", "description": "Computer graphics ebuilds for gentoo", "homepage": "https://github.com/brothermechanic/cg"}, {"name": "chrytoo", "description": "Personal overlay for packages that usually aren't in the official repository...", "homepage": "https://github.com/chrytoo/gentoo-overlay"}, {"name": "cj-overlay", "description": "Christoph's Overlay", "homepage": "https://github.com/junghans/cj-overlay"}, {"name": "concaveoverlay", "description": "concavegit's overlay.", "homepage": "https://gitlab.com/concavegit/concaveoverlay"}, {"name": "cosmicmod-overlay", "description": "CosmicMod Overlay", "homepage": "https://github.com/cosmicoz/cosmicmod-overlay"}, {"name": "crocket-overlay", "description": "crocket's personal overlay", "homepage": "https://github.com/crocket/crocket-overlay"}, {"name": "crossdev", "description": "Ebuilds for embedded systems", "homepage": "https://github.com/alphallc/crossdev/"}, {"name": "dargor", "description": "Personal overlay for packages I care of", "homepage": "https://github.com/dargor/dargor_gentoo_overlay"}, {"name": "darkelf", "description": "Overlay focusing on improved user experience for working in darkness on Xfce or zsh (including vim)", "homepage": "https://cgit.gentoo.org/repo/user/darkelf.git"}, {"name": "darthgandalf-overlay", "description": "Personal overlay", "homepage": "https://github.com/DarthGandalf/gentoo-overlay"}, {"name": "deepin", "description": "Gentoo Overlay for Deepin Desktop Environment", "homepage": "https://github.com/zhtengw/deepin-overlay"}, {"name": "defiance", "description": "packages for cloud development", "homepage": "https://github.com/d3fy/defiance-overlay.git"}, {"name": "dequbed", "description": "Personal overlay containing mostly small utilities and less stable package versions", "homepage": "https://github.com/dequbed/overlay.git"}, {"name": "dev1990-overlay", "description": "Personal overlay focused on Qt application development and 3d-printing.", "homepage": "https://github.com/dev-0x7C6/dev1990-overlay.git"}, {"name": "didos", "description": "DidOS overlay gentoo edition", "homepage": "https://github.com/prototype99/didos"}, {"name": "dilfridge", "description": "Dilfridge overlay: experimental ebuilds and lab software", "homepage": "https://cgit.gentoo.org/dev/dilfridge.git/"}, {"name": "displacer", "description": "Fixes and new unstable packages", "homepage": "https://cgit.gentoo.org/user/displacer.git/"}, {"name": "distros", "description": "Calculate Linux Profiles", "homepage": "http://www.calculate-linux.org"}, {"name": "djc", "description": "Personal overlay; testing and early development", "homepage": "https://github.com/djc/djc-overlay"}, {"name": "dlang", "description": "A collection of ebuilds related to the D programming\n language.", "homepage": "https://github.com/gentoo/dlang"}, {"name": "dm9pZCAq", "description": "personal overlay with different packages, mainly with packages with KISS mindset", "homepage": "https://notabug.org/dm9pZCAq/dm9pZCAq-overlay"}, {"name": "dmchurch", "description": "Danielle Church's Portage overlay", "homepage": "https://github.com/dmchurch/portage-overlay"}, {"name": "dotnet", "description": "Experimental overlay for .NET packages.", "homepage": "https://github.com/gentoo/dotnet"}, {"name": "drdim", "description": "Gentoo Layman portage repository for Jetbrains Products", "homepage": "https://github.com/drdim/layman"}, {"name": "dwfreed", "description": "My random Gentoo packages", "homepage": "https://bitbucket.org/dwfreed/dwfreed.gentoo/"}, {"name": "dwosky", "description": "Dwosky's personal overlay", "homepage": "https://github.com/Dwosky/Dwosky-overlay"}, {"name": "earshark", "description": "personal overlay, mostly games related", "homepage": "https://github.com/Chemrat/overlay"}, {"name": "eclipse", "description": "Community effort at packaging Eclipse Java SDK", "homepage": "https://github.com/gentoo/eclipse-overlay"}, {"name": "edgets", "description": "Gentoo overlay that brings you the newest versions of modern software.", "homepage": "https://github.com/BlueManCZ/edgets"}, {"name": "eigenlay", "description": "Eigenlab Gentoo overlay", "homepage": "https://gitlab.com/eigennet/eigenlay"}, {"name": "einflay", "description": "Personal overlay", "homepage": "https://github.com/EinstokFair/einflay"}, {"name": "ejabberd", "description": "Fresh ejabberd versions and dependencies", "homepage": "https://github.com/rion-overlay/ejabberd-overlay"}, {"name": "electron", "description": "Electron Overlay", "homepage": "https://github.com/elprans/electron-overlay"}, {"name": "elementary", "description": "The elementary OS experience for Gentoo Linux. ", "homepage": "https://github.com/pimvullers/elementary"}, {"name": "elopez-r-overlay", "description": "My Gentoo overlay for Ebuilds", "homepage": "https://gitlab.com/libre_hackerman/elopez-r-overlay"}, {"name": "emacs", "description": "Provide Emacs and XEmacs related ebuilds which are\n experimental or work-in-progress. Don't rely on them, but don't\n hesitate to file bugs or write emails.", "homepage": "https://wiki.gentoo.org/wiki/Project:Emacs/Overlay"}, {"name": "enlightenment-live", "description": "Enlightenment WM latest stable version and live ebuilds", "homepage": "https://github.com/rafspiny/enlightenment-live"}, {"name": "equaeghe", "description": "Erik Quaeghebeur's personal Gentoo overlay", "homepage": "https://github.com/equaeghe/gentoo-overlay/"}, {"name": "erayd", "description": "Various personal ebuilds", "homepage": "https://github.com/erayd/overlay"}, {"name": "escpr2", "description": "EPSON ESCPR2 inkjet printer repository", "homepage": "https://gitlab.com/at.gentoo.repo/epson-inkjet-printer-escpr2"}, {"name": "ethereum", "description": "The Ethereum blockchain-based distributed computing platform", "homepage": "https://github.com/coolparadox/ethereum-gentoo-overlay"}, {"name": "eugene-bright", "description": "The personal overlay of Eugene Bright", "homepage": "https://github.com/eugene-bright/eugene-bright-overlay"}, {"name": "ext-devlibs", "description": "Mostly c/c++ and python libraries", "homepage": "https://gitlab.com/extsidvind/ext-devlibs"}, {"name": "farmboy0", "description": "Personal overlay of Enrico Horn", "homepage": "https://github.com/farmboy0/portage-overlay"}, {"name": "fem-overlay", "description": "FeM Gentoo Overlay", "homepage": "https://gitlab.fem-net.de/gentoo/fem-overlay"}, {"name": "ferki", "description": "Ebuilds used and/or proxy maintained by FErki", "homepage": "https://github.com/ferki/gentoo-overlay"}, {"name": "fidonet", "description": "Overlay of Benny Pedersen", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "flammie", "description": "An overlay for gentoo for things Flammie's worked on: Apertium, HFST, computational linguistics, spell-checking, obscure languages...", "homepage": "https://github.com/flammie/flammie-overlay"}, {"name": "flavour", "description": "Personal overlay of Wim Muskee", "homepage": "https://github.com/wimmuskee/flavour"}, {"name": "flewkey-overlay", "description": "Personal Gentoo overlay for flewkey", "homepage": "https://git.sdf.org/flewkey/flewkey-overlay"}, {"name": "flightsim", "description": "Overlay with packages for flight simulation, mainly related to X-Plane", "homepage": "https://github.com/rafaelmartins/flightsim-overlay"}, {"name": "floppym", "description": "floppym's personal overlay", "homepage": "https://github.com/floppym/floppym"}, {"name": "flow", "description": "Ebuilds by Florian Schmaus", "homepage": "https://gitlab.com/Flow/flow-s-ebuilds"}, {"name": "flussence", "description": "Ant P.'s personal overlay", "homepage": "https://repo.or.cz/flussence-overlay.git"}, {"name": "fol4", "description": "fol4 overlay", "homepage": "https://gitlab.com/madsl/fol4"}, {"name": "foo-overlay", "description": "Piotr's fixes and new packages", "homepage": "https://github.com/slashbeast/foo-overlay"}, {"name": "fordfrog", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/fordfrog.git/"}, {"name": "fortunelay", "description": "Overlay for fortunes", "homepage": "https://github.com/Alessandro-Barbieri/fortunelay"}, {"name": "fowlay", "description": "Collection of ebuilds", "homepage": "https://github.com/fowlay/fowlay-overlay"}, {"name": "foxiverlay", "description": "Personal overlay for unofficial ebuilds", "homepage": "https://github.com/Pekkari/foxiverlay"}, {"name": "fritteli", "description": "fritteli's Gentoo Overlay", "homepage": "https://github.com/fritteli/gentoo-overlay"}, {"name": "frr-gentoo", "description": "Free Range Routing Gentoo Overlay", "homepage": "https://frrouting.org/"}, {"name": "fusion809", "description": "Brenton's Portage overlay", "homepage": "https://github.com/fusion809/fusion809-overlay"}, {"name": "gamarouns", "description": "Bits and pieces missing in gentoo or layman repos I need", "homepage": "https://github.com/Amaroun/gamarouns"}, {"name": "gamerlay", "description": "\n Gamers overlay for all various games. Not related with games team.\n ", "homepage": "https://cgit.gentoo.org/proj/gamerlay.git"}, {"name": "gcarq", "description": "Personal overlay", "homepage": "https://github.com/gcarq/gcarq-overlay"}, {"name": "gentoo", "description": "Official Gentoo ebuild repository", "homepage": "https://gentoo.org/"}, {"name": "gentoo-bootstrap", "description": "Overlay providing packages to bootstrap OpenJDK and Rust", "homepage": "https://gitlab.com/stikonas/gentoo-bootstrap"}, {"name": "gentoo-clang", "description": "Gentoo overlay providing patches to build entire system with clang", "homepage": "https://github.com/BilyakA/gentoo-clang"}, {"name": "gentoo-linux-surface-overlay", "description": "Overlay for running Gentoo Linux on Microsoft Surface devices.", "homepage": "http://gentoo.canutethegreat.com/"}, {"name": "gentoo-mate", "description": "Gentoo MATE Desktop Project Repo", "homepage": "https://wiki.gentoo.org/wiki/Project:MATE"}, {"name": "gentoo-zh", "description": "To provide programs useful to Chinese speaking users (merged\n from gentoo-china and gentoo-taiwan).", "homepage": "https://github.com/microcai/gentoo-zh"}, {"name": "gentoobr", "description": "Overlay containing experimental packages developed\n by the brazilian community, with focus on providing programs useful to\n portuguese speaking users and introducing new people to contribute.", "homepage": "https://github.com/gentoobr/overlay"}, {"name": "gerislay", "description": "A personal overlay with no specific focus (mainly to\n test ebuilds). Highly experimental. It is meant as a playground for me,\n but others might be interested.", "homepage": "https://cgit.gentoo.org/repo/user/gerislay.git"}, {"name": "gig", "description": "Gig OS's Overlay", "homepage": "https://github.com/Gig-OS/gig"}, {"name": "gitlab", "description": "Unofficial ebuilds for Gitlab", "homepage": "https://gitlab.awesome-it.de/overlays/gitlab"}, {"name": "glarbs-overlay", "description": "A Gentoo overlay used by GLARBS.", "homepage": "https://wiki.gentoo.org/wiki/User:Et-8/GLARBS"}, {"name": "gnome", "description": "experimental gnome ebuilds", "homepage": "https://cgit.gentoo.org/proj/gnome.git/"}, {"name": "gnome-next", "description": "experimental newer gnome ebuilds", "homepage": "https://github.com/Heather/gentoo-gnome"}, {"name": "gnuradio", "description": "A repository for GNURadio packages/addons", "homepage": "https://github.com/hololeap/gentoo-gnuradio"}, {"name": "gnustep", "description": "Experimental ebuilds for GNUstep packages in Gentoo. Comments and bugreports are welcome!", "homepage": "https://cgit.gentoo.org/proj/gnustep.git/"}, {"name": "go-overlay", "description": "Golang related ebuilds", "homepage": "https://github.com/Dr-Terrible/go-overlay"}, {"name": "godin", "description": "Godin's Gentoo Overlay", "homepage": "https://github.com/Godin/gentoo-overlay"}, {"name": "goduck777", "description": "Personal overlay containing some not-so-popular apps", "homepage": "https://github.com/goduck777/gentoo-overlay"}, {"name": "goris", "description": "Goris overlay", "homepage": "https://cgit.gentoo.org/repo/user/goris.git/"}, {"name": "graaff", "description": "Developer overlay of Hans de Graaff with mostly ruby and\n xemacs ebuilds, and a few assorted other goodies.", "homepage": "http://moving-innovations.com/blog/"}, {"name": "griffon_overlay", "description": "Personal overlay of GriffOn Yi", "homepage": "https://github.com/windfail/griffon_overlay"}, {"name": "grub2-themes", "description": "Overlay dedicated to Grub2 themes (of any distribution)", "homepage": "https://gitweb.gentoo.org/repo/proj/grub2-themes.git/"}, {"name": "gsview-overlay", "description": "Overlay for the gsview and some other plotting/scientific soft", "homepage": "https://github.com/uleysky/gsview-overlay"}, {"name": "guru", "description": "GURU: Ebuild repository entirely maintained by Gentoo users", "homepage": "https://wiki.gentoo.org/wiki/Project:GURU"}, {"name": "haarp", "description": "misc ebuilds that aren't in the main tree", "homepage": "https://cgit.gentoo.org/user/haarp.git/"}, {"name": "hamari", "description": "Personal overlay of hamari", "homepage": "https://github.com/hamarituc/gentoo-overlay/"}, {"name": "hamper-overlay", "description": "User overlay", "homepage": "https://github.com/hamper/hamper-overlay"}, {"name": "han", "description": "Han's personal ebuild repository", "homepage": "https://github.com/hanmertens/han-overlay"}, {"name": "haskell", "description": "The Official Gentoo Haskell overlay.", "homepage": "https://github.com/gentoo-haskell"}, {"name": "heindsight", "description": "heindsight's personal overlay", "homepage": "https://github.com/heindsight/gentoo_overlay"}, {"name": "hering-overlay", "description": "Richard Hering's gentoo overlay", "homepage": "https://github.com/internethering/hering-overlay"}, {"name": "hexedit-overlay", "description": "Ebuilds for infrastructure-related packages and my own projects", "homepage": "http://hexedit.me/gentoo/"}, {"name": "hibiscus", "description": "Hibiscus homebanking overlay", "homepage": "https://cgit.gentoo.org/user/hibiscus.git/"}, {"name": "holgersson-overlay", "description": "Nils \"holgersson\" Freydank's personal overlay", "homepage": "https://git.holgersson.xyz"}, {"name": "hossie", "description": "gentoo-overlay from hossie", "homepage": "https://git.hossie.de/projects/GEN/repos/gentoo-overlay/browse"}, {"name": "hotstoast", "description": "Tom Hotston's personal overlay", "homepage": "https://github.com/TomHotston/hotstoast-overlay"}, {"name": "ikelos", "description": "Ikelos's hospice for broken and damaged ebuilds.", "homepage": "https://github.com/ikelos/gentoo-overlay.git"}, {"name": "inode64-overlay", "description": "Server overlay, virtualization, developer tools and misc apps", "homepage": "https://github.com/inode64/inode64-overlay"}, {"name": "ixit", "description": "iXit overlay", "homepage": "https://github.com/okias/ixit"}, {"name": "jacendi-overlay", "description": "id Software games overlay", "homepage": "https://bitbucket.org/jacendi/jacendi-overlay"}, {"name": "java", "description": "Java overlay", "homepage": "https://cgit.gentoo.org/proj/java.git/"}, {"name": "jboro-overlay", "description": "personal experimental ebuilds", "homepage": "https://github.com/JBoro/portage"}, {"name": "jjakob", "description": "Jernej Jakob's unofficial ebuilds", "homepage": "https://github.com/jjakob/gentoo-overlay"}, {"name": "jkolo", "description": "Jerzy Kolosowski's Gentoo overlay", "homepage": "https://git.kolosowscy.pl/jurek/gentoo-overlay"}, {"name": "jl1990", "description": "jl1990's Custom Gentoo Overlay.", "homepage": "https://github.com/jl1990/gentoo-overlay"}, {"name": "jm-overlay", "description": "Personal overlay with more or less random ebuilds", "homepage": "https://github.com/Jannis234/jm-overlay"}, {"name": "jmbsvicetto", "description": "Jorge Manuel B. S. Vicetto developer overlay", "homepage": "https://cgit.gentoo.org/dev/jmbsvicetto.git"}, {"name": "johnmh", "description": "Personal overlay of johnmh", "homepage": "https://cgit.gentoo.org/repo/user/johnmh.git/"}, {"name": "johu", "description": "Johannes Huber developer overlay", "homepage": "https://cgit.gentoo.org/dev/johu.git"}, {"name": "jorgicio", "description": "Gentoo repository made by Jorgicio.", "homepage": "https://github.com/jorgicio/jorgicio-gentoo"}, {"name": "jsteward", "description": "jsteward's personal overlay", "homepage": "https://github.com/KireinaHoro/jsteward"}, {"name": "junkdrawer", "description": "Various development tools, libraries, and patches not in Gentoo (yet)", "homepage": "https://github.com/doctaweeks/junkdrawer-overlay"}, {"name": "kaa", "description": "Kaa's experimental overlay", "homepage": "http://www.kaa.org.ua"}, {"name": "kde", "description": "Official KDE team's testing overlay.", "homepage": "https://kde.gentoo.org"}, {"name": "keepbot-overlay", "description": "keepbot's personal ebuild repository", "homepage": "https://github.com/d-k-ivanov/gentoo-overlay.git"}, {"name": "khoverlay", "description": "Khumba's overlay, mainly Haskell packages", "homepage": "https://gitlab.com/khumba/khoverlay"}, {"name": "klondike", "description": "Ebuilds made and modified by klondike, mainly sound and virtualization", "homepage": "https://cgit.gentoo.org/user/klondike.git/"}, {"name": "konsolebox", "description": "konsolebox's overlay", "homepage": "https://github.com/konsolebox/overlay"}, {"name": "kripton-overlay", "description": "Gentoo portage overlay with packages needed or developed by kripton", "homepage": "https://github.com/kripton/kripton-overlay"}, {"name": "kske", "description": "Kai S. K. Engelbart's personal overlay", "homepage": "https://git.kske.dev/kske/gentoo-overlay"}, {"name": "lanodanOverlay", "description": "Additionnal goals; experiments, necromancy, portability, diversity, \u2026", "homepage": "https://hacktivis.me/git/overlay"}, {"name": "leechcraft", "description": "Overlay with LeechCraft ebuilds", "homepage": "https://github.com/0xd34df00d/leechcraft-overlay"}, {"name": "leio", "description": "Mart Raudsepp developer overlay", "homepage": "https://cgit.gentoo.org/dev/leio.git"}, {"name": "librepilot", "description": "Librepilot flight control software overlay", "homepage": "https://github.com/paul-jewell/librepilot-overlay"}, {"name": "libressl", "description": "LibreSSL ebuilds testing repository", "homepage": "https://wiki.gentoo.org/wiki/Project:LibreSSL"}, {"name": "liftm", "description": "Personal Overlay", "homepage": "\u0423 overlay \u043d\u0435\u0442 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0447\u043a\u0438"}, {"name": "linux-be", "description": "Port of Boot Environments for GNU/Linux", "homepage": "https://gitlab.com/linux-be"}, {"name": "linux-surface", "description": "Overlay that has the required packages for installation of Gentoo into a Microsoft Surface device.", "homepage": "https://github.com/Parinz/linux-surface-overlay"}, {"name": "linuxunderground-overlay", "description": "experimental ebuilds from linuxunderground.be", "homepage": "https://github.com/linuxunderground/gentoo.overlay"}, {"name": "lisp", "description": "Common Lisp/Scheme development, recruitment and live overlay.\n Support and feedback in `#gentoo-lisp' and via\n `gentoo-lisp@lists.gentoo.org'.", "homepage": "https://cgit.gentoo.org/proj/lisp.git"}, {"name": "lmiphay", "description": "Personal overlay of Paul Healy", "homepage": "https://cgit.gentoo.org/user/lmiphay.git/"}, {"name": "lto-overlay", "description": "A Portage configuration for O3, Graphite, and LTO system-wide", "homepage": "https://github.com/InBetweenNames/gentooLTO"}, {"name": "luke-jr", "description": "Misc ebuilds by Luke-Jr", "homepage": "http://luke.dashjr.org"}, {"name": "luxifer", "description": "Personal Overlay, contains stoken ebuilds", "homepage": "https://github.com/luxifr/olgentoo"}, {"name": "maekke", "description": "Markus Meier developer overlay", "homepage": "https://cgit.gentoo.org/dev/maekke.git"}, {"name": "mate-de-gentoo", "description": "Updated ebuilds for mate-desktop environment", "homepage": "https://github.com/oz123/mate-de-gentoo"}, {"name": "megacoffee", "description": "Mixed ebuilds from various sources: self-written missing ebuilds, more current ebuilds, ebuilds that just needed a slight update from official portage, ebuilds others posted on Gentoo Bugzilla, ebuilds with added patches, old ebuilds that were removed from official portage etc.", "homepage": "http://gentoo-overlay.megacoffee.net"}, {"name": "menelkir", "description": "Various ebuilds from different sources", "homepage": "https://gitlab.com/menelkir/gentoo-overlay"}, {"name": "metahax", "description": "Some ebuilds that didn't seem to exist yet.", "homepage": "https://github.com/metafarion/metahax"}, {"name": "milos-rs", "description": "A pocket repository for few unavailable packages", "homepage": "https://github.com/milos-rs/gentoo-overlay"}, {"name": "miramir", "description": "Miramir repository", "homepage": "https://github.com/miramir/miramir-layman"}, {"name": "moaxcp", "description": "gentoo overlay for packages", "homepage": "https://github.com/moaxcp/moaxcp-gentoo-overlay"}, {"name": "moexiami", "description": "Contains updated ebuilds (w/ more feature/control)\n for packages in the Gentoo tree, latest version ebuilds and newpackages\n not yet in the tree. Targeting high-quality for production use.", "homepage": "https://github.com/Xiami2012/moexiami-ovl-dev"}, {"name": "molese", "description": "molese's Portage Overlay for Gentoo Linux providing ebuilds for various packages", "homepage": "https://github.com/m0lese/portage-overlay"}, {"name": "moltonel", "description": "Vincent de Phily's private overlay", "homepage": "https://github.com/vincentdephily/moltonel-ebuilds/"}, {"name": "monero", "description": "Ebuilds for the Monero cryptocurrency and\n related software.", "homepage": "https://github.com/gentoo-monero/gentoo-monero"}, {"name": "mschiff", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/dev/mschiff.git/"}, {"name": "multilib-portage", "description": "multilib-overlay: emul-linux-x86 must die ;)", "homepage": "https://cgit.gentoo.org/proj/multilib-portage.git/"}, {"name": "musl", "description": "musl development overlay", "homepage": "https://cgit.gentoo.org/proj/musl.git/"}, {"name": "musl-clang", "description": "musl clang/libc++ overlay", "homepage": "https://github.com/karlguy/musl-clang/"}, {"name": "mv", "description": "Ebuilds for packages not in the Gentoo tree\n (lack of maintainer or too experimental) and live ebuilds\n or extensions/bugfixes for packages in the tree", "homepage": "https://cgit.gentoo.org/user/mv.git"}, {"name": "mva", "description": "mva's sandbox overlay", "homepage": "https://github.com/msva/mva-overlay/"}, {"name": "myrvolay", "description": "myrvogna's personal Gentoo overlay", "homepage": "https://github.com/myrvogna/myrvolay"}, {"name": "mysql", "description": "Gentoo MySQL overlay", "homepage": "https://cgit.gentoo.org/proj/mysql.git/"}, {"name": "natinst", "description": "VISA and National Instruments drivers", "homepage": "https://github.com/AndrewAmmerlaan/natinst"}, {"name": "nelson-graca", "description": "Nelson Gra\u00e7a personal Overlay", "homepage": "https://github.com/nelsongraca/gentoo-overlay"}, {"name": "nest", "description": "Personal Gentoo overlay", "homepage": "https://github.com/SpiderX/portage-overlay"}, {"name": "nico", "description": "various ebuilds", "homepage": "https://cgit.gentoo.org/user/nico.git/"}, {"name": "nitratesky", "description": "Personal overlay of Vladimir Timofeenko", "homepage": "https://github.com/VTimofeenko/nitratesky"}, {"name": "nix-guix", "description": "Overlay for nix anf guix functional package managers", "homepage": "https://github.com/trofi/nix-guix-gentoo"}, {"name": "nordvpn", "description": "NordVPN client overlay", "homepage": "https://gitlab.com/lahouari.dc/nordvpn/"}, {"name": "np-hardass-overlay", "description": "NP-Hardass's Personal Overlay", "homepage": "https://github.com/np-hardass/np-hardass-overlay"}, {"name": "nx", "description": "Overlay for the NX/FreeNX packages for Gentoo.", "homepage": "https://cgit.gentoo.org/proj/nx.git/"}, {"name": "nymphos", "description": "Overlay for ebuilds used in NymphOS", "homepage": "https://git.nymphos.ga/"}, {"name": "octopus", "description": "Own and claimed ebuilds", "homepage": "https://github.com/Bfgeshka/octopus"}, {"name": "oddlama", "description": "oddlama's gentoo overlay", "homepage": "https://github.com/oddlama/overlay"}, {"name": "olifre", "description": "Personal overlay of Oliver Freyermuth.", "homepage": "https://github.com/olifre/olifre-portage"}, {"name": "openclonk", "description": "Overlay for the game OpenClonk", "homepage": "http://www.openclonk.org/"}, {"name": "openwrt", "description": "Overlay for network configuration packages found in OpenWRT", "homepage": "https://github.com/pavlix/gentoo-openwrt"}, {"name": "oubliette", "description": "personal overlay of forgotten ebuilds", "homepage": "https://github.com/nabbi/oubliette-overlay"}, {"name": "overseerr-overlay", "description": "third party overlay to install overseerr", "homepage": "https://github.com/chriscpritchard/overseerr-overlay"}, {"name": "palemoon", "description": "Unofficial Gentoo overlay for the Pale Moon (http://www.palemoon.org/) web browser.", "homepage": "https://github.com/deu/palemoon-overlay"}, {"name": "panther", "description": "Fun useful packages not found elsewhere", "homepage": "https://github.com/orangeturtle739/panther"}, {"name": "pdilung", "description": "Personal Gentoo overlay of Pavol Dilung", "homepage": "https://github.com/pdilung/gentoo-overlay/"}, {"name": "pentoo", "description": "The overlay contains new or updated security tools.", "homepage": "http://www.pentoo.ch"}, {"name": "petkovich", "description": "Personal overlay of Jean-Christophe Petkovich", "homepage": "https://github.com/jcpetkovich/overlay-petkovich"}, {"name": "pf4public", "description": "Personal overlay", "homepage": "https://github.com/PF4Public/gentoo-overlay"}, {"name": "pg_overlay", "description": "User overlay", "homepage": "https://gitlab.com/Perfect_Gentleman/PG_Overlay"}, {"name": "phackerlay", "description": "Overlay for phackers", "homepage": "https://gitlab.phys-el.ru/ustinov/phackerlay"}, {"name": "phoenix591", "description": "My personal overlay with a few random packages", "homepage": "https://github.com/Phoenix591/gentoo-overlay"}, {"name": "pholthaus-overlay", "description": "pholthaus' personal overlay", "homepage": "https://github.com/pholthau/pholthaus-overlay"}, {"name": "pica-pica", "description": "Pica Pica ebuilds", "homepage": "https://github.com/antonsviridenko/pica-pica-gentoo-overlay"}, {"name": "pigfoot", "description": "Ebuilds for experimental packages and chinese patches", "homepage": "https://cgit.gentoo.org/user/pigfoot.git/"}, {"name": "piniverlay", "description": "Various packages and patches for developers", "homepage": "https://github.com/pinicarus/gentoo-overlay"}, {"name": "pinkbyte", "description": "Pinkbyte's developer overlay", "homepage": "https://github.com/Pinkbyte/pinkbyte-overlay"}, {"name": "pixlra", "description": "Pixlra collaborative overlay", "homepage": "https://cgit.gentoo.org/user/carreira.git/"}, {"name": "pkalin", "description": "My Gentoo overlay, somewhat regularly maintained", "homepage": "https://github.com/thinrope/pkalin"}, {"name": "plex-overlay", "description": "Personal overlay of comio containing Plex related ebuilds", "homepage": "https://github.com/comio/plex-overlay"}, {"name": "poly-c", "description": "Polynomial-C's overlay", "homepage": "http://www.gentoofan.org/gentoo/"}, {"name": "powerman", "description": "Overlay of Alex Efros", "homepage": "https://github.com/powerman/powerman-overlay"}, {"name": "ppfeufer-gentoo-overlay", "description": "ppfeufer's personal overlay.", "homepage": "https://github.com/ppfeufer/gentoo-overlay"}, {"name": "pross", "description": "Up to date ck-sources", "homepage": "https://github.com/Pross/pross-overlay"}, {"name": "pyfa", "description": "Newest versions of Pyfa (Python fitting assistant for EVE Online)", "homepage": "https://github.com/ZeroPointEnergy/gentoo-pyfa-overlay"}, {"name": "python", "description": "Python project repository", "homepage": "https://cgit.gentoo.org/proj/python.git/"}, {"name": "qemu-init", "description": "qemu init script and tools", "homepage": "https://cgit.gentoo.org/dev/qiaomuf.git/"}, {"name": "qgp", "description": "qgp overlay (mostly computing and HEP)", "homepage": "https://github.com/qgp/gentoo-qgp"}, {"name": "qownnotes-overlay", "description": "QOwnNotes overlay", "homepage": "http://www.qownnotes.org"}, {"name": "qsx", "description": "qsx\u2019 ebuilds", "homepage": "https://github.com/qsuscs/gentoo-overlay"}, {"name": "qt", "description": "Official testing overlay for Qt and related packages, provided\n by Gentoo's Qt team. Contains ebuilds for Qt5 and Qt6 prereleases and live ebuilds,\n plus various (non-KDE) applications and utilities that use Qt.", "homepage": "https://github.com/gentoo/qt"}, {"name": "quarks", "description": "Quarks's overlay; needful things around Security, Penetration Testing and gaming", "homepage": "https://git.zero-downtime.net/quark"}, {"name": "racket-overlay", "description": "Racket packages overlay by src_prepare group", "homepage": "https://gitlab.com/src_prepare/racket/racket-overlay"}, {"name": "rage", "description": "rage's personal overlay", "homepage": "https://gitlab.com/oxr463/overlay"}, {"name": "raiagent", "description": "Well-documented ebuilds en-route to a bandersnatch near you", "homepage": "https://github.com/leycec/raiagent"}, {"name": "rasdark", "description": "rasdark personal overlay", "homepage": "https://github.com/rasdark/overlay"}, {"name": "rdnetto-overlay", "description": "Personal Overlay", "homepage": "https://github.com/rdnetto/rdnetto-overlay"}, {"name": "reagentoo", "description": "reagentoo's overlay", "homepage": "https://gitlab.com/reagentoo/gentoo-overlay"}, {"name": "ricerlay", "description": "Overlay for ricing enthusiasts", "homepage": "https://github.com/azahi/ricerlay"}, {"name": "rich0", "description": "Rich0's developer overlay", "homepage": "https://github.com/rich0/rich0-overlay"}, {"name": "rion", "description": "Russian overlay with a some patched and specific\n software", "homepage": "https://github.com/rion-overlay"}, {"name": "riru", "description": "Home overlay for development, patches and live ebuilds", "homepage": "https://github.com/pkulev/riru"}, {"name": "rnp", "description": "High performance C++ OpenPGP library, fully compliant to RFC 4880", "homepage": "https://www.rnpgp.org/"}, {"name": "robert7k", "description": "personal overlay of robert7k", "homepage": "https://github.com/robert7k/gentoo-overlay"}, {"name": "robertgzr", "description": "robertgzr's personal overlay.", "homepage": "https://git.sr.ht/~robertgzr/portage"}, {"name": "roslin", "description": "This is roslin, my small overlay. Enjoy! (:", "homepage": "https://gitlab.com/roslin-uberlay/roslin"}, {"name": "ruby", "description": "Experimental ebuilds from the Ruby edge.", "homepage": "https://cgit.gentoo.org/proj/ruby"}, {"name": "rukruk", "description": "some packages not found in other overlays, for issues create ticket in github", "homepage": "https://github.com/Atoms/rukruk"}, {"name": "ryans", "description": "Personal ebuild repository.", "homepage": "https://github.com/bekcpear/ryans-repos"}, {"name": "sage-on-gentoo", "description": "Split ebuilds for the Sage computer algebra system", "homepage": "https://github.com/cschwan/sage-on-gentoo"}, {"name": "salfter", "description": "Scott Alfter's ebuilds", "homepage": "https://gitlab.com/salfter/portage"}, {"name": "sam_c", "description": "sam_c's personal overlay", "homepage": "https://github.com/thesamesam/overlay"}, {"name": "sarnex-overlay", "description": "Sarnex's personal overlay", "homepage": "https://github.com/sarnex/sarnex-overlay.git"}, {"name": "sattvik", "description": "sattvik's overlay with personalized bug fixes and tweaks", "homepage": "https://cgit.gentoo.org/user/sattvik.git/"}, {"name": "science", "description": "The Gentoo Science Overlay is intended as a place to work\n outside of the main portage tree on experimental ebuilds. Our aim is to\n increase the rate of development of scientific packages for Gentoo, but\n ebuilds in this repository are by their very nature more experimental. If\n you wish to use them you should be willing to help test and report\n bugs. For contribution read https://wiki.gentoo.org/wiki/Project:Science/Contributing\n ", "homepage": "https://wiki.gentoo.org/wiki/Project:Science"}, {"name": "scrill", "description": "Some admin tools", "homepage": "https://github.com/scrill/scrill-overlay"}, {"name": "seden", "description": "Experimental ebuilds that are still unmaintained", "homepage": "https://cgit.gentoo.org/user/seden.git/"}, {"name": "setkeh", "description": "setkeh maintained ebuilds", "homepage": "https://github.com/setkeh/Portage-Overlay"}, {"name": "sevcsik", "description": "Mainly cryptocurrency/blockchain related ebuilds", "homepage": "https://github.com/sevcsik/overlay"}, {"name": "sft", "description": "SFT Technologies gentoo overlay", "homepage": "https://github.com/SFTtech/gentoo-overlay"}, {"name": "sgs", "description": "Simeon Simeonov's personal Gentoo overlay", "homepage": "https://github.com/blackm0re/sgs-overlay"}, {"name": "shnurise", "description": "packages for mono environment and other", "homepage": "https://github.com/ArsenShnurkov/shnurise"}, {"name": "sihnon", "description": "optiz0r's sihnon overlay", "homepage": "https://github.com/optiz0r/gentoo-overlay"}, {"name": "simonvanderveldt", "description": "Personal Gentoo overlay focused on music production and engineering applications", "homepage": "https://github.com/simonvanderveldt/simonvanderveldt-overlay"}, {"name": "sinustrom", "description": "Sinustrom Gentoo Overlay", "homepage": "https://github.com/zpuskas/sinustrom-gentoo-overlay"}, {"name": "sk-overlay", "description": "The Scriptkitties overlay for additional ebuilds", "homepage": "https://github.com/scriptkitties/overlay"}, {"name": "slonko", "description": "Personal portage overlay", "homepage": "https://slonko.net/portage"}, {"name": "slyfox", "description": "slyfox's ebuild den", "homepage": "https://github.com/trofi/slyfox-gentoo"}, {"name": "smaeul", "description": "Personal overlay, mainly packages patched for musl compatibility", "homepage": "https://github.com/smaeul/portage-overlay"}, {"name": "snapd", "description": "ebuilds for canaonicals snapd", "homepage": "https://github.com/zigford/snapd"}, {"name": "sogo-connector", "description": "SOGO connector overlay", "homepage": "https://cgit.gentoo.org/repo/user/sogo-connector.git/"}, {"name": "soltys", "description": "tools usefull on CTFs and things that aren't in the portage tristelune", "homepage": "https://github.com/soltysek/soltys-overlay"}, {"name": "sorinp", "description": "A collection of ebuilds that are missing or outdated or incomplete on the Gentoo portage official repository..", "homepage": "https://github.com/psihozefir/sorinp-gentoo-overlay"}, {"name": "sorrow", "description": "Ebuilds for some wayland-related software and some other stuff", "homepage": "https://gitlab.com/eternal-sorrow/gentoo-local"}, {"name": "spark-overlay", "description": "Java Big Data Infrastructure", "homepage": "https://github.com/6-6-6/spark-overlay"}, {"name": "spikyatlinux", "description": "Here are some of my own or modified ebuilds. Also some of them I've found in the web.", "homepage": "https://github.com/spikyatlinux/ebuilds_for_gentoo"}, {"name": "sping", "description": "Overlay of Gentoo developer Sebastian Pipping; for issues, please open tickets at GitHub", "homepage": "https://github.com/hartwork/gentoo-overlay-sping"}, {"name": "squeezebox", "description": "Packages for the Squeezebox network audio player from Logitech", "homepage": "https://cgit.gentoo.org/user/squeezebox.git/"}, {"name": "src_prepare-overlay", "description": "src_prepare group's Gentoo overlay", "homepage": "https://gitlab.com/src_prepare/src_prepare-overlay.git"}, {"name": "ssnb", "description": "Gentoo repository made by ssnb", "homepage": "https://cgit.gentoo.org/repo/user/ssnb.git/"}, {"name": "sspreitz", "description": "My Gentoo repository and ebuilds", "homepage": "https://github.com/sspreitzer/gentoo-repo"}, {"name": "steam-overlay", "description": "Gentoo overlay for Valve's Steam client and Steam-based games", "homepage": "https://github.com/anyc/steam-overlay"}, {"name": "stefantalpalaru", "description": "Gentoo overlay with ebuilds by Stefan Talpalaru that are not in the tree", "homepage": "https://github.com/stefantalpalaru/gentoo-overlay"}, {"name": "stha09", "description": "stha09's personal overlay", "homepage": "https://github.com/stha09/gpo-stha09"}, {"name": "stowe-verlay", "description": "Few things that have either broken elsewhere or fallen unmaintained, such as winexe, a source-based version of logitech media server, a patched version of dansguardian", "homepage": "https://github.com/mwstowe/stowe-verlay"}, {"name": "strohel", "description": "strohel's overlay", "homepage": "https://github.com/strohel/strohel-overlay"}, {"name": "stuff", "description": "stuff", "homepage": "https://github.com/istitov/stuff"}, {"name": "superposition", "description": "Phil's overlay", "homepage": "https://cgit.gentoo.org/repo/user/superposition.git/"}, {"name": "swegener", "description": "This overlay contains some experimental stuff, but mostly\n stuff I quickly wrote an ebuild for or grabed it from bugzilla and did not\n have the time to commit it to the official tree or do not consider it ready\n for it.", "homepage": "https://dev.gentoo.org/~swegener/"}, {"name": "swirl", "description": "Overlay for software I use or made", "homepage": "https://github.com/binex-dsk/ebuilds"}, {"name": "tamiko", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/tamiko.git/"}, {"name": "tante", "description": "Overlay of tante", "homepage": "https://github.com/tante/overlay"}, {"name": "tarantool", "description": "Tarantool Gentoo Overlay", "homepage": "https://github.com/tarantool/gentoo-overlay"}, {"name": "tastytea", "description": "Overlay of tastytea", "homepage": "https://schlomp.space/tastytea/overlay"}, {"name": "tatsh-overlay", "description": "Overlay from Tatsh - emulators/fonts/game/misc", "homepage": "https://github.com/Tatsh/tatsh-overlay"}, {"name": "telans", "description": "Overlay from telans - gaming/misc", "homepage": "https://github.com/telans/EBUILDS"}, {"name": "tezeta", "description": "tezeta's personal overlay", "homepage": "https://github.com/tezeta/tezeta-overlay"}, {"name": "tf201", "description": "TF201 (Asus Transformer Prime) overlay for Gentoo", "homepage": "https://github.com/Tux1c/tf201-overlay"}, {"name": "tgbugs-overlay", "description": "tgbugs portage overlay for custom ebuilds", "homepage": "https://github.com/tgbugs/tgbugs-overlay"}, {"name": "thabairne", "description": "ntnn's Overlay", "homepage": "https://github.com/ntnn/gentoo-thabairne"}, {"name": "thegreatmcpain", "description": "TheGreatMcPain's personal ebuild overlay", "homepage": "https://gitlab.com/TheGreatMcPain/thegreatmcpain-overlay"}, {"name": "tmacedo", "description": "User Overlay", "homepage": "https://github.com/tmacedo/portage"}, {"name": "tocaro", "description": "tocaro personnal o.g.o", "homepage": "https://cgit.gentoo.org/user/tocaro.git/"}, {"name": "toniz4-overlay", "description": "Useful packages for your person use", "homepage": "https://github.com/toniz4/toniz4-overlay.git/"}, {"name": "toolchain", "description": "Toolchain ebuilds that are unsuitable for the tree. Snapshots,\n unstable versions, etc...", "homepage": "https://cgit.gentoo.org/proj/toolchain.git/"}, {"name": "torbrowser", "description": "Tor Browser related ebuilds", "homepage": "https://github.com/MeisterP/torbrowser-overlay"}, {"name": "trolltoo", "description": "An ebuild overlay for Gentoo.", "homepage": "https://github.com/dallenwilson/trolltoo"}, {"name": "tryton", "description": "Tryton", "homepage": "http://www.tryton.org/"}, {"name": "twister", "description": "Unoffical gentoo overlay for twister", "homepage": "https://github.com/ddorian1/gentoo-twister-overlay"}, {"name": "ulm", "description": "Developer overlay", "homepage": "https://cgit.gentoo.org/repo/dev/ulm.git/"}, {"name": "ultrabug", "description": "Developer Overlay", "homepage": "https://cgit.gentoo.org/dev/ultrabug.git/"}, {"name": "unc3nsored", "description": "Overlay for software I didn't find in the main tree", "homepage": "https://github.com/xxc3nsoredxx/unc3nsored"}, {"name": "unity-gentoo", "description": "Overlay to install the Unity desktop", "homepage": "https://github.com/shiznix/unity-gentoo"}, {"name": "usenet-overlay", "description": "Personal Overlay for Lidarr, Radarr and Sonarr ", "homepage": "https://github.com/xartin/gentoo-overlay"}, {"name": "vGist", "description": "vGist overlay, for personal use.", "homepage": "https://github.com/vgist/vgist-overlay"}, {"name": "vaacus", "description": "A personal overlay for the void.", "homepage": "https://gitlab.com/plexvola/vaacus"}, {"name": "vampire", "description": "A personal repository. So much bleeding edge, you would bet a vampire was involved.", "homepage": "https://github.com/TheCrueltySage/vampire-overlay"}, {"name": "vapoursynth", "description": "Unofficial repository with all vapoursynth related ebuilds", "homepage": "https://github.com/4re/vapoursynth-portage"}, {"name": "vayerx", "description": "Personal overlay of Vasiliy Yeremeyev", "homepage": "https://github.com/vayerx/vayerx-gentoo/"}, {"name": "vdr-devel", "description": "Overlay for VDR, that contains ebuilds for development version\n of VDR, and specific plugins for that version.", "homepage": "https://cgit.gentoo.org/proj/vdr/devel.git/"}, {"name": "vifino-overlay", "description": "vifino's personal overlay", "homepage": "https://github.com/vifino/vifino-overlay"}, {"name": "vklimovs", "description": "vklimovs' personal portage overlay", "homepage": "https://github.com/vklimovs/portage-overlay"}, {"name": "vmacs", "description": "VMACS Personal Gentoo Overlay", "homepage": "https://cgit.gentoo.org/user/vmacs.git/"}, {"name": "vortex", "description": "Personal overlay", "homepage": "https://github.com/nE0sIghT/vortex-overlay"}, {"name": "vowstar", "description": "Ebuilds from vowstar's git", "homepage": "https://github.com/vowstar/vowstar-overlay"}, {"name": "voyageur", "description": "Voyageur's random ebuilds stuff", "homepage": "https://cafarelli.fr/cgi-bin/cgit.cgi/voyageur-overlay/"}, {"name": "waebbl", "description": "waebbl's overlay", "homepage": "https://github.com/waebbl/waebbl-gentoo"}, {"name": "waffle-builds", "description": "FlyingWaffle's personal ebuild overlay.", "homepage": "https://github.com/FlyingWaffleDev/waffle-builds"}, {"name": "wayland-desktop", "description": "gentoo overlay for wayland related ebuilds", "homepage": "https://github.com/bsd-ac/wayland-desktop"}, {"name": "wbrana", "description": "wbrana's overlay", "homepage": "https://cgit.gentoo.org/user/wbrana.git/"}, {"name": "wdzierzan", "description": "Stuff I'd rather `emerge' than `stow'", "homepage": "https://cgit.gentoo.org/user/wdzierzan.git/"}, {"name": "webos", "description": "Ported Open WebOS components and libraries", "homepage": "https://github.com/feniksa/webos-overlay"}, {"name": "weuxel", "description": "Weuxels Personal Overlay", "homepage": "https://github.com/Weuxel/portage-weuxel"}, {"name": "what4-java", "description": "Incubator for dev-java updates that the Gentoo Java team has no time for", "homepage": "https://github.com/kwhat/gentoo-what4-java-overlay"}, {"name": "wichtounet", "description": "Personal overlay of Baptiste Wicht", "homepage": "https://github.com/wichtounet/wichtounet-overlay"}, {"name": "wine", "description": "All supported Wine ebuilds from the Gentoo Wine Project", "homepage": "https://wiki.gentoo.org/wiki/Project:Wine"}, {"name": "winny", "description": "Winny's personal overlay", "homepage": "https://github.com/winny-/winny-overlay"}, {"name": "wjn-overlay", "description": "wjn's overlay for Gentoo Linux", "homepage": "https://bitbucket.org/wjn/wjn-overlay"}, {"name": "x11", "description": "Gentoo X11 team ebuild repository", "homepage": "https://cgit.gentoo.org/proj/x11.git"}, {"name": "xdch47", "description": "Gentoo portage overlay of xdch47", "homepage": "https://github.com/xdch47/gpo-xdch47"}, {"name": "xelnor", "description": "Rapha\u00ebl Barrois' (Xelnor) Gentoo overlay.", "homepage": "http://overlay.xelnor.net"}, {"name": "xoreos", "description": "Gentoo overlay for the xoreos project, providing a WIP reimplementation of the BioWare Aurora engine and related modding tools.", "homepage": "https://github.com/xoreos/gentoo-overlay"}, {"name": "xwing", "description": "Guillaume Castagnino\u2019s personal overlay.", "homepage": "https://gentoo.xwing.info"}, {"name": "yandex", "description": "Gentoo overlay with packages for software made by Yandex", "homepage": "https://github.com/yandex-gentoo/overlay"}, {"name": "yoreek", "description": "Ebuilds related to nginx webserver modules", "homepage": "https://cgit.gentoo.org/user/yoreek.git/"}, {"name": "youbroketheinternet", "description": "This overlay is a collaborative maintained Gentoo developer overlay. Some of us are involved with SecuShare, but we try out all sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the full GNUnet suite, and software around the psyced chatserver. Some ebuilds are experimental/testing - refer to the included README for more info and details. If you would like to get involved read https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet", "homepage": "http://youbroketheinternet.org/#overlay"}, {"name": "yurij-overlay", "description": "Yurij's overlay", "homepage": "https://github.com/yurijmikhalevich/yurij-overlay"}, {"name": "zGentoo", "description": "ZappeL's Gentoo-Overlay", "homepage": "https://lab.retarded.farm/zappel/zGentoo"}, {"name": "zerodaysfordays", "description": "Jakob L. Kreuze's personal overlay.", "homepage": "https://git.sr.ht/~jakob/zerodaysfordays"}, {"name": "zscheile", "description": "Zscheile Overlay", "homepage": "https://github.com/zseri/portage-zscheile"}, {"name": "zugaina", "description": "collection of ebuilds by ycarus", "homepage": "http://gpo.zugaina.org/Overlays/zugaina/"}, {"name": "zx2c4", "description": "zx2c4's repository of additional ebuilds", "homepage": "http://git.zx2c4.com/portage/"}, {"name": "zyrenth", "description": "Personal overlay", "homepage": "https://github.com/kabili207/zyrenth-overlay"}], "recovers": {"[net-im": [{"Category": "[]", "Name": "net-im/element-desktop-bin", "version": ["-1.7.32[U]"], "USE": ["+emoji"], "Description": "A glossy Matrix collaboration client for desktop (binary package)", "Home_page": "https://element.io", "repo": "gentoo"}, {"Category": "[]", "Name": "net-im/telegram-desktop-bin", "version": ["-2.9.2[U]", "-3.0.1[U]"], "USE": [""], "Description": "Official desktop client for Telegram (binary package)", "Home_page": "https://desktop.telegram.org", "repo": "gentoo"}, {"Category": "[]", "Name": "net-im/net-im/zoom", "version": ["net-im/zoom-5.4.53391.1108-r3[U]", "net-im/zoom-5.7.29123.0808[U]", "net-im/zoom-5.7.31792.0820[U]"], "USE": ["bundled-libjpeg-turbo", "pulseaudio"], "Description": "Video conferencing and web conferencing service", "Home_page": "https://zoom.us/", "repo": "gentoo"}, {"Category": "[]", "Name": "net-im/pidgin", "version": ["-2.14.5-r1[U]", "-2.14.6-r1[M]"], "USE": ["aqua", "dbus", "debug", "doc", "eds", "gadu", "gnutls", "groupwise", "+gstreamer", "+gtk", "idn", "meanwhile", "ncurses", "networkmanager", "nls", "perl", "pie", "prediction", "python", "sasl", "spell", "tcl", "tk", "+xscreensaver", "zephyr", "zeroconf", "python_single_target_python3_8", "python_single_target_python3_9"], "Description": "GTK Instant Messenger client", "Home_page": "https://pidgin.im/", "repo": "gentoo"}, {"Category": "[]", "Name": "net-im/teams", "version": ["-1.4.00.7556[U]", "-1.4.00.13653-r1[U]"], "USE": ["system-ffmpeg", "system-mesa", "kernel_linux"], "Description": "Microsoft Teams, an Office 365 multimedia collaboration client, pre-release", "Home_page": "https://products.office.com/en-us/microsoft-teams/group-chat-software/", "repo": "gentoo"}, {"Category": "[]", "Name": "net-im/slack", "version": ["-4.18.0[U]", "-4.19.2[U]"], "USE": ["appindicator", "suid", "abi_x86_64"], "Description": "Team collaboration tool", "Home_page": "https://www.slack.com", "repo": "gentoo"}], "[\u041c\u0443\u0437\u044b\u043a\u0430": [{"Category": "[]", "Name": "media-sound/audacity", "version": ["-2.4.2-r2[U]"], "USE": ["alsa", "doc", "ffmpeg", "+flac", "id3tag", "jack", "+ladspa", "+lv2", "mad", "ogg", "oss", "portmidi", "+portmixer", "portsmf", "sbsms", "twolame", "vamp", "+vorbis", "+vst"], "Description": "Free crossplatform audio editor", "Home_page": "https://web.audacityteam.org/", "repo": "gentoo"}, {"Category": "[]", "Name": "media-sound/clementine", "version": ["-1.4.0_rc1[U]", "-9999[M]"], "USE": ["box", "cdda", "+dbus", "debug", "dropbox", "googledrive", "ipod", "lastfm", "mms", "moodbar", "mtp", "projectm", "pulseaudio", "seafile", "skydrive", "test", "+udisks", "wiimote", "test"], "Description": "Modern music player and library organizer based on Amarok 1.4 and Qt", "Home_page": "https://www.clementine-player.org https://github.com/clementine-player/Clementine", "repo": "gentoo"}, {"Category": "[]", "Name": "media-sound/mixxx", "version": ["-2.2.4-r1[U]", "-2.3.9999[M]", "-9999[M]"], "USE": ["aac", "doc", "ffmpeg", "hid", "lv2", "mp3", "mp4", "opus", "shout", "wavpack"], "Description": "Advanced Digital DJ tool based on Qt", "Home_page": "https://www.mixxx.org/", "repo": "gentoo"}, {"Category": "[]", "Name": "media-sound/lmms", "version": ["-1.2.2[U]", "-9999[M]"], "USE": ["alsa", "debug", "fluidsynth", "jack", "libgig", "mp3", "ogg", "portaudio", "pulseaudio", "sdl", "soundio", "stk", "vst"], "Description": "Cross-platform music production software", "Home_page": "https://lmms.io", "repo": "gentoo"}, {"Category": "[]", "Name": "media-sound/mpd", "version": ["-0.21.26-r1[U]", "-0.22.3-r1[U]", "-0.22.4-r2[M]", "-0.22.5-r1[M]", "-0.22.6-r1[M]", "-0.22.8-r1[M]", "-0.22.9-r1[M]", "-0.22.10-r1[M]", "-0.22.11[M]"], "USE": ["+alsa", "ao", "+audiofile", "bzip2", "cdio", "chromaprint", "+cue", "+curl", "+dbus", "debug", "+eventfd", "expat", "faad", "+ffmpeg", "+fifo", "flac", "fluidsynth", "gme", "+icu", "+id3tag", "+inotify", "+ipv6", "jack", "lame", "libmpdclient", "libsamplerate", "libsoxr", "+mad", "mikmod", "mms", "modplug", "mpg123", "musepack", "+network", "nfs", "openal", "opus", "oss", "pipe", "pulseaudio", "qobuz", "recorder", "samba", "selinux", "sid", "signalfd", "sndfile", "sndio", "soundcloud", "sqlite", "systemd", "test", "tidal", "twolame", "udisks", "unicode", "vorbis", "wavpack", "webdav", "wildmidi", "upnp", "zeroconf", "zip", "zlib", "kernel_linux"], "Description": "The Music Player Daemon (mpd)", "Home_page": "https://www.musicpd.org https://github.com/MusicPlayerDaemon/MPD", "repo": "gentoo"}], "[\u0412\u0438\u0434\u0435\u043e": [{"Category": "[]", "Name": "media-video/obs-studio", "version": ["-26.1.2-r1[U]", "-27.0.1[M]", "-9999[M]"], "USE": ["+alsa", "fdk", "imagemagick", "jack", "lua", "nvenc", "pulseaudio", "python", "speex", "+ssl", "truetype", "v4l", "vlc", "+lua_single_target_luajit", "python_single_target_python3_8", "python_single_target_python3_9"], "Description": "Software for Recording and Streaming Live Video Content", "Home_page": "https://obsproject.com", "repo": "gentoo"}, {"Category": "[]", "Name": "kde-apps/kdenlive", "version": ["-21.04.3-r1[U]", "-21.08.1[M]"], "USE": ["gles2-only", "semantic-desktop", "share", "v4l", "test", "debug", "+handbook", "test"], "Description": "Non-linear video editing suite by KDE", "Home_page": "https://kdenlive.org/en/", "repo": "gentoo"}, {"Category": "[]", "Name": "media-video/mplayer", "version": ["-1.4-r1[U]", "-9999[M]"], "USE": ["cpu_flags_x86_3dnow", "cpu_flags_x86_3dnowext", "a52", "aalib", "+alsa", "altivec", "aqua", "bidi", "bl", "bluray", "bs2b", "cddb", "+cdio", "cdparanoia", "cpudetection", "debug", "dga", "doc", "dts", "dv", "dvb", "+dvd", "+dvdnav", "+enca", "+encode", "faac", "faad", "fbcon", "ftp", "ggi", "gsm", "+iconv", "ipv6", "jack", "joystick", "jpeg", "kernel_linux", "ladspa", "+libass", "libcaca", "libmpeg2", "lirc", "live", "lzo", "mad", "md5sum", "cpu_flags_x86_mmx", "cpu_flags_x86_mmxext", "mng", "mp3", "nas", "+network", "openal", "opengl", "+osdmenu", "oss", "png", "pnm", "pulseaudio", "pvr", "radio", "rar", "rtc", "rtmp", "samba", "selinux", "+shm", "sdl", "speex", "cpu_flags_x86_sse", "cpu_flags_x86_sse2", "cpu_flags_x86_ssse3", "tga", "theora", "tremor", "+truetype", "toolame", "twolame", "+unicode", "v4l", "vcd", "vdpau", "vidix", "vorbis", "+X", "x264", "xinerama", "+xscreensaver", "+xv", "xvid", "yuv4mpeg", "zoran", "video_cards_mga"], "Description": "Media Player for Linux", "Home_page": "http://www.mplayerhq.hu/", "repo": "gentoo"}, {"Category": "[]", "Name": "media-video/smplayer", "version": ["-20.6.0[U]", "-21.1.0[M]", "-21.8.0[U]"], "USE": ["autoshutdown", "bidi", "debug", "mpris"], "Description": "Great Qt GUI front-end for mplayer/mpv", "Home_page": "https://www.smplayer.eu/", "repo": "gentoo"}], "[web-\u0441\u0435\u0440\u0432\u0435\u0440\u0432": [{"Category": "[]", "Name": "www-servers/nginx", "version": ["-1.20.1-r2[U]", "-1.21.0-r2[M]", "-1.21.1[M]", "-1.21.2[M]"], "USE": ["aio", "debug", "+http", "+http2", "+http-cache", "+ipv6", "libatomic", "+pcre", "pcre-jit", "rtmp", "selinux", "ssl", "threads", "userland_GNU", "vim-syntax", "+nginx_modules_http_access", "+nginx_modules_http_auth_basic", "+nginx_modules_http_autoindex", "+nginx_modules_http_browser", "+nginx_modules_http_charset", "+nginx_modules_http_empty_gif", "+nginx_modules_http_fastcgi", "+nginx_modules_http_geo", "+nginx_modules_http_grpc", "+nginx_modules_http_gzip", "+nginx_modules_http_limit_req", "+nginx_modules_http_limit_conn", "+nginx_modules_http_map", "+nginx_modules_http_memcached", "+nginx_modules_http_mirror", "+nginx_modules_http_proxy", "+nginx_modules_http_referer", "+nginx_modules_http_rewrite", "+nginx_modules_http_scgi", "+nginx_modules_http_ssi", "+nginx_modules_http_split_clients", "+nginx_modules_http_upstream_hash", "+nginx_modules_http_upstream_ip_hash", "+nginx_modules_http_upstream_keepalive", "+nginx_modules_http_upstream_least_conn", "+nginx_modules_http_upstream_zone", "+nginx_modules_http_userid", "+nginx_modules_http_uwsgi", "nginx_modules_http_addition", "nginx_modules_http_auth_request", "nginx_modules_http_dav", "nginx_modules_http_degradation", "nginx_modules_http_flv", "nginx_modules_http_geoip", "nginx_modules_http_gunzip", "nginx_modules_http_gzip_static", "nginx_modules_http_image_filter", "nginx_modules_http_mp4", "nginx_modules_http_perl", "nginx_modules_http_random_index", "nginx_modules_http_realip", "nginx_modules_http_secure_link", "nginx_modules_http_slice", "nginx_modules_http_stub_status", "nginx_modules_http_sub", "nginx_modules_http_xslt", "nginx_modules_stream_access", "nginx_modules_stream_geo", "nginx_modules_stream_limit_conn", "nginx_modules_stream_map", "nginx_modules_stream_return", "nginx_modules_stream_split_clients", "nginx_modules_stream_upstream_hash", "nginx_modules_stream_upstream_least_conn", "nginx_modules_stream_upstream_zone", "nginx_modules_stream_geoip", "nginx_modules_stream_realip", "nginx_modules_stream_ssl_preread", "nginx_modules_mail_imap", "nginx_modules_mail_pop3", "nginx_modules_mail_smtp", "nginx_modules_http_auth_ldap", "nginx_modules_http_auth_pam", "nginx_modules_http_brotli", "nginx_modules_http_cache_purge", "nginx_modules_http_dav_ext", "nginx_modules_http_echo", "nginx_modules_http_fancyindex", "nginx_modules_http_geoip2", "nginx_modules_http_headers_more", "nginx_modules_http_javascript", "nginx_modules_http_lua", "nginx_modules_http_memc", "nginx_modules_http_metrics", "nginx_modules_http_mogilefs", "nginx_modules_http_naxsi", "nginx_modules_http_push_stream", "nginx_modules_http_security", "nginx_modules_http_slowfs_cache", "nginx_modules_http_sticky", "nginx_modules_http_upload_progress", "nginx_modules_http_upstream_check", "nginx_modules_http_vhost_traffic_status", "nginx_modules_stream_geoip2", "nginx_modules_stream_javascript", "nginx_modules_http_spdy", "+lua_single_target_luajit"], "Description": "Robust, small and high performance http and reverse proxy server", "Home_page": "https://nginx.org", "repo": "gentoo"}, {"Category": "[]", "Name": "www-servers/apache", "version": ["-2.4.48-r3[U]"], "USE": ["ssl", "lua_single_target_lua5-1", "lua_single_target_lua5-3", "lua_single_target_lua5-4", "debug", "doc", "gdbm", "ldap", "selinux", "ssl", "static", "suexec", "+suexec-caps", "suexec-syslog", "split-usr", "threads", "apache2_modules_access_compat", "apache2_modules_actions", "apache2_modules_alias", "apache2_modules_asis", "apache2_modules_auth_basic", "apache2_modules_auth_digest", "apache2_modules_auth_form", "apache2_modules_authn_alias", "apache2_modules_authn_anon", "apache2_modules_authn_core", "apache2_modules_authn_dbd", "apache2_modules_authn_dbm", "apache2_modules_authn_file", "apache2_modules_authn_socache", "apache2_modules_authz_core", "apache2_modules_authz_dbd", "apache2_modules_authz_dbm", "apache2_modules_authz_groupfile", "apache2_modules_authz_host", "apache2_modules_authz_owner", "apache2_modules_authz_user", "apache2_modules_autoindex", "apache2_modules_brotli", "apache2_modules_cache", "apache2_modules_cache_disk", "apache2_modules_cache_socache", "apache2_modules_cern_meta", "apache2_modules_charset_lite", "apache2_modules_cgi", "apache2_modules_cgid", "apache2_modules_dav", "apache2_modules_dav_fs", "apache2_modules_dav_lock", "apache2_modules_dbd", "apache2_modules_deflate", "apache2_modules_dir", "apache2_modules_dumpio", "apache2_modules_env", "apache2_modules_expires", "apache2_modules_ext_filter", "apache2_modules_file_cache", "apache2_modules_filter", "apache2_modules_headers", "+apache2_modules_http2", "apache2_modules_ident", "apache2_modules_imagemap", "apache2_modules_include", "apache2_modules_info", "apache2_modules_lbmethod_byrequests", "apache2_modules_lbmethod_bytraffic", "apache2_modules_lbmethod_bybusyness", "apache2_modules_lbmethod_heartbeat", "apache2_modules_log_config", "apache2_modules_log_forensic", "apache2_modules_logio", "apache2_modules_lua", "apache2_modules_macro", "apache2_modules_md", "apache2_modules_mime", "apache2_modules_mime_magic", "apache2_modules_negotiation", "apache2_modules_proxy", "apache2_modules_proxy_ajp", "apache2_modules_proxy_balancer", "apache2_modules_proxy_connect", "apache2_modules_proxy_ftp", "apache2_modules_proxy_html", "apache2_modules_proxy_http", "apache2_modules_proxy_scgi", "apache2_modules_proxy_http2", "apache2_modules_proxy_fcgi", "apache2_modules_proxy_uwsgi", "apache2_modules_proxy_wstunnel", "apache2_modules_rewrite", "apache2_modules_ratelimit", "apache2_modules_remoteip", "apache2_modules_reqtimeout", "apache2_modules_session", "apache2_modules_session_cookie", "apache2_modules_session_crypto", "apache2_modules_session_dbd", "apache2_modules_setenvif", "apache2_modules_slotmem_shm", "apache2_modules_speling", "apache2_modules_socache_memcache", "apache2_modules_socache_shmcb", "apache2_modules_status", "apache2_modules_substitute", "apache2_modules_unique_id", "apache2_modules_userdir", "apache2_modules_usertrack", "apache2_modules_unixd", "apache2_modules_version", "apache2_modules_vhost_alias", "apache2_modules_watchdog", "apache2_modules_xml2enc", "apache2_mpms_prefork", "apache2_mpms_event", "apache2_mpms_worker"], "Description": "The Apache Web Server", "Home_page": "https://httpd.apache.org/", "repo": "gentoo"}], "[dev-util": [{"Category": "[]", "Name": "dev-util/pycharm-community", "version": ["-2021.1.2-r1[U]"], "USE": ["+bundled-jdk"], "Description": "Intelligent Python IDE with unique code assistance and analysis", "Home_page": "http://www.jetbrains.com/pycharm/", "repo": "gentoo"}], "[\u0433\u0440\u0430\u0444\u0438\u043a\u0430": [{"Category": "[]", "Name": "media-gfx/gimp", "version": ["-2.10.22-r2[U]", "-2.10.24[U]", "-2.99.6[M]", "-9999[M]"], "USE": ["aalib", "alsa", "aqua", "debug", "doc", "gnome", "heif", "jpeg2k", "mng", "openexr", "postscript", "udev", "unwind", "vector-icons", "webp", "wmf", "xpm", "cpu_flags_ppc_altivec", "cpu_flags_x86_mmx", "cpu_flags_x86_sse", "test"], "Description": "GNU Image Manipulation Program", "Home_page": "https://www.gimp.org/", "repo": "gentoo"}, {"Category": "[]", "Name": "media-gfx/blender", "version": ["-2.83.15[M]", "-2.83.16[M]", "-2.83.17[M]", "-2.93.0[M]", "-2.93.1[M]", "-2.93.2[U]", "-9999[M]"], "USE": ["+bullet", "+dds", "+fluid", "+openexr", "+system-python", "+system-numpy", "+tbb", "alembic", "collada", "+color-management", "cuda", "cycles", "debug", "doc", "ffmpeg", "fftw", "headless", "jack", "jemalloc", "jpeg2k", "man", "ndof", "nls", "openal", "opencl", "openimageio", "openmp", "opensubdiv", "openvdb", "osl", "sdl", "sndfile", "standalone", "test", "tiff", "valgrind", "+python_single_target_python3_8"], "Description": "3D Creation/Animation/Publishing System", "Home_page": "https://www.blender.org", "repo": "gentoo"}, {"Category": "", "Name": "Package is not Found", "version": [""], "USE": [""], "Description": "", "Home_page": "", "repo": ""}, {"Category": "[]", "Name": "kde-apps/okular", "version": ["-21.04.3-r2[U]", "-21.08.1[M]"], "USE": ["chm", "djvu", "epub", "+image-backend", "markdown", "mobi", "+pdf", "+plucker", "+postscript", "qml", "share", "speech", "+tiff", "test", "debug", "+handbook", "test"], "Description": "Universal document viewer based on KDE Frameworks", "Home_page": "https://okular.kde.org https://apps.kde.org/okular/", "repo": "gentoo"}], "[\u0418\u0433\u0440\u044b": [{"Category": "[]", "Name": "games-util/steam-launcher", "version": ["-1.0.0.64[U]"], "USE": ["+steamruntime", "kernel_linux"], "Description": "Installer, launcher and supplementary files for Valve's Steam client", "Home_page": "https://steampowered.com", "repo": "calculate"}, {"Category": "[]", "Name": "app-xemacs/app-xemacs/games", "version": ["app-xemacs/games-1.20[U]", "app-xemacs/games-1.23[U]"], "USE": [""], "Description": "Tetris, Sokoban, and Snake", "Home_page": "http://xemacs.org/", "repo": "gentoo"}], "[\u041e\u0444\u0438\u0441": [{"Category": "[]", "Name": "app-office/app-office/wps-office", "version": ["app-office/wps-office-11.1.0.10161-r2[U]"], "USE": [""], "Description": "WPS Office is an office productivity suite", "Home_page": "https://www.wps.cn/product/wpslinux/ http://linux.wps.com/", "repo": "gentoo"}, {"Category": "[]", "Name": "app-office/app-office/libreoffice", "version": ["app-office/libreoffice-7.1.3.2[U]", "app-office/libreoffice-7.1.5.2[M]", "app-office/libreoffice-7.1.9999[M]", "app-office/libreoffice-9999[M]"], "USE": ["accessibility", "base", "bluetooth", "+branding", "clang", "coinmp", "+cups", "custom-cflags", "+dbus", "debug", "eds", "firebird", "googledrive", "gstreamer", "+gtk", "kde", "ldap", "+mariadb", "odk", "pdfimport", "postgres", "test", "vulkan", "libreoffice_extensions_nlpsolver", "libreoffice_extensions_scripting-beanshell", "libreoffice_extensions_scripting-javascript", "libreoffice_extensions_wiki-publisher", "elibc_FreeBSD", "java", "python_single_target_python3_8", "python_single_target_python3_9"], "Description": "A full office productivity suite", "Home_page": "https://www.libreoffice.org", "repo": "gentoo"}], "[\u0411\u0440\u0430\u0443\u0437\u0435\u0440\u044b": [{"Category": "[]", "Name": "www-client/firefox-bin", "version": ["-78.13.0[U]", "-91.0.1[U]", "-91.0.2[U]"], "USE": ["+alsa", "+ffmpeg", "+gmp-autoupdate", "+pulseaudio", "selinux", "wayland", "l10n_ach", "l10n_af", "l10n_an", "l10n_ar", "l10n_ast", "l10n_az", "l10n_be", "l10n_bg", "l10n_bn", "l10n_br", "l10n_bs", "l10n_ca-valencia", "l10n_ca", "l10n_cak", "l10n_cs", "l10n_cy", "l10n_da", "l10n_de", "l10n_dsb", "l10n_el", "l10n_en-CA", "l10n_en-GB", "l10n_eo", "l10n_es-AR", "l10n_es-CL", "l10n_es-ES", "l10n_es-MX", "l10n_et", "l10n_eu", "l10n_fa", "l10n_ff", "l10n_fi", "l10n_fr", "l10n_fy", "l10n_ga", "l10n_gd", "l10n_gl", "l10n_gn", "l10n_gu", "l10n_he", "l10n_hi", "l10n_hr", "l10n_hsb", "l10n_hu", "l10n_hy", "l10n_ia", "l10n_id", "l10n_is", "l10n_it", "l10n_ja", "l10n_ka", "l10n_kab", "l10n_kk", "l10n_km", "l10n_kn", "l10n_ko", "l10n_lij", "l10n_lt", "l10n_lv", "l10n_mk", "l10n_mr", "l10n_ms", "l10n_my", "l10n_nb", "l10n_ne", "l10n_nl", "l10n_nn", "l10n_oc", "l10n_pa", "l10n_pl", "l10n_pt-BR", "l10n_pt-PT", "l10n_rm", "l10n_ro", "l10n_ru", "l10n_si", "l10n_sk", "l10n_sl", "l10n_son", "l10n_sq", "l10n_sr", "l10n_sv", "l10n_ta", "l10n_te", "l10n_th", "l10n_tl", "l10n_tr", "l10n_trs", "l10n_uk", "l10n_ur", "l10n_uz", "l10n_vi", "l10n_xh", "l10n_zh-CN", "l10n_zh-TW", "kernel_linux"], "Description": "Firefox Web Browser", "Home_page": "https://www.mozilla.com/firefox", "repo": "gentoo"}, {"Category": "[]", "Name": "www-client/chromium", "version": ["-92.0.4515.159[U]", "-93.0.4577.63[M]", "-94.0.4606.20[M]", "-95.0.4621.4[M]"], "USE": ["component-build", "cups", "cpu_flags_arm_neon", "+hangouts", "headless", "+js-type-check", "kerberos", "official", "pic", "+proprietary-codecs", "pulseaudio", "screencast", "selinux", "+suid", "+system-ffmpeg", "+system-icu", "vaapi", "wayland", "widevine", "kernel_linux", "custom-cflags", "+l10n_am", "+l10n_ar", "+l10n_bg", "+l10n_bn", "+l10n_ca", "+l10n_cs", "+l10n_da", "+l10n_de", "+l10n_el", "+l10n_en-GB", "+l10n_es", "+l10n_es-419", "+l10n_et", "+l10n_fa", "+l10n_fi", "+l10n_fil", "+l10n_fr", "+l10n_gu", "+l10n_he", "+l10n_hi", "+l10n_hr", "+l10n_hu", "+l10n_id", "+l10n_it", "+l10n_ja", "+l10n_kn", "+l10n_ko", "+l10n_lt", "+l10n_lv", "+l10n_ml", "+l10n_mr", "+l10n_ms", "+l10n_nb", "+l10n_nl", "+l10n_pl", "+l10n_pt-BR", "+l10n_pt-PT", "+l10n_ro", "+l10n_ru", "+l10n_sk", "+l10n_sl", "+l10n_sr", "+l10n_sv", "+l10n_sw", "+l10n_ta", "+l10n_te", "+l10n_th", "+l10n_tr", "+l10n_uk", "+l10n_vi", "+l10n_zh-CN", "+l10n_zh-TW"], "Description": "Open-source version of Google Chrome web browser", "Home_page": "https://chromium.org/", "repo": "gentoo"}, {"Category": "[]", "Name": "www-client/falkon", "version": ["-3.1.0-r1[U]"], "USE": ["dbus", "kde", "+X", "test", "debug", "test"], "Description": "Cross-platform web browser using QtWebEngine", "Home_page": "https://www.falkon.org/", "repo": "gentoo"}, {"Category": "[]", "Name": "www-client/links", "version": ["-2.23[U]", "-2.23-r1[M]"], "USE": ["brotli", "bzip2", "fbcon", "freetype", "gpm", "ipv6", "jpeg", "libevent", "livecd", "lzip", "lzma", "ssl", "suid", "svga", "tiff", "unicode", "X", "zlib", "zstd"], "Description": "A fast and lightweight web browser running in both graphics and text mode", "Home_page": "http://links.twibright.com/", "repo": "gentoo"}, {"Category": "[]", "Name": "www-client/vivaldi", "version": ["-3.7.2218.58[U]", "-4.1.2369.16[M]", "-4.1.2369.18[U]", "-4.1.2369.21[M]"], "USE": ["proprietary-codecs", "widevine", "kernel_linux", "+l10n_af", "+l10n_am", "+l10n_ar", "+l10n_az", "+l10n_be", "+l10n_bg", "+l10n_bn", "+l10n_ca", "+l10n_cs", "+l10n_da", "+l10n_de", "+l10n_de-CH", "+l10n_el", "+l10n_en-GB", "+l10n_en-US", "+l10n_eo", "+l10n_es", "+l10n_es-419", "+l10n_es-PE", "+l10n_et", "+l10n_eu", "+l10n_fa", "+l10n_fi", "+l10n_fil", "+l10n_fr", "+l10n_fy", "+l10n_gd", "+l10n_gl", "+l10n_gu", "+l10n_he", "+l10n_hi", "+l10n_hr", "+l10n_hu", "+l10n_hy", "+l10n_id", "+l10n_io", "+l10n_is", "+l10n_it", "+l10n_ja", "+l10n_jbo", "+l10n_ka", "+l10n_kab", "+l10n_kn", "+l10n_ko", "+l10n_ku", "+l10n_lt", "+l10n_lv", "+l10n_mk", "+l10n_ml", "+l10n_mr", "+l10n_ms", "+l10n_nb", "+l10n_nl", "+l10n_nn", "+l10n_pa", "+l10n_pl", "+l10n_pt-BR", "+l10n_pt-PT", "+l10n_ro", "+l10n_ru", "+l10n_sc", "+l10n_sk", "+l10n_sl", "+l10n_sq", "+l10n_sr", "+l10n_sr-Latn", "+l10n_sv", "+l10n_sw", "+l10n_ta", "+l10n_te", "+l10n_th", "+l10n_tr", "+l10n_uk", "+l10n_vi", "+l10n_zh-CN", "+l10n_zh-TW"], "Description": "A browser for our friends", "Home_page": "https://vivaldi.com/", "repo": "gentoo"}, {"Category": "[]", "Name": "www-client/netsurf", "version": ["-3.10-r4[M]"], "USE": ["bmp", "+duktape", "fbcon", "truetype", "+gif", "+gtk", "gtk2", "+javascript", "+jpeg", "mng", "+png", "+psl", "rosprite", "+svg", "+svgtiny", "+webp"], "Description": "a free, open source web browser", "Home_page": "https://www.netsurf-browser.org/", "repo": "gentoo"}], "[\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430\u043c": [{"Category": "[]", "Name": "app-editors/vim", "version": ["-8.2.0814-r100[U]", "-9999[M]"], "USE": ["X", "acl", "cscope", "debug", "gpm", "lua", "ipv6", "minimal", "nls", "perl", "python", "racket", "ruby", "selinux", "sound", "tcl", "terminal", "vim-pager", "lua_single_target_luajit", "lua_single_target_lua5-1", "python_single_target_python3_8", "python_single_target_python3_9", "python_single_target_python3_10"], "Description": "Vim, an improved vi-style text editor", "Home_page": "https://vim.sourceforge.io/ https://github.com/vim/vim", "repo": "gentoo"}, {"Category": "[]", "Name": "app-editors/nano", "version": ["-5.6.1-r2[U]", "-5.7-r2[M]", "-5.8-r2[M]", "-9999[M]"], "USE": ["debug", "justify", "magic", "minimal", "ncurses", "nls", "+spell", "+split-usr", "static", "unicode"], "Description": "GNU GPL'd Pico clone with more functionality", "Home_page": "https://www.nano-editor.org/ https://wiki.gentoo.org/wiki/Nano/Basics_Guide", "repo": "gentoo"}, {"Category": "[]", "Name": "app-editors/vscode", "version": ["-1.58.2[M]", "-1.59.1[M]"], "USE": [""], "Description": "Multiplatform Visual Studio Code from Microsoft", "Home_page": "https://code.visualstudio.com", "repo": "gentoo"}, {"Category": "[]", "Name": "app-editors/jedit", "version": ["-5.2.0-r1[U]", "-5.4.0[U]"], "USE": ["elibc_FreeBSD", "doc", "test"], "Description": "Programmer's editor written in Java", "Home_page": "http://www.jedit.org", "repo": "gentoo"}, {"Category": "[]", "Name": "app-editors/gedit", "version": ["-40.1[U]"], "USE": ["+python", "gtk-doc", "spell", "python_single_target_python3_8", "python_single_target_python3_9"], "Description": "A text editor for the GNOME desktop", "Home_page": "https://wiki.gnome.org/Apps/Gedit", "repo": "gentoo"}, {"Category": "", "Name": "", "version": [""], "USE": [""], "Description": "", "Home_page": "", "repo": ""}]}, "usesDecriptions": {"['X ', ' Add support for X11']": "[' Add support for X11'", "['Xaw3d ', ' Add support for the 3d athena widget set']": "[' Add support for the 3d athena widget set'", "['a52 ', ' Enable support for decoding ATSC A/52 streams used in DVD']": "[' Enable support for decoding ATSC A/52 streams used in DVD'", "['aac ', ' Enable support for MPEG', '4 AAC Audio']": "[' Enable support for MPEG', '4 AAC Audio'", "['aalib ', ' Add support for media', 'libs/aalib (ASCII', 'Graphics Library)']": "[' Add support for media', 'libs/aalib (ASCII', 'Graphics Library)'", "['accessibility ', \" Add support for accessibility (eg 'at\", \"spi' library)\"]": "[\" Add support for accessibility (eg 'at\", \"spi' library)\"", "['acl ', ' Add support for Access Control Lists']": "[' Add support for Access Control Lists'", "['acpi ', ' Add support for Advanced Configuration and Power Interface']": "[' Add support for Advanced Configuration and Power Interface'", "['adns ', ' Add support for asynchronous DNS resolution']": "[' Add support for asynchronous DNS resolution'", "['afs ', ' Add OpenAFS support (distributed file system)']": "[' Add OpenAFS support (distributed file system)'", "['alsa ', ' Add support for media', 'libs/alsa', 'lib (Advanced Linux Sound Architecture)']": "[' Add support for media', 'libs/alsa', 'lib (Advanced Linux Sound Architecture)'", "['altivec ', ' Add support for optimizations for G4 and G5/ppc970 processors']": "[' Add support for optimizations for G4 and G5/ppc970 processors'", "['ao ', ' Use libao audio output library for sound playback']": "[' Use libao audio output library for sound playback'", "['apache2 ', ' Add Apache2 support']": "[' Add Apache2 support'", "['aqua ', ' Include support for the Mac OS X Aqua (Carbon/Cocoa) GUI']": "[' Include support for the Mac OS X Aqua (Carbon/Cocoa) GUI'", "['atm ', ' Enable Asynchronous Transfer Mode protocol support']": "[' Enable Asynchronous Transfer Mode protocol support'", "['appindicator ', ' Build in support for notifications using the libindicate or libappindicator plugin']": "[' Build in support for notifications using the libindicate or libappindicator plugin'", "['audiofile ', ' Add support for libaudiofile where applicable']": "[' Add support for libaudiofile where applicable'", "['audit ', ' Enable support for Linux audit subsystem using sys', 'process/audit']": "[' Enable support for Linux audit subsystem using sys', 'process/audit'", "['ayatana ', ' Build in support for Ayatana notification using the libindicate or libappindicator plugin']": "[' Build in support for Ayatana notification using the libindicate or libappindicator plugin'", "['bash', 'completion ', ' Enable bash', 'completion support']": "['completion ', ' Enable bash', 'completion support'", "['berkdb ', ' Add support for sys', 'libs/db (Berkeley DB for MySQL)']": "[' Add support for sys', 'libs/db (Berkeley DB for MySQL)'", "['bidi ', ' Enable bidirectional language support']": "[' Enable bidirectional language support'", "['big', 'endian ', ' Big', 'endian toolchain support']": "['endian ', ' Big', 'endian toolchain support'", "['bindist ', ' Flag to enable or disable options for prebuilt (GRP) packages (eg. due to licensing issues)']": "[' Flag to enable or disable options for prebuilt (GRP) packages (eg. due to licensing issues)'", "['blas ', ' Add support for the virtual/blas numerical library']": "[' Add support for the virtual/blas numerical library'", "['bluetooth ', ' Enable Bluetooth Support']": "[' Enable Bluetooth Support'", "['branding ', ' Enable Gentoo specific branding']": "[' Enable Gentoo specific branding'", "['build ', ' !!internal use only!! DO NOT SET THIS FLAG YOURSELF!, used for creating build images and the first half of bootstrapping [make stage1]']": "[' !!internal use only!! DO NOT SET THIS FLAG YOURSELF!, used for creating build images and the first half of bootstrapping [make stage1'", "['bzip2 ', ' Use the bzlib compression library']": "[' Use the bzlib compression library'", "['cairo ', ' Enable support for the cairo graphics library']": "[' Enable support for the cairo graphics library'", "['calendar ', ' Add support for calendars (not using mcal!)']": "[' Add support for calendars (not using mcal!)'", "['caps ', ' Use Linux capabilities library to control privilege']": "[' Use Linux capabilities library to control privilege'", "['cdb ', ' Add support for the CDB database engine from the author of qmail']": "[' Add support for the CDB database engine from the author of qmail'", "['cdda ', ' Add Compact Disk Digital Audio (Standard Audio CD) support']": "[' Add Compact Disk Digital Audio (Standard Audio CD) support'", "['cddb ', ' Access cddb servers to retrieve and submit information about compact disks']": "[' Access cddb servers to retrieve and submit information about compact disks'", "['cdinstall ', ' Copy files from the CD rather than asking the user to copy them, mostly used with games']": "[' Copy files from the CD rather than asking the user to copy them, mostly used with games'", "['cdr ', ' Add support for CD writer hardware']": "[' Add support for CD writer hardware'", "['cgi ', ' Add CGI script support']": "[' Add CGI script support'", "['cjk ', ' Add support for Multi', 'byte character languages (Chinese, Japanese, Korean)']": "[' Add support for Multi', 'byte character languages (Chinese, Japanese, Korean)'", "['clamav ', ' Add support for Clam AntiVirus software (usually with a plugin)']": "[' Add support for Clam AntiVirus software (usually with a plugin)'", "['colord ', ' Support color management using x11', 'misc/colord']": "[' Support color management using x11', 'misc/colord'", "['connman ', ' Add support for net', 'misc/connman']": "[' Add support for net', 'misc/connman'", "['coreaudio ', ' Build the CoreAudio driver on Mac OS X systems']": "[' Build the CoreAudio driver on Mac OS X systems'", "['cracklib ', ' Support for cracklib strong password checking']": "[' Support for cracklib strong password checking'", "['crypt ', ' Add support for encryption ', '', ' using mcrypt or gpg where applicable']": "[' Add support for encryption ', '', ' using mcrypt or gpg where applicable'", "['css ', ' Enable reading of encrypted DVDs']": "[' Enable reading of encrypted DVDs'", "['cups ', ' Add support for CUPS (Common Unix Printing System)']": "[' Add support for CUPS (Common Unix Printing System)'", "['curl ', ' Add support for client', 'side URL transfer library']": "[' Add support for client', 'side URL transfer library'", "['custom', 'cflags ', ' Build with user', 'specified CFLAGS (unsupported)']": "['cflags ', ' Build with user', 'specified CFLAGS (unsupported)'", "['cvs ', ' Enable CVS (Concurrent Versions System) integration']": "[' Enable CVS (Concurrent Versions System) integration'", "['cxx ', ' Build support for C++ (bindings, extra libraries, code generation, ...)']": "[' Build support for C++ (bindings, extra libraries, code generation, ...)'", "['dbi ', ' Enable dev', 'db/libdbi (database', 'independent abstraction layer) support']": "[' Enable dev', 'db/libdbi (database', 'independent abstraction layer) support'", "['dbm ', ' Add support for generic DBM databases']": "[' Add support for generic DBM databases'", "['dbus ', ' Enable dbus support for anything that needs it (gpsd, gnomemeeting, etc)']": "[' Enable dbus support for anything that needs it (gpsd, gnomemeeting, etc)'", "['debug ', ' Enable extra debug codepaths, like asserts and extra output. If you want to get meaningful backtraces see https://wiki.gentoo.org/wiki/Project:Quality_Assurance/Backtraces']": "[' Enable extra debug codepaths, like asserts and extra output. If you want to get meaningful backtraces see https://wiki.gentoo.org/wiki/Project:Quality_Assurance/Backtraces'", "['dedicated ', ' Add support for dedicated game servers (some packages do not provide clients and servers at the same time)']": "[' Add support for dedicated game servers (some packages do not provide clients and servers at the same time)'", "['dga ', ' Add DGA (Direct Graphic Access) support for X']": "[' Add DGA (Direct Graphic Access) support for X'", "['dist', 'kernel ', ' Enable subslot rebuilds on Distribution Kernel upgrades']": "['kernel ', ' Enable subslot rebuilds on Distribution Kernel upgrades'", "['djvu ', ' Support DjVu, a PDF', 'like document format esp. suited for scanned documents']": "[' Support DjVu, a PDF', 'like document format esp. suited for scanned documents'", "['doc ', ' Add extra documentation (API, Javadoc, etc). It is recommended to enable per package instead of globally']": "[' Add extra documentation (API, Javadoc, etc). It is recommended to enable per package instead of globally'", "['dri ', ' Enable direct rendering: used for accelerated 3D and some 2D, like DMA']": "[' Enable direct rendering: used for accelerated 3D and some 2D, like DMA'", "['dts ', ' Enable DTS Coherent Acoustics decoder support']": "[' Enable DTS Coherent Acoustics decoder support'", "['dv ', ' Enable support for a codec used by many camcorders']": "[' Enable support for a codec used by many camcorders'", "['dvb ', ' Add support for DVB (Digital Video Broadcasting)']": "[' Add support for DVB (Digital Video Broadcasting)'", "['dvd ', ' Add support for DVDs']": "[' Add support for DVDs'", "['dvdr ', ' Add support for DVD writer hardware (e.g. in xcdroast)']": "[' Add support for DVD writer hardware (e.g. in xcdroast)'", "['eds ', ' Enable support for Evolution', 'Data', 'Server (EDS)']": "[' Enable support for Evolution', 'Data', 'Server (EDS)'", "['elogind ', ' Enable session tracking via sys', 'auth/elogind']": "[' Enable session tracking via sys', 'auth/elogind'", "['emacs ', ' Add support for GNU Emacs']": "[' Add support for GNU Emacs'", "['emboss ', ' Add support for the European Molecular Biology Open Software Suite']": "[' Add support for the European Molecular Biology Open Software Suite'", "['encode ', ' Add support for encoding of audio or video files']": "[' Add support for encoding of audio or video files'", "['examples ', ' Install examples, usually source code']": "[' Install examples, usually source code'", "['exif ', ' Add support for reading EXIF headers from JPEG and TIFF images']": "[' Add support for reading EXIF headers from JPEG and TIFF images'", "['expat ', ' Enable the use of dev', 'libs/expat for XML parsing']": "[' Enable the use of dev', 'libs/expat for XML parsing'", "['fam ', ' Enable FAM (File Alteration Monitor) support']": "[' Enable FAM (File Alteration Monitor) support'", "['fastcgi ', ' Add support for the FastCGI interface']": "[' Add support for the FastCGI interface'", "['fbcon ', ' Add framebuffer support for the console, via the kernel']": "[' Add framebuffer support for the console, via the kernel'", "['ffmpeg ', ' Enable ffmpeg/libav', 'based audio/video codec support']": "[' Enable ffmpeg/libav', 'based audio/video codec support'", "['fftw ', ' Use FFTW library for computing Fourier transforms']": "[' Use FFTW library for computing Fourier transforms'", "['filecaps ', ' Use Linux file capabilities to control privilege rather than set*id (this is orthogonal to USE=caps which uses capabilities at runtime e.g. libcap)']": "[' Use Linux file capabilities to control privilege rather than set*id (this is orthogonal to USE=caps which uses capabilities at runtime e.g. libcap)'", "['firebird ', ' Add support for the Firebird relational database']": "[' Add support for the Firebird relational database'", "['flac ', ' Add support for FLAC: Free Lossless Audio Codec']": "[' Add support for FLAC: Free Lossless Audio Codec'", "['fltk ', ' Add support for the Fast Light Toolkit gui interface']": "[' Add support for the Fast Light Toolkit gui interface'", "['fontconfig ', ' Support for configuring and customizing font access via media', 'libs/fontconfig']": "[' Support for configuring and customizing font access via media', 'libs/fontconfig'", "['fortran ', ' Add support for fortran']": "[' Add support for fortran'", "['freetds ', ' Add support for the TDS protocol to connect to MSSQL/Sybase databases']": "[' Add support for the TDS protocol to connect to MSSQL/Sybase databases'", "['freewnn ', ' Add support for FreeWnn kana to kanji conversion engine']": "[' Add support for FreeWnn kana to kanji conversion engine'", "['ftp ', ' Add FTP (File Transfer Protocol) support']": "[' Add FTP (File Transfer Protocol) support'", "['gd ', ' Add support for media', 'libs/gd (to generate graphics on the fly)']": "[' Add support for media', 'libs/gd (to generate graphics on the fly)'", "['gdbm ', ' Add support for sys', 'libs/gdbm (GNU database libraries)']": "[' Add support for sys', 'libs/gdbm (GNU database libraries)'", "['geoip ', ' Add geoip support for country and city lookup based on IPs']": "[' Add geoip support for country and city lookup based on IPs'", "['geolocation ', ' Enable physical position determination']": "[' Enable physical position determination'", "['ggi ', ' Add support for media', 'libs/libggi (non', 'X video api/drivers)']": "[' Add support for media', 'libs/libggi (non', 'X video api/drivers)'", "['gif ', ' Add GIF image support']": "[' Add GIF image support'", "['gimp ', ' Build a plugin for the GIMP']": "[' Build a plugin for the GIMP'", "['git ', ' Enable git (version control system) support']": "[' Enable git (version control system) support'", "['gles2', 'only ', ' Use GLES 2.0 or later instead of full OpenGL']": "['only ', ' Use GLES 2.0 or later instead of full OpenGL'", "['glut ', ' Build an OpenGL plugin using the GLUT library']": "[' Build an OpenGL plugin using the GLUT library'", "['gmp ', ' Add support for dev', 'libs/gmp (GNU MP library)']": "[' Add support for dev', 'libs/gmp (GNU MP library)'", "['gnome ', ' Add GNOME support']": "[' Add GNOME support'", "['gnome', 'keyring ', ' Enable support for storing passwords via gnome', 'keyring']": "['keyring ', ' Enable support for storing passwords via gnome', 'keyring'", "['gnuplot ', ' Enable support for gnuplot (data and function plotting)']": "[' Enable support for gnuplot (data and function plotting)'", "['gnutls ', ' Prefer net', 'libs/gnutls as SSL/TLS provider (ineffective with USE=', 'ssl)']": "[' Prefer net', 'libs/gnutls as SSL/TLS provider (ineffective with USE=', 'ssl)'", "['gphoto2 ', ' Add digital camera support']": "[' Add digital camera support'", "['gpm ', ' Add support for sys', 'libs/gpm (Console', 'based mouse driver)']": "[' Add support for sys', 'libs/gpm (Console', 'based mouse driver)'", "['gps ', ' Add support for Global Positioning System']": "[' Add support for Global Positioning System'", "['graphicsmagick ', ' Build and link against GraphicsMagick instead of ImageMagick (requires USE=imagemagick if optional)']": "[' Build and link against GraphicsMagick instead of ImageMagick (requires USE=imagemagick if optional)'", "['graphviz ', ' Add support for the Graphviz library']": "[' Add support for the Graphviz library'", "['gsl ', ' Use the GNU scientific library for calculations']": "[' Use the GNU scientific library for calculations'", "['gsm ', ' Add support for the gsm lossy speech compression codec']": "[' Add support for the gsm lossy speech compression codec'", "['gstreamer ', ' Add support for media', 'libs/gstreamer (Streaming media)']": "[' Add support for media', 'libs/gstreamer (Streaming media)'", "['gtk ', ' Add support for x11', 'libs/gtk+ (The GIMP Toolkit)']": "[' Add support for x11', 'libs/gtk+ (The GIMP Toolkit)'", "['gtk', 'doc ', ' Build and install gtk', 'doc based developer documentation for dev', 'util/devhelp, IDE and offline use']": "['doc ', ' Build and install gtk', 'doc based developer documentation for dev', 'util/devhelp, IDE and offline use'", "['gui ', ' Enable support for a graphical user interface']": "[' Enable support for a graphical user interface'", "['guile ', ' Add support for the guile Scheme interpreter']": "[' Add support for the guile Scheme interpreter'", "['gzip ', ' Compress files with Lempel', 'Ziv coding (LZ77)']": "[' Compress files with Lempel', 'Ziv coding (LZ77)'", "['handbook ', ' Enable handbooks generation for packages by KDE']": "[' Enable handbooks generation for packages by KDE'", "['hardened ', ' Activate default security enhancements for toolchain (gcc, glibc, binutils)']": "[' Activate default security enhancements for toolchain (gcc, glibc, binutils)'", "['hddtemp ', ' Enable monitoring of hdd temperature (app', 'admin/hddtemp)']": "[' Enable monitoring of hdd temperature (app', 'admin/hddtemp)'", "['hdf5 ', ' Add support for the Hierarchical Data Format v5']": "[' Add support for the Hierarchical Data Format v5'", "['headers', 'only ', ' Install only C headers instead of whole package. Mainly used by sys', 'devel/crossdev for toolchain bootstrap.']": "['only ', ' Install only C headers instead of whole package. Mainly used by sys', 'devel/crossdev for toolchain bootstrap.'", "['hscolour ', ' Include coloured haskell sources to generated documentation (dev', 'haskell/hscolour)']": "[' Include coloured haskell sources to generated documentation (dev', 'haskell/hscolour)'", "['ibm ', ' Add support for IBM ppc64 specific systems']": "[' Add support for IBM ppc64 specific systems'", "['iconv ', ' Enable support for the iconv character set conversion library']": "[' Enable support for the iconv character set conversion library'", "['icu ', ' Enable ICU (Internationalization Components for Unicode) support, using dev', 'libs/icu']": "[' Enable ICU (Internationalization Components for Unicode) support, using dev', 'libs/icu'", "['idn ', ' Enable support for Internationalized Domain Names']": "[' Enable support for Internationalized Domain Names'", "['ieee1394 ', ' Enable FireWire/iLink IEEE1394 support (dv, camera, ...)']": "[' Enable FireWire/iLink IEEE1394 support (dv, camera, ...)'", "['imagemagick ', ' Enable optional support for the ImageMagick or GraphicsMagick image converter']": "[' Enable optional support for the ImageMagick or GraphicsMagick image converter'", "['imap ', ' Add support for IMAP (Internet Mail Application Protocol)']": "[' Add support for IMAP (Internet Mail Application Protocol)'", "['imlib ', ' Add support for imlib, an image loading and rendering library']": "[' Add support for imlib, an image loading and rendering library'", "['infiniband ', ' Enable Infiniband RDMA transport support']": "[' Enable Infiniband RDMA transport support'", "['inotify ', ' Enable inotify filesystem monitoring support']": "[' Enable inotify filesystem monitoring support'", "['introspection ', ' Add support for GObject based introspection']": "[' Add support for GObject based introspection'", "['iodbc ', ' Add support for iODBC library']": "[' Add support for iODBC library'", "['ios ', \" Enable support for Apple's iDevice with iOS operating system (iPad, iPhone, iPod, etc)\"]": "[\" Enable support for Apple's iDevice with iOS operating system (iPad, iPhone, iPod, etc)\"", "['ipod ', ' Enable support for iPod device access']": "[' Enable support for iPod device access'", "['ipv6 ', ' Add support for IP version 6']": "[' Add support for IP version 6'", "['jack ', ' Add support for the JACK Audio Connection Kit']": "[' Add support for the JACK Audio Connection Kit'", "['java ', ' Add support for Java']": "[' Add support for Java'", "['javascript ', ' Enable javascript support']": "[' Enable javascript support'", "['jbig ', ' Enable jbig', 'kit support for tiff, Hylafax, ImageMagick, etc']": "[' Enable jbig', 'kit support for tiff, Hylafax, ImageMagick, etc'", "['jemalloc ', ' Use dev', 'libs/jemalloc for memory management']": "[' Use dev', 'libs/jemalloc for memory management'", "['jit ', ' Enable just', 'in', 'time compilation for improved performance. May prevent use of some PaX memory protection features in Gentoo Hardened.']": "[' Enable just', 'in', 'time compilation for improved performance. May prevent use of some PaX memory protection features in Gentoo Hardened.'", "['joystick ', ' Add support for joysticks in all packages']": "[' Add support for joysticks in all packages'", "['jpeg ', ' Add JPEG image support']": "[' Add JPEG image support'", "['jpeg2k ', ' Support for JPEG 2000, a wavelet', 'based image compression format']": "[' Support for JPEG 2000, a wavelet', 'based image compression format'", "['kde ', ' Add support for software made by KDE, a free software community']": "[' Add support for software made by KDE, a free software community'", "['kerberos ', ' Add kerberos support']": "[' Add kerberos support'", "['ladspa ', ' Enable the ability to support ladspa plugins']": "[' Enable the ability to support ladspa plugins'", "['lame ', ' Prefer using LAME libraries for MP3 encoding support']": "[' Prefer using LAME libraries for MP3 encoding support'", "['lapack ', ' Add support for the virtual/lapack numerical library']": "[' Add support for the virtual/lapack numerical library'", "['lash ', ' Add LASH Audio Session Handler support']": "[' Add LASH Audio Session Handler support'", "['latex ', ' Add support for LaTeX (typesetting package)']": "[' Add support for LaTeX (typesetting package)'", "['lcms ', ' Add lcms support (color management engine)']": "[' Add lcms support (color management engine)'", "['ldap ', ' Add LDAP support (Lightweight Directory Access Protocol)']": "[' Add LDAP support (Lightweight Directory Access Protocol)'", "['libass ', ' SRT/SSA/ASS (SubRip / SubStation Alpha) subtitle support']": "[' SRT/SSA/ASS (SubRip / SubStation Alpha) subtitle support'", "['libcaca ', ' Add support for colored ASCII', 'art graphics']": "[' Add support for colored ASCII', 'art graphics'", "['libedit ', ' Use the libedit library (replacement for readline)']": "[' Use the libedit library (replacement for readline)'", "['libffi ', ' Enable support for Foreign Function Interface library']": "[' Enable support for Foreign Function Interface library'", "['libnotify ', ' Enable desktop notification support']": "[' Enable desktop notification support'", "['libsamplerate ', ' Build with support for converting sample rates using libsamplerate']": "[' Build with support for converting sample rates using libsamplerate'", "['libwww ', ' Add libwww support (General purpose WEB API)']": "[' Add libwww support (General purpose WEB API)'", "['lirc ', \" Add support for lirc (Linux's Infra\", 'Red Remote Control)']": "[\" Add support for lirc (Linux's Infra\", 'Red Remote Control)'", "['livecd ', ' !!internal use only!! DO NOT SET THIS FLAG YOURSELF!, used during livecd building']": "[' !!internal use only!! DO NOT SET THIS FLAG YOURSELF!, used during livecd building'", "['llvm', 'libunwind ', ' Use sys', 'libs/llvm', 'libunwind instead of sys', 'libs/libunwind']": "['libunwind ', ' Use sys', 'libs/llvm', 'libunwind instead of sys', 'libs/libunwind'", "['lm', 'sensors ', ' Add linux lm', 'sensors (hardware sensors) support']": "['sensors ', ' Add linux lm', 'sensors (hardware sensors) support'", "['lua ', ' Enable Lua scripting support']": "[' Enable Lua scripting support'", "['luajit ', ' Use dev', 'lang/luajit instead of dev', 'lang/lua (ineffective with USE=', 'lua)']": "[' Use dev', 'lang/luajit instead of dev', 'lang/lua (ineffective with USE=', 'lua)'", "['lzma ', ' Support for LZMA (de)compression algorithm']": "[' Support for LZMA (de)compression algorithm'", "['lz4 ', ' Enable support for lz4 compression (as implemented in app', 'arch/lz4)']": "[' Enable support for lz4 compression (as implemented in app', 'arch/lz4)'", "['lzo ', ' Enable support for lzo compression']": "[' Enable support for lzo compression'", "['m17n', 'lib ', ' Enable m17n', 'lib support']": "['lib ', ' Enable m17n', 'lib support'", "['mad ', ' Add support for mad (high', 'quality mp3 decoder library and cli frontend)']": "[' Add support for mad (high', 'quality mp3 decoder library and cli frontend)'", "['magic ', ' Add support for file type detection via magic bytes (usually via libmagic from sys', 'apps/file)']": "[' Add support for file type detection via magic bytes (usually via libmagic from sys', 'apps/file)'", "['maildir ', ' Add support for maildir (~/.maildir) style mail spools']": "[' Add support for maildir (~/.maildir) style mail spools'", "['man ', ' Build and install man pages']": "[' Build and install man pages'", "['matroska ', ' Add support for the matroska container format (extensions .mkv, .mka and .mks)']": "[' Add support for the matroska container format (extensions .mkv, .mka and .mks)'", "['mbox ', ' Add support for mbox (/var/spool/mail) style mail spools']": "[' Add support for mbox (/var/spool/mail) style mail spools'", "['memcached ', ' Add support for memcached']": "[' Add support for memcached'", "['mhash ', ' Add support for the mhash library']": "[' Add support for the mhash library'", "['mikmod ', ' Add libmikmod support to allow playing of SoundTracker', 'style music files']": "[' Add libmikmod support to allow playing of SoundTracker', 'style music files'", "['milter ', ' Add sendmail mail filter (milter) support']": "[' Add sendmail mail filter (milter) support'", "['minimal ', ' Install a very minimal build (disables, for example, plugins, fonts, most drivers, non', 'critical features)']": "[' Install a very minimal build (disables, for example, plugins, fonts, most drivers, non', 'critical features)'", "['mmap ', ' Add mmap (memory map) support']": "[' Add mmap (memory map) support'", "['mms ', ' Support for Microsoft Media Server (MMS) streams']": "[' Support for Microsoft Media Server (MMS) streams'", "['mng ', ' Add support for libmng (MNG images)']": "[' Add support for libmng (MNG images)'", "['modplug ', ' Add libmodplug support for playing SoundTracker', 'style music files']": "[' Add libmodplug support for playing SoundTracker', 'style music files'", "['modules ', ' Build the kernel modules']": "[' Build the kernel modules'", "['mono ', ' Build Mono bindings to support dotnet type stuff']": "[' Build Mono bindings to support dotnet type stuff'", "['motif ', ' Add support for the Motif toolkit']": "[' Add support for the Motif toolkit'", "['mp3 ', ' Add support for reading mp3 files']": "[' Add support for reading mp3 files'", "['mp4 ', ' Support for MP4 container format']": "[' Support for MP4 container format'", "['mpeg ', ' Add libmpeg3 support to various packages']": "[' Add libmpeg3 support to various packages'", "['mpi ', ' Add MPI (Message Passing Interface) layer to the apps that support it']": "[' Add MPI (Message Passing Interface) layer to the apps that support it'", "['mplayer ', ' Enable mplayer support for playback or encoding']": "[' Enable mplayer support for playback or encoding'", "['mssql ', ' Add support for Microsoft SQL Server database']": "[' Add support for Microsoft SQL Server database'", "['mtp ', ' Enable support for Media Transfer Protocol']": "[' Enable support for Media Transfer Protocol'", "['multilib ', ' On 64bit systems, if you want to be able to compile 32bit and 64bit binaries']": "[' On 64bit systems, if you want to be able to compile 32bit and 64bit binaries'", "['musepack ', ' Enable support for the musepack audio codec']": "[' Enable support for the musepack audio codec'", "['musicbrainz ', ' Lookup audio metadata using MusicBrainz community service (musicbrainz.org)']": "[' Lookup audio metadata using MusicBrainz community service (musicbrainz.org)'", "['mysql ', ' Add mySQL Database support']": "[' Add mySQL Database support'", "['mysqli ', ' Add support for the improved mySQL libraries']": "[' Add support for the improved mySQL libraries'", "['nas ', ' Add support for network audio sound']": "[' Add support for network audio sound'", "['ncurses ', ' Add ncurses support (console display library)']": "[' Add ncurses support (console display library)'", "['neXt ', ' Enable neXt toolkit']": "[' Enable neXt toolkit'", "['neon ', ' Enable optimization support for ARM NEON processors']": "[' Enable optimization support for ARM NEON processors'", "['netcdf ', ' Enable NetCDF data format support']": "[' Enable NetCDF data format support'", "['networkmanager ', ' Enable net', 'misc/networkmanager support']": "[' Enable net', 'misc/networkmanager support'", "['nis ', ' Support for NIS/YP services']": "[' Support for NIS/YP services'", "['nls ', ' Add Native Language Support (using gettext ', ' GNU locale utilities)']": "[' Add Native Language Support (using gettext ', ' GNU locale utilities)'", "['nntp ', ' Add support for newsgroups (Network News Transfer Protocol)']": "[' Add support for newsgroups (Network News Transfer Protocol)'", "['nocd ', ' Install all files required to run the application without a CD mounted']": "[' Install all files required to run the application without a CD mounted'", "['nsplugin ', ' Build plugin for browsers supporting the Netscape plugin architecture (that is almost any modern browser)']": "[' Build plugin for browsers supporting the Netscape plugin architecture (that is almost any modern browser)'", "['ocaml ', ' Add support/bindings for the Ocaml language']": "[' Add support/bindings for the Ocaml language'", "['ocamlopt ', ' Enable ocamlopt support (ocaml native code compiler) ', '', ' Produces faster programs (Warning: you have to disable/enable it at a global scale)']": "[' Enable ocamlopt support (ocaml native code compiler) ', '', ' Produces faster programs (Warning: you have to disable/enable it at a global scale)'", "['oci8 ', ' Add Oracle 8 Database Support']": "[' Add Oracle 8 Database Support'", "['oci8', 'instant', 'client ', ' Use dev', 'db/oracle', 'instantclient', 'basic as Oracle provider instead of requiring a full Oracle server install']": "['instant', 'client ', ' Use dev', 'db/oracle', 'instantclient', 'basic as Oracle provider instead of requiring a full Oracle server install'", "['odbc ', ' Add ODBC Support (Open DataBase Connectivity)']": "[' Add ODBC Support (Open DataBase Connectivity)'", "['offensive ', ' Enable potentially offensive items in packages']": "[' Enable potentially offensive items in packages'", "['ofx ', ' Enable support for importing (and exporting) OFX (Open Financial eXchange) data files']": "[' Enable support for importing (and exporting) OFX (Open Financial eXchange) data files'", "['ogg ', ' Add support for the Ogg container format (commonly used by Vorbis, Theora and flac)']": "[' Add support for the Ogg container format (commonly used by Vorbis, Theora and flac)'", "['openal ', ' Add support for the Open Audio Library']": "[' Add support for the Open Audio Library'", "['openexr ', ' Support for the OpenEXR graphics file format']": "[' Support for the OpenEXR graphics file format'", "['opengl ', ' Add support for OpenGL (3D graphics)']": "[' Add support for OpenGL (3D graphics)'", "['openmp ', ' Build support for the OpenMP (support parallel computing), requires >=sys', 'devel/gcc', '4.2 built with USE=\"openmp\"']": "[' Build support for the OpenMP (support parallel computing), requires >=sys', 'devel/gcc', '4.2 built with USE=\"openmp\"'", "['opus ', ' Enable Opus audio codec support']": "[' Enable Opus audio codec support'", "['oracle ', ' Enable Oracle Database support']": "[' Enable Oracle Database support'", "['orc ', ' Use dev', 'lang/orc for just', 'in', 'time optimization of array operations']": "[' Use dev', 'lang/orc for just', 'in', 'time optimization of array operations'", "['osc ', ' Enable support for Open Sound Control']": "[' Enable support for Open Sound Control'", "['oss ', ' Add support for OSS (Open Sound System)']": "[' Add support for OSS (Open Sound System)'", "['pam ', ' Add support for PAM (Pluggable Authentication Modules) ', ' DANGEROUS to arbitrarily flip']": "[' Add support for PAM (Pluggable Authentication Modules) ', ' DANGEROUS to arbitrarily flip'", "['pch ', ' Enable precompiled header support for faster compilation at the expense of disk space and memory (>=sys', 'devel/gcc', '3.4 only)']": "[' Enable precompiled header support for faster compilation at the expense of disk space and memory (>=sys', 'devel/gcc', '3.4 only)'", "['pcmcia ', ' Add support for PCMCIA slots/devices found on laptop computers']": "[' Add support for PCMCIA slots/devices found on laptop computers'", "['pcre ', ' Add support for Perl Compatible Regular Expressions']": "[' Add support for Perl Compatible Regular Expressions'", "['pda ', ' Add support for portable devices']": "[' Add support for portable devices'", "['pdf ', ' Add general support for PDF (Portable Document Format), this replaces the pdflib and cpdflib flags']": "[' Add general support for PDF (Portable Document Format), this replaces the pdflib and cpdflib flags'", "['perl ', ' Add optional support/bindings for the Perl language']": "[' Add optional support/bindings for the Perl language'", "['php ', ' Include support for the PHP language']": "[' Include support for the PHP language'", "['pie ', ' Build programs as Position Independent Executables (a security hardening technique)']": "[' Build programs as Position Independent Executables (a security hardening technique)'", "['plasma ', ' Build optional KDE plasma addons']": "[' Build optional KDE plasma addons'", "['plotutils ', ' Add support for plotutils (library for 2', 'D vector graphics)']": "[' Add support for plotutils (library for 2', 'D vector graphics)'", "['png ', ' Add support for libpng (PNG images)']": "[' Add support for libpng (PNG images)'", "['policykit ', ' Enable PolicyKit (polkit) authentication support']": "[' Enable PolicyKit (polkit) authentication support'", "['portaudio ', ' Add support for the crossplatform portaudio audio API']": "[' Add support for the crossplatform portaudio audio API'", "['posix ', ' Add support for POSIX', 'compatible functions']": "[' Add support for POSIX', 'compatible functions'", "['postgres ', ' Add support for the postgresql database']": "[' Add support for the postgresql database'", "['postscript ', ' Enable support for the PostScript language (often with ghostscript', 'gpl or libspectre)']": "[' Enable support for the PostScript language (often with ghostscript', 'gpl or libspectre)'", "['ppds ', ' Add support for automatically generated ppd (printing driver) files']": "[' Add support for automatically generated ppd (printing driver) files'", "['prefix ', ' Defines if a Gentoo Prefix offset installation is used']": "[' Defines if a Gentoo Prefix offset installation is used'", "['profile ', ' Add support for software performance analysis (will likely vary from ebuild to ebuild)']": "[' Add support for software performance analysis (will likely vary from ebuild to ebuild)'", "['pulseaudio ', ' Add support for PulseAudio sound server']": "[' Add support for PulseAudio sound server'", "['python ', ' Add optional support/bindings for the Python language']": "[' Add optional support/bindings for the Python language'", "['qdbm ', ' Add support for the qdbm (Quick Database Manager) library']": "[' Add support for the qdbm (Quick Database Manager) library'", "['qmail', 'spp ', ' Add support for qmail SMTP plugins']": "['spp ', ' Add support for qmail SMTP plugins'", "['qt5 ', ' Add support for the Qt 5 application and UI framework']": "[' Add support for the Qt 5 application and UI framework'", "['quicktime ', ' Add support for OpenQuickTime']": "[' Add support for OpenQuickTime'", "['radius ', ' Add support for RADIUS authentication']": "[' Add support for RADIUS authentication'", "['raw ', ' Add support for raw image formats']": "[' Add support for raw image formats'", "['rdp ', ' Enables RDP/Remote Desktop support']": "[' Enables RDP/Remote Desktop support'", "['readline ', ' Enable support for libreadline, a GNU line', 'editing library that almost everyone wants']": "[' Enable support for libreadline, a GNU line', 'editing library that almost everyone wants'", "['recode ', ' Enable support for the GNU recode library']": "[' Enable support for the GNU recode library'", "['rss ', ' Enable support for RSS feeds']": "[' Enable support for RSS feeds'", "['ruby ', ' Add support/bindings for the Ruby language']": "[' Add support/bindings for the Ruby language'", "['samba ', ' Add support for SAMBA (Windows File and Printer sharing)']": "[' Add support for SAMBA (Windows File and Printer sharing)'", "['sasl ', ' Add support for the Simple Authentication and Security Layer']": "[' Add support for the Simple Authentication and Security Layer'", "['savedconfig ', ' Use this to restore your config from /etc/portage/savedconfig ${CATEGORY}/${PN}. Make sure your USE flags allow for appropriate dependencies']": "[' Use this to restore your config from /etc/portage/savedconfig ${CATEGORY}/${PN}. Make sure your USE flags allow for appropriate dependencies'", "['scanner ', ' Add support for scanner hardware (e.g. build the sane frontend in kdegraphics)']": "[' Add support for scanner hardware (e.g. build the sane frontend in kdegraphics)'", "['sctp ', ' Support for Stream Control Transmission Protocol']": "[' Support for Stream Control Transmission Protocol'", "['sdl ', ' Add support for Simple Direct Layer (media library)']": "[' Add support for Simple Direct Layer (media library)'", "['seccomp ', ' Enable seccomp (secure computing mode) to perform system call filtering at runtime to increase security of programs']": "[' Enable seccomp (secure computing mode) to perform system call filtering at runtime to increase security of programs'", "['selinux ', ' !!internal use only!! Security Enhanced Linux support, this must be set by the selinux profile or breakage will occur']": "[' !!internal use only!! Security Enhanced Linux support, this must be set by the selinux profile or breakage will occur'", "['semantic', 'desktop ', ' Cross', 'KDE support for semantic search and information retrieval']": "['desktop ', ' Cross', 'KDE support for semantic search and information retrieval'", "['session ', ' Add persistent session support']": "[' Add persistent session support'", "['skey ', ' Enable S/Key (Single use password) authentication support']": "[' Enable S/Key (Single use password) authentication support'", "['slang ', \" Add support for the slang text display library (it's like ncurses, but different)\"]": "[\" Add support for the slang text display library (it's like ncurses, but different)\"", "['slp ', ' Add Service Locator Protocol support']": "[' Add Service Locator Protocol support'", "['smartcard ', ' Enable smartcard support']": "[' Enable smartcard support'", "['smp ', ' Enable support for multiprocessors or multicore systems']": "[' Enable support for multiprocessors or multicore systems'", "['snappy ', ' Enable support for Snappy compression (as implemented in app', 'arch/snappy)']": "[' Enable support for Snappy compression (as implemented in app', 'arch/snappy)'", "['sndfile ', ' Add support for libsndfile']": "[' Add support for libsndfile'", "['snmp ', ' Add support for the Simple Network Management Protocol if available']": "[' Add support for the Simple Network Management Protocol if available'", "['soap ', ' Add support for SOAP (Simple Object Access Protocol)']": "[' Add support for SOAP (Simple Object Access Protocol)'", "['sockets ', ' Add support for tcp/ip sockets']": "[' Add support for tcp/ip sockets'", "['socks5 ', ' Add support for the socks5 proxy']": "[' Add support for the socks5 proxy'", "['sound ', ' Enable sound support']": "[' Enable sound support'", "['source ', ' Zip the sources and install them']": "[' Zip the sources and install them'", "['sox ', ' Add support for Sound eXchange (SoX)']": "[' Add support for Sound eXchange (SoX)'", "['speex ', ' Add support for the speex audio codec (used for speech)']": "[' Add support for the speex audio codec (used for speech)'", "['spell ', ' Add dictionary support']": "[' Add dictionary support'", "['split', 'usr ', ' Enable behavior to support maintaining /bin, /lib*, /sbin and /usr/sbin separately from /usr/bin and /usr/lib*']": "['usr ', ' Enable behavior to support maintaining /bin, /lib*, /sbin and /usr/sbin separately from /usr/bin and /usr/lib*'", "['sqlite ', ' Add support for sqlite ', ' embedded sql database']": "[' Add support for sqlite ', ' embedded sql database'", "['ssl ', ' Add support for SSL/TLS connections (Secure Socket Layer / Transport Layer Security)']": "[' Add support for SSL/TLS connections (Secure Socket Layer / Transport Layer Security)'", "['startup', 'notification ', ' Enable application startup event feedback mechanism']": "['notification ', ' Enable application startup event feedback mechanism'", "['static ', ' !!do not set this during bootstrap!! Causes binaries to be statically linked instead of dynamically']": "[' !!do not set this during bootstrap!! Causes binaries to be statically linked instead of dynamically'", "['static', 'libs ', ' Build static versions of dynamic libraries as well']": "['libs ', ' Build static versions of dynamic libraries as well'", "['subversion ', ' Enable subversion (version control system) support']": "[' Enable subversion (version control system) support'", "['suid ', ' Enable setuid root program, with potential security risks']": "[' Enable setuid root program, with potential security risks'", "['svg ', ' Add support for SVG (Scalable Vector Graphics)']": "[' Add support for SVG (Scalable Vector Graphics)'", "['svga ', ' Add support for SVGAlib (graphics library)']": "[' Add support for SVGAlib (graphics library)'", "['symlink ', ' Force kernel ebuilds to automatically update the /usr/src/linux symlink']": "[' Force kernel ebuilds to automatically update the /usr/src/linux symlink'", "['syslog ', ' Enable support for syslog']": "[' Enable support for syslog'", "['systemd ', ' Enable use of systemd', 'specific libraries and features like socket activation or session tracking']": "[' Enable use of systemd', 'specific libraries and features like socket activation or session tracking'", "['szip ', ' Use the szip compression library']": "[' Use the szip compression library'", "['taglib ', ' Enable tagging support with taglib']": "[' Enable tagging support with taglib'", "['tcl ', ' Add support the Tcl language']": "[' Add support the Tcl language'", "['tcmalloc ', ' Use the dev', 'util/google', 'perftools libraries to replace the malloc() implementation with a possibly faster one']": "[' Use the dev', 'util/google', 'perftools libraries to replace the malloc() implementation with a possibly faster one'", "['tcpd ', ' Add support for TCP wrappers']": "[' Add support for TCP wrappers'", "['telemetry ', ' Send anonymized usage information to upstream so they can better understand our users']": "[' Send anonymized usage information to upstream so they can better understand our users'", "['test ', ' Enable dependencies and/or preparations necessary to run tests (usually controlled by FEATURES=test but can be toggled independently)']": "[' Enable dependencies and/or preparations necessary to run tests (usually controlled by FEATURES=test but can be toggled independently)'", "['theora ', ' Add support for the Theora Video Compression Codec']": "[' Add support for the Theora Video Compression Codec'", "['threads ', ' Add threads support for various packages. Usually pthreads']": "[' Add threads support for various packages. Usually pthreads'", "['tidy ', ' Add support for HTML Tidy']": "[' Add support for HTML Tidy'", "['tiff ', ' Add support for the TIFF image format']": "[' Add support for the TIFF image format'", "['timidity ', ' Build with Timidity++ (MIDI sequencer) support']": "[' Build with Timidity++ (MIDI sequencer) support'", "['tk ', ' Add support for Tk GUI toolkit']": "[' Add support for Tk GUI toolkit'", "['truetype ', ' Add support for FreeType and/or FreeType2 fonts']": "[' Add support for FreeType and/or FreeType2 fonts'", "['uclibc ', ' Enable uclibc specific patches and build or link uclibc']": "[' Enable uclibc specific patches and build or link uclibc'", "['udev ', ' Enable virtual/udev integration (device discovery, power and storage device support, etc)']": "[' Enable virtual/udev integration (device discovery, power and storage device support, etc)'", "['udisks ', ' Enable storage management support (automounting, volume monitoring, etc)']": "[' Enable storage management support (automounting, volume monitoring, etc)'", "['unicode ', ' Add support for Unicode']": "[' Add support for Unicode'", "['unwind ', ' Add support for call stack unwinding and function name resolution']": "[' Add support for call stack unwinding and function name resolution'", "['upnp ', ' Enable UPnP port mapping support']": "[' Enable UPnP port mapping support'", "['upnp', 'av ', ' Enable UPnP audio/video streaming support']": "['av ', ' Enable UPnP audio/video streaming support'", "['upower ', ' Enable power management support']": "[' Enable power management support'", "['usb ', ' Add USB support to applications that have optional USB support (e.g. cups)']": "[' Add USB support to applications that have optional USB support (e.g. cups)'", "['v4l ', ' Enable support for video4linux (using linux', 'headers or userspace libv4l libraries)']": "[' Enable support for video4linux (using linux', 'headers or userspace libv4l libraries)'", "['vaapi ', ' Enable Video Acceleration API for hardware decoding']": "[' Enable Video Acceleration API for hardware decoding'", "['vala ', ' Enable bindings for dev', 'lang/vala']": "[' Enable bindings for dev', 'lang/vala'", "['vanilla ', ' Do not add extra patches which change default behaviour; DO NOT USE THIS ON A GLOBAL SCALE as the severity of the meaning changes drastically']": "[' Do not add extra patches which change default behaviour; DO NOT USE THIS ON A GLOBAL SCALE as the severity of the meaning changes drastically'", "['vcd ', ' Video CD support']": "[' Video CD support'", "['vdpau ', ' Enable the Video Decode and Presentation API for Unix acceleration interface']": "[' Enable the Video Decode and Presentation API for Unix acceleration interface'", "['verify', 'sig ', ' Verify upstream signatures on distfiles']": "['sig ', ' Verify upstream signatures on distfiles'", "['vhosts ', ' Add support for installing web', 'based applications into a virtual', 'hosting environment']": "[' Add support for installing web', 'based applications into a virtual', 'hosting environment'", "['videos ', ' Install optional video files (used in some games)']": "[' Install optional video files (used in some games)'", "['vim', 'syntax ', ' Pulls in related vim syntax scripts']": "['syntax ', ' Pulls in related vim syntax scripts'", "['vnc ', ' Enable VNC (remote desktop viewer) support']": "[' Enable VNC (remote desktop viewer) support'", "['vorbis ', ' Add support for the OggVorbis audio codec']": "[' Add support for the OggVorbis audio codec'", "['wavpack ', ' Add support for wavpack audio compression tools']": "[' Add support for wavpack audio compression tools'", "['wayland ', ' Enable dev', 'libs/wayland backend']": "[' Enable dev', 'libs/wayland backend'", "['webkit ', ' Add support for the WebKit HTML rendering/layout engine']": "[' Add support for the WebKit HTML rendering/layout engine'", "['webp ', ' Add support for the WebP image format']": "[' Add support for the WebP image format'", "['wifi ', ' Enable wireless network functions']": "[' Enable wireless network functions'", "['wmf ', ' Add support for the Windows Metafile vector image format']": "[' Add support for the Windows Metafile vector image format'", "['wxwidgets ', ' Add support for wxWidgets/wxGTK GUI toolkit']": "[' Add support for wxWidgets/wxGTK GUI toolkit'", "['x264 ', ' Enable h264 encoding using x264']": "[' Enable h264 encoding using x264'", "['xattr ', ' Add support for extended attributes (filesystem', 'stored metadata)']": "[' Add support for extended attributes (filesystem', 'stored metadata)'", "['xcb ', ' Support the X C', 'language Binding, a replacement for Xlib']": "[' Support the X C', 'language Binding, a replacement for Xlib'", "['xcomposite ', ' Enable support for the Xorg composite extension']": "[' Enable support for the Xorg composite extension'", "['xemacs ', ' Add support for XEmacs']": "[' Add support for XEmacs'", "['xface ', \" Add xface support used to allow a small image of xface format to be included in an email via the header 'X\", \"Face'\"]": "[\" Add xface support used to allow a small image of xface format to be included in an email via the header 'X\", \"Face'\"", "['xft ', ' Build with support for XFT font renderer (x11', 'libs/libXft)']": "[' Build with support for XFT font renderer (x11', 'libs/libXft)'", "['xine ', ' Add support for the XINE movie libraries']": "[' Add support for the XINE movie libraries'", "['xinerama ', ' Add support for querying multi', 'monitor screen geometry through the Xinerama API']": "[' Add support for querying multi', 'monitor screen geometry through the Xinerama API'", "['xinetd ', ' Add support for the xinetd super', 'server']": "[' Add support for the xinetd super', 'server'", "['xml ', ' Add support for XML files']": "[' Add support for XML files'", "['xmlrpc ', ' Support for xml', 'rpc library']": "[' Support for xml', 'rpc library'", "['xmp ', ' Enable support for Extensible Metadata Platform (Adobe XMP)']": "[' Enable support for Extensible Metadata Platform (Adobe XMP)'", "['xmpp ', ' Enable support for Extensible Messaging and Presence Protocol (XMPP) formerly known as Jabber']": "[' Enable support for Extensible Messaging and Presence Protocol (XMPP) formerly known as Jabber'", "['xosd ', ' Sends display using the X On Screen Display library']": "[' Sends display using the X On Screen Display library'", "['xpm ', ' Add support for XPM graphics format']": "[' Add support for XPM graphics format'", "['xscreensaver ', ' Add support for XScreenSaver extension']": "[' Add support for XScreenSaver extension'", "['xv ', ' Add in optional support for the Xvideo extension (an X API for video playback)']": "[' Add in optional support for the Xvideo extension (an X API for video playback)'", "['xvid ', \" Add support for xvid.org's open\", 'source mpeg', '4 codec']": "[\" Add support for xvid.org's open\", 'source mpeg', '4 codec'", "['zeroconf ', ' Support for DNS Service Discovery (DNS', 'SD)']": "[' Support for DNS Service Discovery (DNS', 'SD)'", "['zip ', ' Enable support for ZIP archives']": "[' Enable support for ZIP archives'", "['zlib ', ' Add support for zlib (de)compression']": "[' Add support for zlib (de)compression'", "['zsh', 'completion ', ' Enable zsh completion support']": "['completion ', ' Enable zsh completion support'", "['zstd ', ' Enable support for ZSTD compression']": "[' Enable support for ZSTD compression'"}} \ No newline at end of file