├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── custom.md └── workflows │ ├── lint.yml │ └── main.yml ├── LICENSE ├── README ├── community ├── appstream │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-i18n.patch │ ├── sources │ └── version ├── autoconf │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── automake │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libtool │ ├── build │ ├── checksums │ ├── sources │ └── version ├── nettle │ ├── build │ ├── checksums │ ├── sources │ └── version └── pcre2 │ ├── build │ ├── checksums │ ├── sources │ └── version ├── core ├── b3sum │ ├── build │ ├── checksums │ ├── sources │ └── version ├── baseinit │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── baselayout │ ├── build │ ├── checksums │ ├── files │ │ ├── crypttab │ │ ├── fstab │ │ ├── group │ │ ├── host.conf │ │ ├── hosts │ │ ├── issue │ │ ├── mime.types │ │ ├── os-release │ │ ├── passwd │ │ ├── profile │ │ ├── securetty │ │ ├── shadow │ │ └── shells │ ├── sources │ └── version ├── binutils │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── bison │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── busybox │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── .config │ │ ├── .config-suid │ │ ├── acpid.run │ │ ├── crond.run │ │ ├── mdev.conf │ │ ├── mdev.run │ │ ├── ntpd.run │ │ └── syslogd.run │ ├── patches │ │ ├── adduser-no-setgid.patch │ │ ├── fix-UB+clang.patch │ │ ├── fsck-resolve-uuid.patch │ │ ├── install-fix-chown.patch │ │ ├── libressl.patch │ │ ├── lsusb-vendor-product.patch │ │ ├── modprobe-kernel-version.patch │ │ ├── print-unicode.patch │ │ └── unzip-usage-no-error.patch │ ├── sources │ └── version ├── bzip2 │ ├── build │ ├── checksums │ ├── sources │ └── version ├── curl │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── flex │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gcc │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── c99 │ ├── sources │ └── version ├── git │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── grub │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── grub.default │ ├── patches │ │ └── no-asorti.patch │ ├── sources │ └── version ├── kiss │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── linux-headers │ ├── build │ ├── checksums │ ├── sources │ └── version ├── m4 │ ├── build │ ├── checksums │ ├── sources │ └── version ├── make │ ├── build │ ├── checksums │ ├── sources │ └── version ├── musl │ ├── build │ ├── checksums │ ├── files │ │ ├── cdefs.h │ │ ├── getconf.c │ │ ├── getent.c │ │ ├── queue.h │ │ └── tree.h │ ├── patches │ │ └── elfutils-0.190-relr.patch │ ├── sources │ └── version ├── openssl │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── update-certdata.sh │ ├── post-install │ ├── sources │ └── version ├── pigz │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── xz │ ├── build │ ├── checksums │ ├── sources │ └── version └── zlib │ ├── build │ ├── checksums │ ├── sources │ └── version ├── extra ├── R │ ├── build │ ├── checksums │ ├── patches │ │ └── remove_po_dir.patch │ ├── sources │ └── version ├── V │ ├── build │ ├── sources │ └── version ├── adwaita-icon-theme │ ├── build │ ├── checksums │ ├── sources │ └── version ├── alsa-lib │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── fix-dlo.patch │ ├── sources │ └── version ├── alsa-utils │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── atk │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── bash │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── bkeymaps │ ├── build │ ├── checksums │ ├── sources │ └── version ├── brillo │ ├── build │ ├── checksums │ ├── sources │ └── version ├── btrfs-progs │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── bubblewrap │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── cairo │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── ccache │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── cgroupfs-mount │ ├── build │ ├── sources │ └── version ├── clang │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── cmake │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── cmake-no-execinfo.patch │ ├── sources │ └── version ├── containerd │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── run │ ├── sources │ └── version ├── crystal │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── fix-crystal-sh.patch │ ├── sources │ └── version ├── dhcpcd │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── dhcpcd.run │ ├── sources │ └── version ├── dmenu │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── docker │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── run │ ├── post-install │ ├── pre-remove │ ├── sources │ └── version ├── dosfstools │ ├── build │ ├── checksums │ ├── sources │ └── version ├── e2fsprogs │ ├── build │ ├── checksums │ ├── sources │ └── version ├── efibootmgr │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── efivar │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── eiwd │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── eiwd.run │ │ └── iwd_passphrase │ ├── post-install │ ├── sources │ └── version ├── expat │ ├── build │ ├── checksums │ ├── sources │ └── version ├── feh │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── ffmpeg │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── firefox-privacy │ ├── build │ ├── checksums │ ├── files │ │ ├── policies.json │ │ └── vendor.js │ ├── sources │ └── version ├── fontconfig │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── fcobjshash.h │ ├── post-install │ ├── sources │ └── version ├── freetype-harfbuzz │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── fribidi │ ├── build │ ├── checksums │ ├── sources │ └── version ├── gc │ ├── build │ ├── checksums │ ├── sources │ └── version ├── gdk-pixbuf │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── giblib │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── fix-configure_ac-imlib2.patch │ ├── sources │ └── version ├── gitui │ ├── build │ ├── checksums │ ├── sources │ └── version ├── glib │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gnugrep │ ├── build │ ├── checksums │ ├── sources │ └── version ├── gnupg1 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gnupg2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── go │ ├── build │ ├── checksums │ ├── patches │ │ ├── disable-google-proxy-and-sumdb.patch │ │ └── posix-build.patch │ ├── sources │ └── version ├── graphene │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gtk+3 │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── fix-firefox.patch │ │ └── no-fribidi.patch │ ├── post-install │ ├── sources │ └── version ├── gtk+4 │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── hicolor-icon-theme │ ├── build │ ├── checksums │ ├── sources │ └── version ├── imlib2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── intel-vaapi-driver │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── iptables │ ├── build │ ├── checksums │ ├── patches │ │ ├── fix-u_int16_t.patch │ │ ├── fix-xtables.patch │ │ └── use-sh-iptables-apply.patch │ ├── sources │ └── version ├── janet │ ├── build │ ├── checksums │ ├── sources │ └── version ├── json-c │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── kirc │ ├── build │ ├── checksums │ ├── sources │ └── version ├── lame │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libaio │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libarchive │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libass │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-fribidi.patch │ ├── sources │ └── version ├── libcap │ ├── build │ ├── checksums │ ├── patches │ │ └── no-bash.patch │ ├── sources │ └── version ├── libelf │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── musl.patch │ ├── sources │ └── version ├── libepoxy │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── liberation-fonts │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libevdev │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libexif │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libffi │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libinput │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── libjpeg-turbo │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-docs.patch │ ├── sources │ └── version ├── libogg │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libpng │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── libpng-1.6.37-apng.patch │ ├── sources │ └── version ├── libseccomp │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libtheora │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── fix-theoraenc.patch │ │ └── libtheora-1.1.1-libpng16.patch │ ├── sources │ └── version ├── libudev-zero │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libva-utils │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libva │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libvorbis │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libvpx │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libwebp │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── linux-firmware │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── lld │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── llvm │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── lshw │ ├── build │ ├── checksums │ ├── patches │ │ ├── fix-musl-sc_long_bit.patch │ │ └── wrapper-for-basename.patch │ ├── sources │ └── version ├── lua │ ├── build │ ├── checksums │ ├── files │ │ └── lua.pc │ ├── sources │ └── version ├── luajit │ ├── build │ ├── checksums │ ├── sources │ └── version ├── lvm2 │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── fix-stdio-usage.patch │ ├── sources │ └── version ├── man-pages │ ├── build │ ├── checksums │ ├── sources │ └── version ├── mandoc │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── mandoc-no-warn.patch │ ├── sources │ └── version ├── mdevd │ ├── build │ ├── checksums │ ├── files │ │ ├── mdevd.conf │ │ └── mdevd.run │ ├── sources │ └── version ├── mesa │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── meson │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── mono │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── mono-try-catch.patch │ ├── post-install │ ├── sources │ └── version ├── mpv │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── mtdev │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── musl-fts │ ├── build │ ├── checksums │ ├── files │ │ ├── Makefile │ │ ├── config.h │ │ └── musl-fts.pc │ ├── sources │ └── version ├── mutt │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── nasm │ ├── build │ ├── checksums │ ├── sources │ └── version ├── ncurses │ ├── build │ ├── checksums │ ├── files │ │ └── terminfo.src │ ├── sources │ └── version ├── nim │ ├── build │ ├── checksums │ ├── sources │ └── version ├── nodejs-lts │ ├── build │ ├── checksums │ ├── sources │ └── version ├── nodejs │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── ocaml │ ├── build │ ├── checksums │ ├── sources │ └── version ├── opendoas │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── doas.conf │ ├── sources │ └── version ├── openresolv │ ├── build │ ├── checksums │ ├── sources │ └── version ├── openssh │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── sshd.run │ ├── post-install │ ├── sources │ └── version ├── opus │ ├── build │ ├── checksums │ ├── sources │ └── version ├── os-prober │ ├── build │ ├── checksums │ ├── sources │ └── version ├── pango │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-fribidi.patch │ ├── sources │ └── version ├── pcre │ ├── build │ ├── checksums │ ├── sources │ └── version ├── perl │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── pforth │ ├── build │ ├── sources │ └── version ├── pkgconf │ ├── build │ ├── checksums │ ├── sources │ └── version ├── postgresql │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── python3-always-pip.patch │ │ └── python3-pyc-hash.patch │ ├── sources │ └── version ├── racket-minimal │ ├── build │ ├── checksums │ ├── sources │ └── version ├── rdfind │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── ruby │ ├── build │ ├── checksums │ ├── sources │ └── version ├── runc │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── rust │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── fix-curl.patch │ ├── sources │ └── version ├── samurai │ ├── build │ ├── checksums │ ├── sources │ └── version ├── scdoc │ ├── build │ ├── checksums │ ├── sources │ └── version ├── scrot │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── shared-mime-info │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── sqlite │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── ssu │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── strace │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── sudo │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── tlp │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── tlp-no-flock-wait.patch │ ├── sources │ └── version ├── ttf-croscore │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── tzdata │ ├── build │ ├── checksums │ ├── sources │ └── version ├── unrar │ ├── build │ ├── checksums │ ├── sources │ └── version ├── util-linux │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── vala │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── vim │ ├── build │ ├── depends │ ├── sources │ └── version ├── wpa_supplicant │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── .config │ │ └── wpa_supplicant.run │ ├── sources │ └── version ├── x264 │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── portability.patch │ ├── sources │ └── version ├── x265 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xvidcore │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── zsh │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── zprofile │ ├── sources │ └── version └── zstd │ ├── build │ ├── checksums │ ├── sources │ └── version ├── testing └── README.md ├── wayland ├── foot-pgo │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── fix-pgo.patch │ ├── sources │ └── version ├── foot │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── fix-pgo.patch │ ├── sources │ └── version ├── grim │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libdrm │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libpciaccess │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libseat │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── seatd.run │ ├── sources │ └── version ├── libxkbcommon │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── pixman │ ├── build │ ├── checksums │ ├── sources │ └── version ├── slurp │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── sway-no-seat │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── no-evdev.patch │ │ └── sway-static.patch │ ├── post-install │ ├── sources │ └── version ├── sway-tiny │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-evdev.patch │ ├── post-install │ ├── sources │ └── version ├── sway │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── llvm-13.patch │ │ └── no-evdev.patch │ ├── post-install │ ├── sources │ └── version ├── wayland-protocols │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── wayland │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── wbg │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── wl-clipboard │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── wlroots │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version └── wlsunset │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version └── xorg ├── libICE ├── build ├── checksums ├── depends ├── sources └── version ├── libSM ├── build ├── checksums ├── depends ├── sources └── version ├── libX11 ├── build ├── checksums ├── depends ├── sources └── version ├── libXScrnSaver ├── build ├── checksums ├── depends ├── sources └── version ├── libXau ├── build ├── checksums ├── depends ├── sources └── version ├── libXcomposite ├── build ├── checksums ├── depends ├── sources └── version ├── libXcursor ├── build ├── checksums ├── depends ├── sources └── version ├── libXdamage ├── build ├── checksums ├── depends ├── sources └── version ├── libXdmcp ├── build ├── checksums ├── depends ├── sources └── version ├── libXext ├── build ├── checksums ├── depends ├── sources └── version ├── libXfixes ├── build ├── checksums ├── depends ├── sources └── version ├── libXfont ├── build ├── checksums ├── depends ├── sources └── version ├── libXfont2 ├── build ├── checksums ├── depends ├── sources └── version ├── libXft ├── build ├── checksums ├── depends ├── sources └── version ├── libXi ├── build ├── checksums ├── depends ├── sources └── version ├── libXinerama ├── build ├── checksums ├── depends ├── sources └── version ├── libXmu ├── build ├── checksums ├── depends ├── sources └── version ├── libXpresent ├── build ├── checksums ├── depends ├── sources └── version ├── libXrandr ├── build ├── checksums ├── depends ├── sources └── version ├── libXrender ├── build ├── checksums ├── depends ├── sources └── version ├── libXt ├── build ├── checksums ├── depends ├── sources └── version ├── libXtst ├── build ├── checksums ├── depends ├── sources └── version ├── libXxf86vm ├── build ├── checksums ├── depends ├── sources └── version ├── libfontenc ├── build ├── checksums ├── depends ├── sources └── version ├── libxcb ├── build ├── checksums ├── depends ├── sources └── version ├── libxcvt ├── build ├── checksums ├── depends ├── sources └── version ├── libxkbfile ├── build ├── checksums ├── depends ├── sources └── version ├── libxshmfence ├── build ├── checksums ├── depends ├── sources └── version ├── setxkbmap ├── build ├── checksums ├── depends ├── sources └── version ├── sowm ├── build ├── checksums ├── depends ├── sources └── version ├── st ├── build ├── checksums ├── depends ├── sources └── version ├── sx ├── build ├── checksums ├── depends ├── manifest ├── sources └── version ├── tinyx ├── build ├── checksums ├── depends ├── sources └── version ├── xauth ├── build ├── checksums ├── depends ├── sources └── version ├── xbitmaps ├── build ├── checksums ├── depends ├── sources └── version ├── xcb-proto ├── build ├── checksums ├── depends ├── sources └── version ├── xcb-util-cursor ├── build ├── checksums ├── depends ├── sources └── version ├── xcb-util-image ├── build ├── checksums ├── depends ├── sources └── version ├── xcb-util-keysyms ├── build ├── checksums ├── depends ├── sources └── version ├── xcb-util-renderutil ├── build ├── checksums ├── depends ├── sources └── version ├── xcb-util-wm ├── build ├── checksums ├── depends ├── sources └── version ├── xcb-util ├── build ├── checksums ├── depends ├── sources └── version ├── xdpyinfo ├── build ├── checksums ├── depends ├── sources └── version ├── xev ├── build ├── checksums ├── depends ├── sources └── version ├── xf86-input-libinput ├── build ├── checksums ├── depends ├── sources └── version ├── xf86-video-amdgpu ├── build ├── checksums ├── depends ├── patches │ └── rootless_modesetting.patch ├── sources └── version ├── xf86-video-ati ├── build ├── checksums ├── depends ├── sources └── version ├── xf86-video-intel ├── build ├── checksums ├── depends ├── sources └── version ├── xf86-video-nouveau ├── build ├── checksums ├── depends ├── patches │ ├── fix-xorg-21.1.diff │ └── rootless_modesetting.patch ├── sources └── version ├── xf86-video-vesa ├── build ├── checksums ├── depends ├── sources └── version ├── xinit ├── build ├── checksums ├── depends ├── sources └── version ├── xinput ├── build ├── checksums ├── depends ├── sources └── version ├── xkbcomp ├── build ├── checksums ├── depends ├── sources └── version ├── xkeyboard-config ├── build ├── checksums ├── depends ├── files │ └── xml2lst ├── sources └── version ├── xorg-server ├── build ├── checksums ├── depends ├── patches │ ├── fix-crash.patch │ └── rootless_modesetting.patch ├── post-install ├── sources └── version ├── xorg-util-macros ├── build ├── checksums ├── sources └── version ├── xorgproto ├── build ├── checksums ├── sources └── version ├── xprop ├── build ├── checksums ├── depends ├── sources └── version ├── xrandr ├── build ├── checksums ├── depends ├── sources └── version ├── xrdb ├── build ├── checksums ├── depends ├── sources └── version ├── xrectsel ├── build ├── checksums ├── depends ├── sources └── version ├── xset ├── build ├── checksums ├── depends ├── sources └── version ├── xsetroot ├── build ├── checksums ├── depends ├── sources └── version └── xtrans ├── build ├── checksums ├── depends ├── sources └── version /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /community/appstream/checksums: -------------------------------------------------------------------------------- 1 | 90e1874ca50ed04049c16ef2e147649578bfd68eb5f04ce3c5b984709ecc138421 2 | c77e37c6110de0d6956fa7c99b0ec9ad5e0c36cdfb72c4e4e7fe0e4c13cc1e8dca 3 | -------------------------------------------------------------------------------- /community/appstream/depends: -------------------------------------------------------------------------------- 1 | curl 2 | glib 3 | gperf make 4 | libxml2 5 | libxmlb 6 | libyaml 7 | meson make 8 | -------------------------------------------------------------------------------- /community/appstream/sources: -------------------------------------------------------------------------------- 1 | https://www.freedesktop.org/software/appstream/releases/AppStream-1.0.2.tar.xz 2 | patches/no-i18n.patch 3 | -------------------------------------------------------------------------------- /community/appstream/version: -------------------------------------------------------------------------------- 1 | 1.0.2 1 2 | -------------------------------------------------------------------------------- /community/autoconf/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /community/autoconf/checksums: -------------------------------------------------------------------------------- 1 | 89aad7032c61efa3ea6cada364e20560c58441a92a7267db15e0fddff55638c735 2 | -------------------------------------------------------------------------------- /community/autoconf/depends: -------------------------------------------------------------------------------- 1 | perl 2 | -------------------------------------------------------------------------------- /community/autoconf/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/pub/gnu/autoconf/autoconf-2.72.tar.gz 2 | -------------------------------------------------------------------------------- /community/autoconf/version: -------------------------------------------------------------------------------- 1 | 2.72 1 2 | -------------------------------------------------------------------------------- /community/automake/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /community/automake/checksums: -------------------------------------------------------------------------------- 1 | 4e1272337e36d468673e3a83cab261dc2e2abbddc7b8733e4ac88bc7525c491afa 2 | -------------------------------------------------------------------------------- /community/automake/depends: -------------------------------------------------------------------------------- 1 | autoconf 2 | perl 3 | -------------------------------------------------------------------------------- /community/automake/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz 2 | -------------------------------------------------------------------------------- /community/automake/version: -------------------------------------------------------------------------------- 1 | 1.16.5 1 2 | -------------------------------------------------------------------------------- /community/libtool/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /community/libtool/checksums: -------------------------------------------------------------------------------- 1 | 2ea6756908621775a2466f58d79095fb42e6fb6aa599c3a334f3c688781e00e331 2 | -------------------------------------------------------------------------------- /community/libtool/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/libtool/libtool-2.4.7.tar.xz 2 | -------------------------------------------------------------------------------- /community/libtool/version: -------------------------------------------------------------------------------- 1 | 2.4.7 1 2 | -------------------------------------------------------------------------------- /community/nettle/checksums: -------------------------------------------------------------------------------- 1 | e4bfbda32f4fdf5ed96c152efe3a3867193b690faa5378d02a2a6fd052ee3393e0 2 | -------------------------------------------------------------------------------- /community/nettle/sources: -------------------------------------------------------------------------------- 1 | http://ftp.gnu.org/gnu/nettle/nettle-3.9.1.tar.gz 2 | -------------------------------------------------------------------------------- /community/nettle/version: -------------------------------------------------------------------------------- 1 | 3.9.1 1 2 | -------------------------------------------------------------------------------- /community/pcre2/checksums: -------------------------------------------------------------------------------- 1 | 1e4a9560c8ea165725e920962467e14b3a627a08c29267bb79470f521527e14a59 2 | -------------------------------------------------------------------------------- /community/pcre2/sources: -------------------------------------------------------------------------------- 1 | https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.42/pcre2-10.42.tar.bz2 2 | -------------------------------------------------------------------------------- /community/pcre2/version: -------------------------------------------------------------------------------- 1 | 10.42 1 2 | -------------------------------------------------------------------------------- /core/b3sum/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make LDFLAGS="$LDFLAGS -static" 4 | make PREFIX=/usr DESTDIR="$1" install 5 | -------------------------------------------------------------------------------- /core/b3sum/checksums: -------------------------------------------------------------------------------- 1 | 3a78d3bbb0e553359035da0c5ce9a2eaadcc658d412dc12f9075caa1bbd74c5e2a 2 | -------------------------------------------------------------------------------- /core/b3sum/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~mcf/b3sum/archive/cb4111ccc8061039b014fbb657c72f78984f1069.tar.gz 2 | -------------------------------------------------------------------------------- /core/b3sum/version: -------------------------------------------------------------------------------- 1 | 1.3.1 1 2 | -------------------------------------------------------------------------------- /core/baseinit/checksums: -------------------------------------------------------------------------------- 1 | 51e4ce27b4ece24f1363f93b1b52113176ec44a42455176b9f7d6ab2a6795cb6f3 2 | -------------------------------------------------------------------------------- /core/baseinit/sources: -------------------------------------------------------------------------------- 1 | https://github.com/noirlinux/init/archive/1.0.0.tar.gz 2 | -------------------------------------------------------------------------------- /core/baseinit/version: -------------------------------------------------------------------------------- 1 | 1.0.0 1 2 | -------------------------------------------------------------------------------- /core/baselayout/files/fstab: -------------------------------------------------------------------------------- 1 | # Static information about the filesystems. 2 | # See fstab(5) for details. 3 | 4 | # 5 | 6 | tmpfs /tmp tmpfs defaults,nosuid,nodev 0 0 7 | -------------------------------------------------------------------------------- /core/baselayout/files/host.conf: -------------------------------------------------------------------------------- 1 | # /etc/host.conf 2 | # See host.conf(5) for details. 3 | 4 | multi on 5 | -------------------------------------------------------------------------------- /core/baselayout/files/issue: -------------------------------------------------------------------------------- 1 | NOIR Linux \r (\l) 2 | -------------------------------------------------------------------------------- /core/baselayout/files/os-release: -------------------------------------------------------------------------------- 1 | NAME="NOIR Linux" 2 | PRETTY_NAME="NOIR Linux" 3 | ID=noir 4 | BUILD_ID=rolling 5 | SUPPORT_URL="https://github.com/noirlinux/main" 6 | BUG_REPORT_URL="https://github.com/noirlinux/main" 7 | -------------------------------------------------------------------------------- /core/baselayout/files/passwd: -------------------------------------------------------------------------------- 1 | root:x:0:0:root:/root:/bin/sh 2 | nobody:x:99:99:Unprivileged User:/dev/null:/bin/false 3 | -------------------------------------------------------------------------------- /core/baselayout/files/shadow: -------------------------------------------------------------------------------- 1 | root:!:14871:::::: 2 | -------------------------------------------------------------------------------- /core/baselayout/files/shells: -------------------------------------------------------------------------------- 1 | # Pathnames of valid login shells. 2 | # See shells(5) for details. 3 | 4 | /bin/sh 5 | -------------------------------------------------------------------------------- /core/baselayout/version: -------------------------------------------------------------------------------- 1 | 2 1 2 | -------------------------------------------------------------------------------- /core/binutils/checksums: -------------------------------------------------------------------------------- 1 | 41ff0592df8c1e8ec5eb086d418e792331c0c49040218462d6c1224b4fa36d041c 2 | -------------------------------------------------------------------------------- /core/binutils/depends: -------------------------------------------------------------------------------- 1 | flex 2 | zlib 3 | -------------------------------------------------------------------------------- /core/binutils/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/binutils/binutils-2.42.tar.xz 2 | -------------------------------------------------------------------------------- /core/binutils/version: -------------------------------------------------------------------------------- 1 | 2.42 1 2 | -------------------------------------------------------------------------------- /core/bison/checksums: -------------------------------------------------------------------------------- 1 | 9dd90be8df4d0474b941e2ca14ac76d11b7ccb46edb26344b60d866178bbcc9872 2 | -------------------------------------------------------------------------------- /core/bison/depends: -------------------------------------------------------------------------------- 1 | m4 2 | -------------------------------------------------------------------------------- /core/bison/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/bison/bison-3.8.2.tar.xz 2 | -------------------------------------------------------------------------------- /core/bison/version: -------------------------------------------------------------------------------- 1 | 3.8.2 1 2 | -------------------------------------------------------------------------------- /core/busybox/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /core/busybox/files/acpid.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec acpid -f 3 | -------------------------------------------------------------------------------- /core/busybox/files/crond.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec crond -f 3 | -------------------------------------------------------------------------------- /core/busybox/files/mdev.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Null the legacy hotplugger as the 4 | # service will take over from here. 5 | printf '\n' 2>/dev/null \ 6 | > /proc/sys/kernel/hotplug 7 | 8 | exec mdev -df 9 | -------------------------------------------------------------------------------- /core/busybox/files/ntpd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec ntpd -n 4 | -------------------------------------------------------------------------------- /core/busybox/files/syslogd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec syslogd -n 3 | -------------------------------------------------------------------------------- /core/busybox/version: -------------------------------------------------------------------------------- 1 | 1.36.1 1 2 | -------------------------------------------------------------------------------- /core/bzip2/checksums: -------------------------------------------------------------------------------- 1 | 97af3f520629c65fe41292f77e6ca798fe594d7987bfb2aebe7c6fcdc7ab5ed25e 2 | -------------------------------------------------------------------------------- /core/bzip2/sources: -------------------------------------------------------------------------------- 1 | https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz 2 | -------------------------------------------------------------------------------- /core/bzip2/version: -------------------------------------------------------------------------------- 1 | 1.0.8 1 2 | -------------------------------------------------------------------------------- /core/curl/checksums: -------------------------------------------------------------------------------- 1 | 09c6e7c7ab6caf8d3efedfc312ff159cf372fe7978778aa266ddd8743e8038561e 2 | -------------------------------------------------------------------------------- /core/curl/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | zlib 3 | -------------------------------------------------------------------------------- /core/curl/sources: -------------------------------------------------------------------------------- 1 | https://curl.haxx.se/download/curl-8.6.0.tar.xz 2 | -------------------------------------------------------------------------------- /core/curl/version: -------------------------------------------------------------------------------- 1 | 8.6.0 1 2 | -------------------------------------------------------------------------------- /core/flex/checksums: -------------------------------------------------------------------------------- 1 | d78b714ac38bd9de7f9b44a078efed82e96ed43e7cf9cd33944a7f379a2d09a4d0 2 | -------------------------------------------------------------------------------- /core/flex/depends: -------------------------------------------------------------------------------- 1 | m4 make 2 | -------------------------------------------------------------------------------- /core/flex/sources: -------------------------------------------------------------------------------- 1 | https://github.com/westes/flex/releases/download/v2.6.4/flex-2.6.4.tar.gz 2 | -------------------------------------------------------------------------------- /core/flex/version: -------------------------------------------------------------------------------- 1 | 2.6.4 5 2 | -------------------------------------------------------------------------------- /core/gcc/depends: -------------------------------------------------------------------------------- 1 | binutils 2 | bison make 3 | flex make 4 | zlib 5 | -------------------------------------------------------------------------------- /core/gcc/files/c99: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec cc -std=c99 "$@" 3 | -------------------------------------------------------------------------------- /core/gcc/version: -------------------------------------------------------------------------------- 1 | 13.2.0 1 2 | -------------------------------------------------------------------------------- /core/git/checksums: -------------------------------------------------------------------------------- 1 | c1cfe37773867b1c88b1bc52f67c1b6c01f52f255e0f07b46ed6ebbdc20429b130 2 | e123e8fab1b99c627c2b6b5f629269772dfeaac3e684a90d16e797e05572cd8cb7 3 | -------------------------------------------------------------------------------- /core/git/depends: -------------------------------------------------------------------------------- 1 | curl make 2 | openssl make 3 | zlib make 4 | -------------------------------------------------------------------------------- /core/git/sources: -------------------------------------------------------------------------------- 1 | https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.44.0.tar.xz 2 | https://mirrors.edge.kernel.org/pub/software/scm/git/git-manpages-2.44.0.tar.xz man 3 | -------------------------------------------------------------------------------- /core/git/version: -------------------------------------------------------------------------------- 1 | 2.44.0 1 2 | -------------------------------------------------------------------------------- /core/grub/depends: -------------------------------------------------------------------------------- 1 | binutils make 2 | bison make 3 | flex make 4 | linux-headers make 5 | m4 make 6 | xz 7 | -------------------------------------------------------------------------------- /core/grub/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/grub/grub-2.12.tar.xz grub-pc 2 | https://ftp.gnu.org/gnu/grub/grub-2.12.tar.xz grub-efi 3 | files/grub.default 4 | patches/no-asorti.patch 5 | -------------------------------------------------------------------------------- /core/grub/version: -------------------------------------------------------------------------------- 1 | 2.12 2 2 | -------------------------------------------------------------------------------- /core/kiss/checksums: -------------------------------------------------------------------------------- 1 | 766bbc0008632839cf475cd3714f1d73d871b26f358e16409ac5e9a63c37a52297 2 | d2216d1d703f39deaa8133f6fe6dd1370e4d6a273925a635e530dab4fe71203ff2 3 | -------------------------------------------------------------------------------- /core/kiss/depends: -------------------------------------------------------------------------------- 1 | git 2 | -------------------------------------------------------------------------------- /core/kiss/sources: -------------------------------------------------------------------------------- 1 | https://codeberg.org/kiss-community/kiss/archive/5.6.4.tar.gz 2 | https://github.com/kisslinux/website/archive/f0525d4e00c5e07138ac2ceb53936d0b221608e7.tar.gz docs 3 | -------------------------------------------------------------------------------- /core/kiss/version: -------------------------------------------------------------------------------- 1 | 5.6.4 1 2 | -------------------------------------------------------------------------------- /core/linux-headers/checksums: -------------------------------------------------------------------------------- 1 | 6aabe63cc0d95723460709be8de7c8a1e31233cc490aa9f883cc173fcfb53e96c8 2 | -------------------------------------------------------------------------------- /core/linux-headers/sources: -------------------------------------------------------------------------------- 1 | https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.7.7.tar.xz 2 | -------------------------------------------------------------------------------- /core/linux-headers/version: -------------------------------------------------------------------------------- 1 | 6.7.7 1 2 | -------------------------------------------------------------------------------- /core/m4/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -static" 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make install 10 | -------------------------------------------------------------------------------- /core/m4/checksums: -------------------------------------------------------------------------------- 1 | eadd696d929b0359bf7bd17390c2bcc3ad1cbf36126854eb545a50b86ca97e9eba 2 | -------------------------------------------------------------------------------- /core/m4/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.xz 2 | -------------------------------------------------------------------------------- /core/m4/version: -------------------------------------------------------------------------------- 1 | 1.4.19 1 2 | -------------------------------------------------------------------------------- /core/make/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -static" 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make install 10 | -------------------------------------------------------------------------------- /core/make/checksums: -------------------------------------------------------------------------------- 1 | a7d8aee97b7e9a525ef561afa84eea0d929f246e3aafa420231c0602151cf9eb03 2 | -------------------------------------------------------------------------------- /core/make/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz 2 | -------------------------------------------------------------------------------- /core/make/version: -------------------------------------------------------------------------------- 1 | 4.4.1 1 2 | -------------------------------------------------------------------------------- /core/musl/sources: -------------------------------------------------------------------------------- 1 | https://musl.libc.org/releases/musl-1.2.5.tar.gz 2 | files/cdefs.h 3 | files/queue.h 4 | files/tree.h 5 | files/getconf.c 6 | files/getent.c 7 | patches/elfutils-0.190-relr.patch 8 | -------------------------------------------------------------------------------- /core/musl/version: -------------------------------------------------------------------------------- 1 | 1.2.5 1 2 | -------------------------------------------------------------------------------- /core/openssl/depends: -------------------------------------------------------------------------------- 1 | perl make 2 | -------------------------------------------------------------------------------- /core/openssl/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/ssl/update-certdata.sh 4 | -------------------------------------------------------------------------------- /core/openssl/sources: -------------------------------------------------------------------------------- 1 | https://github.com/openssl/openssl/archive/refs/tags/openssl-3.2.1.tar.gz 2 | https://causal.agency/libretls/libretls-3.7.0.tar.gz libretls 3 | files/update-certdata.sh 4 | -------------------------------------------------------------------------------- /core/openssl/version: -------------------------------------------------------------------------------- 1 | 3.2.1 1 2 | -------------------------------------------------------------------------------- /core/pigz/checksums: -------------------------------------------------------------------------------- 1 | fa165f414a12851806d9d54920879dd989917b9aa410aec671c602b18773b23638 2 | -------------------------------------------------------------------------------- /core/pigz/depends: -------------------------------------------------------------------------------- 1 | zlib make 2 | -------------------------------------------------------------------------------- /core/pigz/sources: -------------------------------------------------------------------------------- 1 | https://zlib.net/pigz/pigz-2.8.tar.gz 2 | -------------------------------------------------------------------------------- /core/pigz/version: -------------------------------------------------------------------------------- 1 | 2.8 1 2 | -------------------------------------------------------------------------------- /core/xz/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-doc \ 6 | --disable-nls 7 | 8 | make 9 | make install 10 | -------------------------------------------------------------------------------- /core/xz/checksums: -------------------------------------------------------------------------------- 1 | 750a05793aeba3cd68d1d5425db3a527c73a89ab8c3a29401236d531548099af08 2 | -------------------------------------------------------------------------------- /core/xz/sources: -------------------------------------------------------------------------------- 1 | https://nchc.dl.sourceforge.net/project/lzmautils/xz-5.4.6.tar.bz2 2 | -------------------------------------------------------------------------------- /core/xz/version: -------------------------------------------------------------------------------- 1 | 5.4.6 1 2 | -------------------------------------------------------------------------------- /core/zlib/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -fPIC" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --libdir=/usr/lib \ 8 | --shared 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /core/zlib/checksums: -------------------------------------------------------------------------------- 1 | 207c3b0862cb4e3686f8405f76a98c38dbad9c94bcf4be4b9efca0716aba51ecbb 2 | -------------------------------------------------------------------------------- /core/zlib/sources: -------------------------------------------------------------------------------- 1 | https://zlib.net/zlib-1.3.1.tar.gz 2 | -------------------------------------------------------------------------------- /core/zlib/version: -------------------------------------------------------------------------------- 1 | 1.3.1 1 2 | -------------------------------------------------------------------------------- /extra/R/checksums: -------------------------------------------------------------------------------- 1 | 36950afa416000f15d80a3feb746815571f1512c48cbabfb69913212a7dab31d24 2 | fc1a5e31743815a774a2150757ec9348f4423e6f071ccd45c09721ca1d28039ea5 3 | -------------------------------------------------------------------------------- /extra/R/sources: -------------------------------------------------------------------------------- 1 | https://cran.r-project.org/src/base/R-4/R-4.3.3.tar.gz 2 | patches/remove_po_dir.patch 3 | -------------------------------------------------------------------------------- /extra/R/version: -------------------------------------------------------------------------------- 1 | 4.3.3 1 2 | -------------------------------------------------------------------------------- /extra/V/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/vlang/v.git 2 | -------------------------------------------------------------------------------- /extra/V/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /extra/adwaita-icon-theme/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make install 8 | -------------------------------------------------------------------------------- /extra/adwaita-icon-theme/checksums: -------------------------------------------------------------------------------- 1 | cefbed8a5e5008b3967533a1ba9c90b8216689b8a2a6808b3dc044723fd25b5571 2 | -------------------------------------------------------------------------------- /extra/adwaita-icon-theme/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/adwaita-icon-theme/45/adwaita-icon-theme-45.0.tar.xz 2 | -------------------------------------------------------------------------------- /extra/adwaita-icon-theme/version: -------------------------------------------------------------------------------- 1 | 45.0 1 2 | -------------------------------------------------------------------------------- /extra/alsa-lib/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --without-debug \ 5 | --prefix=/usr 6 | 7 | make 8 | make install 9 | -------------------------------------------------------------------------------- /extra/alsa-lib/checksums: -------------------------------------------------------------------------------- 1 | 1cc87493edeaeab743b549c4641e3d9a03f06f92a9b63d5a389153da1ae9fe5c56 2 | 26b9ce0b88b67eb48fae18ed914f567a2a38ca1df4466efe4c548cfd37ed9276c9 3 | -------------------------------------------------------------------------------- /extra/alsa-lib/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/alsa-lib/sources: -------------------------------------------------------------------------------- 1 | https://www.alsa-project.org/files/pub/lib/alsa-lib-1.2.11.tar.bz2 2 | patches/fix-dlo.patch 3 | -------------------------------------------------------------------------------- /extra/alsa-lib/version: -------------------------------------------------------------------------------- 1 | 1.2.11 1 2 | -------------------------------------------------------------------------------- /extra/alsa-utils/checksums: -------------------------------------------------------------------------------- 1 | a4567d2cec5e27ec09751dd867251ccef05adbf3047f35ee94e1fb06445b0430c0 2 | -------------------------------------------------------------------------------- /extra/alsa-utils/depends: -------------------------------------------------------------------------------- 1 | alsa-lib 2 | ncurses 3 | -------------------------------------------------------------------------------- /extra/alsa-utils/sources: -------------------------------------------------------------------------------- 1 | https://www.alsa-project.org/files/pub/utils/alsa-utils-1.2.11.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/alsa-utils/version: -------------------------------------------------------------------------------- 1 | 1.2.11 1 2 | -------------------------------------------------------------------------------- /extra/atk/checksums: -------------------------------------------------------------------------------- 1 | cbc1b7ba03009ee5cc0e646d8a86117e0d65bf8d105f2e8714fbde0299a8012eff 2 | -------------------------------------------------------------------------------- /extra/atk/depends: -------------------------------------------------------------------------------- 1 | glib 2 | libffi 3 | meson make 4 | pkgconf make 5 | -------------------------------------------------------------------------------- /extra/atk/sources: -------------------------------------------------------------------------------- 1 | https://download-fallback.gnome.org/sources/atk/2.38/atk-2.38.0.tar.xz 2 | -------------------------------------------------------------------------------- /extra/atk/version: -------------------------------------------------------------------------------- 1 | 2.38.0 1 2 | -------------------------------------------------------------------------------- /extra/bash/checksums: -------------------------------------------------------------------------------- 1 | c1548e3f2a9b6de5296e18c28b3d2007985e647273e03f039efd3e489edaa41f84 2 | -------------------------------------------------------------------------------- /extra/bash/depends: -------------------------------------------------------------------------------- 1 | bison make 2 | ncurses 3 | -------------------------------------------------------------------------------- /extra/bash/sources: -------------------------------------------------------------------------------- 1 | http://mirror.us-midwest-1.nexcess.net/gnu/bash/bash-5.2.15.tar.gz 2 | -------------------------------------------------------------------------------- /extra/bash/version: -------------------------------------------------------------------------------- 1 | 5.2.p26 1 2 | -------------------------------------------------------------------------------- /extra/bkeymaps/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make install 4 | 5 | cp -fr colemak "$1/usr/share/bkeymaps" 6 | 7 | -------------------------------------------------------------------------------- /extra/bkeymaps/checksums: -------------------------------------------------------------------------------- 1 | 16879fde7b24c91959c7749169bbaaedbc8dcd8b9cbcf2d9ca52a7cb4262c85a2a 2 | d235c265090b3a0acf2f1fd4672cf242873b0bccb3592578db0e61b36fbb72ebf8 3 | -------------------------------------------------------------------------------- /extra/bkeymaps/sources: -------------------------------------------------------------------------------- 1 | https://dev.alpinelinux.org/bkeymaps/bkeymaps-1.13.tar.gz 2 | https://dev.alpinelinux.org/bkeymaps/bkeymap-colemak-1.13.tar.gz colemak 3 | -------------------------------------------------------------------------------- /extra/bkeymaps/version: -------------------------------------------------------------------------------- 1 | 1.13 1 2 | -------------------------------------------------------------------------------- /extra/brillo/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make 4 | make DESTDIR="$1" install.bin install.udev 5 | -------------------------------------------------------------------------------- /extra/brillo/checksums: -------------------------------------------------------------------------------- 1 | 121a8a02376d74d6c97fb4104bb2e2831f4c49789449d6470118dc1b595b6f307c 2 | -------------------------------------------------------------------------------- /extra/brillo/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.com/cameronnemo/brillo/-/archive/v1.4.12/brillo-v1.4.12.tar.gz 2 | -------------------------------------------------------------------------------- /extra/brillo/version: -------------------------------------------------------------------------------- 1 | 1.4.12 1 2 | -------------------------------------------------------------------------------- /extra/btrfs-progs/checksums: -------------------------------------------------------------------------------- 1 | 97bedd04ada4defeae4afd589874bac305796a6b1ce63130ed0a67991dcc76c4aa 2 | -------------------------------------------------------------------------------- /extra/btrfs-progs/depends: -------------------------------------------------------------------------------- 1 | e2fsprogs 2 | linux-headers make 3 | lzo 4 | pkgconf make 5 | python make 6 | util-linux 7 | zlib 8 | zstd 9 | -------------------------------------------------------------------------------- /extra/btrfs-progs/sources: -------------------------------------------------------------------------------- 1 | https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.7.1.tar.xz 2 | -------------------------------------------------------------------------------- /extra/btrfs-progs/version: -------------------------------------------------------------------------------- 1 | 6.7.1 1 2 | -------------------------------------------------------------------------------- /extra/bubblewrap/checksums: -------------------------------------------------------------------------------- 1 | 6cdacdd35a04acacb9da47137b89b17eb19e2885842a1969941665586429579dcf 2 | -------------------------------------------------------------------------------- /extra/bubblewrap/depends: -------------------------------------------------------------------------------- 1 | libcap 2 | -------------------------------------------------------------------------------- /extra/bubblewrap/sources: -------------------------------------------------------------------------------- 1 | https://github.com/containers/bubblewrap/releases/download/v0.8.0/bubblewrap-0.8.0.tar.xz 2 | -------------------------------------------------------------------------------- /extra/bubblewrap/version: -------------------------------------------------------------------------------- 1 | 0.8.0 1 2 | -------------------------------------------------------------------------------- /extra/cairo/checksums: -------------------------------------------------------------------------------- 1 | 55b4b6406668e08dd6b816beba82c86df8e9a5468352c66597badb4f6583930e6a 2 | -------------------------------------------------------------------------------- /extra/cairo/depends: -------------------------------------------------------------------------------- 1 | fontconfig 2 | glib 3 | libpng 4 | libXext 5 | libXrender 6 | mesa 7 | pixman 8 | -------------------------------------------------------------------------------- /extra/cairo/sources: -------------------------------------------------------------------------------- 1 | https://cairographics.org/releases/cairo-1.18.0.tar.xz 2 | -------------------------------------------------------------------------------- /extra/cairo/version: -------------------------------------------------------------------------------- 1 | 1.18.0 1 2 | -------------------------------------------------------------------------------- /extra/ccache/checksums: -------------------------------------------------------------------------------- 1 | 1c28d482f5412b70f12ef2b5fc0e0a639a1a7f91ea9ce4a671678d31721c9d73dd 2 | -------------------------------------------------------------------------------- /extra/ccache/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | zstd make 3 | -------------------------------------------------------------------------------- /extra/ccache/sources: -------------------------------------------------------------------------------- 1 | https://github.com/ccache/ccache/releases/download/v4.9.1/ccache-4.9.1.tar.xz 2 | -------------------------------------------------------------------------------- /extra/ccache/version: -------------------------------------------------------------------------------- 1 | 4.9.1 1 2 | -------------------------------------------------------------------------------- /extra/cgroupfs-mount/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | install -Dm755 cgroupfs-mount "$1/usr/bin/cgroup-mount" 4 | install -Dm755 cgroupfs-umount "$1/usr/bin/cgroup-umount" 5 | -------------------------------------------------------------------------------- /extra/cgroupfs-mount/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/tianon/cgroupfs-mount.git 2 | -------------------------------------------------------------------------------- /extra/cgroupfs-mount/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /extra/clang/checksums: -------------------------------------------------------------------------------- 1 | 8332e29b59b68f2633a88cf7ac88d5a2798534b7476979e9365bc48ce117218387 2 | -------------------------------------------------------------------------------- /extra/clang/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | llvm 3 | python make 4 | xz 5 | zlib 6 | -------------------------------------------------------------------------------- /extra/clang/sources: -------------------------------------------------------------------------------- 1 | https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.6/clang-17.0.6.src.tar.xz 2 | -------------------------------------------------------------------------------- /extra/clang/version: -------------------------------------------------------------------------------- 1 | 17.0.6 1 2 | -------------------------------------------------------------------------------- /extra/cmake/checksums: -------------------------------------------------------------------------------- 1 | 46c322eb41b7ec31ad1c1d523d145dbb4551de812272c2c3a2d2353e8f3dc4ce29 2 | ec7fa415c0084d1f9dba137d4382065df5358b29b672958233b1aeded40ba65db2 3 | -------------------------------------------------------------------------------- /extra/cmake/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | curl 3 | expat 4 | linux-headers make 5 | openssl 6 | zlib 7 | -------------------------------------------------------------------------------- /extra/cmake/sources: -------------------------------------------------------------------------------- 1 | https://github.com/Kitware/CMake/archive/refs/tags/v3.28.3.tar.gz 2 | patches/cmake-no-execinfo.patch 3 | -------------------------------------------------------------------------------- /extra/cmake/version: -------------------------------------------------------------------------------- 1 | 3.28.3 1 2 | -------------------------------------------------------------------------------- /extra/containerd/checksums: -------------------------------------------------------------------------------- 1 | 52db994ed075bef6b061437b4d5841ea723ebcedffe2ae53bd2505af449c20cb5b 2 | c7ebb697f883277d3250a9dc3dd54b01a1b9a0e99a7415958efa6ca03890f787a4 3 | -------------------------------------------------------------------------------- /extra/containerd/depends: -------------------------------------------------------------------------------- 1 | btrfs-progs 2 | go make 3 | libseccomp 4 | runc 5 | -------------------------------------------------------------------------------- /extra/containerd/files/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | exec containerd 3 | -------------------------------------------------------------------------------- /extra/containerd/sources: -------------------------------------------------------------------------------- 1 | https://github.com/containerd/containerd/archive/v1.7.13.tar.gz 2 | files/run 3 | -------------------------------------------------------------------------------- /extra/containerd/version: -------------------------------------------------------------------------------- 1 | 1.7.13 1 2 | -------------------------------------------------------------------------------- /extra/crystal/depends: -------------------------------------------------------------------------------- 1 | gc make 2 | libevent 3 | llvm 4 | pcre 5 | -------------------------------------------------------------------------------- /extra/crystal/sources: -------------------------------------------------------------------------------- 1 | https://github.com/crystal-lang/crystal/archive/1.11.2.tar.gz 2 | https://dev.alpinelinux.org/archive/crystal/crystal-1.5.1-x86_64-alpine-linux-musl.tar.gz core 3 | patches/fix-crystal-sh.patch 4 | -------------------------------------------------------------------------------- /extra/crystal/version: -------------------------------------------------------------------------------- 1 | 1.11.2 1 2 | -------------------------------------------------------------------------------- /extra/dhcpcd/checksums: -------------------------------------------------------------------------------- 1 | 88d3b6c703403a327ccfb417d7b3ea33eef942655e4f37dfed7ec663f440ab1e51 2 | bc73f68fb9025d7c0379d0476968bfb10a10b9729380d9c05cec7a2ebeff05ce35 3 | -------------------------------------------------------------------------------- /extra/dhcpcd/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/dhcpcd/files/dhcpcd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec dhcpcd -BM 2>&1 3 | -------------------------------------------------------------------------------- /extra/dhcpcd/sources: -------------------------------------------------------------------------------- 1 | https://github.com/NetworkConfiguration/dhcpcd/releases/download/v10.0.6/dhcpcd-10.0.6.tar.xz 2 | files/dhcpcd.run 3 | -------------------------------------------------------------------------------- /extra/dhcpcd/version: -------------------------------------------------------------------------------- 1 | 10.0.6 1 2 | -------------------------------------------------------------------------------- /extra/dmenu/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | make 7 | make PREFIX=/usr install 8 | -------------------------------------------------------------------------------- /extra/dmenu/checksums: -------------------------------------------------------------------------------- 1 | c22ed9d7d2079f26f0ae2bcea5411e8515e887d9427dbd746ef2947a4fa87ba062 2 | -------------------------------------------------------------------------------- /extra/dmenu/depends: -------------------------------------------------------------------------------- 1 | fontconfig 2 | libX11 3 | libXft 4 | libXinerama 5 | xorg-server 6 | -------------------------------------------------------------------------------- /extra/dmenu/sources: -------------------------------------------------------------------------------- 1 | https://dl.suckless.org/tools/dmenu-5.2.tar.gz 2 | -------------------------------------------------------------------------------- /extra/dmenu/version: -------------------------------------------------------------------------------- 1 | 5.2 1 2 | -------------------------------------------------------------------------------- /extra/docker/depends: -------------------------------------------------------------------------------- 1 | bash make 2 | btrfs-progs make 3 | cmake make 4 | containerd 5 | iptables 6 | libseccomp 7 | lvm2 8 | runc 9 | -------------------------------------------------------------------------------- /extra/docker/pre-remove: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | delgroup docker 4 | -------------------------------------------------------------------------------- /extra/docker/version: -------------------------------------------------------------------------------- 1 | 25.0.3 1 2 | -------------------------------------------------------------------------------- /extra/dosfstools/checksums: -------------------------------------------------------------------------------- 1 | 29996284e862ae2a12988fc0cc8f02304f9aaebe583a8c51c8d0a1140100161179 2 | -------------------------------------------------------------------------------- /extra/dosfstools/sources: -------------------------------------------------------------------------------- 1 | https://github.com/dosfstools/dosfstools/releases/download/v4.2/dosfstools-4.2.tar.gz 2 | -------------------------------------------------------------------------------- /extra/dosfstools/version: -------------------------------------------------------------------------------- 1 | 4.2 1 2 | -------------------------------------------------------------------------------- /extra/e2fsprogs/checksums: -------------------------------------------------------------------------------- 1 | c989a483ff86f065593010b72b1f158af28669821c4c710b40ed15c427fa356c0e 2 | -------------------------------------------------------------------------------- /extra/e2fsprogs/sources: -------------------------------------------------------------------------------- 1 | https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.47.0/e2fsprogs-1.47.0.tar.xz 2 | -------------------------------------------------------------------------------- /extra/e2fsprogs/version: -------------------------------------------------------------------------------- 1 | 1.47.0 1 2 | -------------------------------------------------------------------------------- /extra/efibootmgr/checksums: -------------------------------------------------------------------------------- 1 | e68c0aa061a0573ce305c44be3486edbf0ae12416c0916151aaf3e5caa11cc7a71 2 | -------------------------------------------------------------------------------- /extra/efibootmgr/depends: -------------------------------------------------------------------------------- 1 | efivar 2 | linux-headers make 3 | pkgconf make 4 | -------------------------------------------------------------------------------- /extra/efibootmgr/sources: -------------------------------------------------------------------------------- 1 | https://github.com/rhboot/efibootmgr/releases/download/18/efibootmgr-18.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/efibootmgr/version: -------------------------------------------------------------------------------- 1 | 18 1 2 | -------------------------------------------------------------------------------- /extra/efivar/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | # Remove mandoc build dependency 4 | mv docs/efisecdb.1.mdoc docs/efisecdb.1 5 | 6 | make COMPILER="${CC}" 7 | make DESTDIR="$1" libdir=/usr/lib/ install 8 | -------------------------------------------------------------------------------- /extra/efivar/checksums: -------------------------------------------------------------------------------- 1 | 51adfa6d88e2768313a223d197f9edd88f15f3889fdae985b2222da87792e64af6 2 | -------------------------------------------------------------------------------- /extra/efivar/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/efivar/sources: -------------------------------------------------------------------------------- 1 | https://github.com/rhboot/efivar/archive/refs/tags/39.tar.gz 2 | -------------------------------------------------------------------------------- /extra/efivar/version: -------------------------------------------------------------------------------- 1 | 39 1 2 | -------------------------------------------------------------------------------- /extra/eiwd/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/eiwd/files/eiwd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec iwd -d 3 | -------------------------------------------------------------------------------- /extra/eiwd/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cat </dev/null 2>&1 5 | -------------------------------------------------------------------------------- /extra/openssh/sources: -------------------------------------------------------------------------------- 1 | https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.6p1.tar.gz 2 | files/sshd.run 3 | -------------------------------------------------------------------------------- /extra/openssh/version: -------------------------------------------------------------------------------- 1 | 9.6p1 1 2 | -------------------------------------------------------------------------------- /extra/opus/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --enable-custom-modes \ 6 | --enable-float-approx 7 | 8 | make 9 | make install 10 | -------------------------------------------------------------------------------- /extra/opus/checksums: -------------------------------------------------------------------------------- 1 | 3eafe0d8609ec65d327960c062930daf324dd11de84e3b27b76db44fd0daeaac5c 2 | -------------------------------------------------------------------------------- /extra/opus/sources: -------------------------------------------------------------------------------- 1 | https://github.com/xiph/opus/releases/download/v1.4/opus-1.4.tar.gz 2 | -------------------------------------------------------------------------------- /extra/opus/version: -------------------------------------------------------------------------------- 1 | 1.4 1 2 | -------------------------------------------------------------------------------- /extra/os-prober/checksums: -------------------------------------------------------------------------------- 1 | a2152e33c1938215aa80b1588f302c321180d24fd01073370a61913426c488d244 2 | -------------------------------------------------------------------------------- /extra/os-prober/sources: -------------------------------------------------------------------------------- 1 | http://ftp.debian.org/debian/pool/main/o/os-prober/os-prober_1.81.tar.xz 2 | -------------------------------------------------------------------------------- /extra/os-prober/version: -------------------------------------------------------------------------------- 1 | 1.81 1 2 | -------------------------------------------------------------------------------- /extra/pango/checksums: -------------------------------------------------------------------------------- 1 | 87f7f54f2beaa88af9ef75598601ac938eed18bfe42857c400cdcaba388f2edbc3 2 | 7e302c66e91be63160d6bdf0580549bc511295d689f3ee4a333c6d320ec24b9df7 3 | -------------------------------------------------------------------------------- /extra/pango/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | fontconfig 3 | freetype-harfbuzz 4 | glib 5 | meson make 6 | pkgconf make 7 | -------------------------------------------------------------------------------- /extra/pango/sources: -------------------------------------------------------------------------------- 1 | https://github.com/GNOME/pango/archive/1.52.0.tar.gz 2 | patches/no-fribidi.patch 3 | -------------------------------------------------------------------------------- /extra/pango/version: -------------------------------------------------------------------------------- 1 | 1.52.0 1 2 | -------------------------------------------------------------------------------- /extra/pcre/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --enable-unicode-properties 6 | 7 | make 8 | make install 9 | 10 | rm -rf "$1/usr/share/doc" 11 | -------------------------------------------------------------------------------- /extra/pcre/checksums: -------------------------------------------------------------------------------- 1 | 40b6f04f23d2d95d0766035fd01c1186ecc727c1078820c5d89ec81b76fc7711fc 2 | -------------------------------------------------------------------------------- /extra/pcre/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/pcre/pcre-8.45.tar.gz 2 | -------------------------------------------------------------------------------- /extra/pcre/version: -------------------------------------------------------------------------------- 1 | 8.45 1 2 | -------------------------------------------------------------------------------- /extra/perl/checksums: -------------------------------------------------------------------------------- 1 | dc533981f73c6ce94bd5835a9a6dab76b77e22f74898916da999a3ef90211df8c0 2 | -------------------------------------------------------------------------------- /extra/perl/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/perl/sources: -------------------------------------------------------------------------------- 1 | https://www.cpan.org/src/5.0/perl-5.38.2.tar.xz 2 | -------------------------------------------------------------------------------- /extra/perl/version: -------------------------------------------------------------------------------- 1 | 5.38.2 1 2 | -------------------------------------------------------------------------------- /extra/pforth/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/philburk/pforth 2 | -------------------------------------------------------------------------------- /extra/pforth/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /extra/pkgconf/checksums: -------------------------------------------------------------------------------- 1 | 17d04b5700bec0025f7a052065af2e7dd6c7d011299aa4d19439bc0376b9615472 2 | -------------------------------------------------------------------------------- /extra/pkgconf/sources: -------------------------------------------------------------------------------- 1 | https://distfiles.dereferenced.org/pkgconf/pkgconf-2.1.1.tar.xz 2 | -------------------------------------------------------------------------------- /extra/pkgconf/version: -------------------------------------------------------------------------------- 1 | 2.1.1 1 2 | -------------------------------------------------------------------------------- /extra/postgresql/checksums: -------------------------------------------------------------------------------- 1 | 530bbebc002a5fc2374bd1f0a94e2199913f85b690045f82ae4f2231127f4ac128 2 | -------------------------------------------------------------------------------- /extra/postgresql/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | -------------------------------------------------------------------------------- /extra/postgresql/sources: -------------------------------------------------------------------------------- 1 | https://ftp.postgresql.org/pub/source/v16.2/postgresql-16.2.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/postgresql/version: -------------------------------------------------------------------------------- 1 | 16.2 1 2 | -------------------------------------------------------------------------------- /extra/python/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | expat 3 | libffi 4 | openssl 5 | sqlite 6 | zlib 7 | -------------------------------------------------------------------------------- /extra/python/sources: -------------------------------------------------------------------------------- 1 | https://www.python.org/ftp/python/3.12.2/Python-3.12.2.tar.xz 2 | patches/python3-always-pip.patch 3 | patches/python3-pyc-hash.patch 4 | -------------------------------------------------------------------------------- /extra/python/version: -------------------------------------------------------------------------------- 1 | 3.12.2 1 2 | -------------------------------------------------------------------------------- /extra/racket-minimal/checksums: -------------------------------------------------------------------------------- 1 | fc766ea259f7ffcf33a448f534c3835a9ae76e0af5b48e3823dd5ede4b6581d5f5 2 | -------------------------------------------------------------------------------- /extra/racket-minimal/sources: -------------------------------------------------------------------------------- 1 | https://download.racket-lang.org/releases/8.12/installers/racket-minimal-8.12-src.tgz 2 | -------------------------------------------------------------------------------- /extra/racket-minimal/version: -------------------------------------------------------------------------------- 1 | 8.9 1 2 | -------------------------------------------------------------------------------- /extra/rdfind/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure --prefix=/usr 4 | make 5 | 6 | make install DESTDIR="$1" 7 | -------------------------------------------------------------------------------- /extra/rdfind/checksums: -------------------------------------------------------------------------------- 1 | 7c3cb90fa91028914e9c76bd8500edeaff33ca053790da7e29c066617179573ea5 2 | -------------------------------------------------------------------------------- /extra/rdfind/depends: -------------------------------------------------------------------------------- 1 | autoconf make 2 | libtool make 3 | nettle 4 | -------------------------------------------------------------------------------- /extra/rdfind/sources: -------------------------------------------------------------------------------- 1 | https://rdfind.pauldreik.se/rdfind-1.6.0.tar.gz 2 | -------------------------------------------------------------------------------- /extra/rdfind/version: -------------------------------------------------------------------------------- 1 | 1.6.0 1 2 | -------------------------------------------------------------------------------- /extra/ruby/checksums: -------------------------------------------------------------------------------- 1 | 136d57681462893c5f7ebd3c40c158d4c041f927bcea04a63d46014a2867a3756b 2 | -------------------------------------------------------------------------------- /extra/ruby/sources: -------------------------------------------------------------------------------- 1 | https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.0.tar.gz 2 | -------------------------------------------------------------------------------- /extra/ruby/version: -------------------------------------------------------------------------------- 1 | 3.3.0 1 2 | -------------------------------------------------------------------------------- /extra/runc/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | go mod vendor 4 | 5 | make 6 | make BINDIR=/usr/bin DESTDIR="$1" PREFIX=/usr install 7 | -------------------------------------------------------------------------------- /extra/runc/checksums: -------------------------------------------------------------------------------- 1 | 4ea9869a0197bd8e9904dc56a65b18847f30d11b9c5ec24064c9b5809d82b5c3d7 2 | -------------------------------------------------------------------------------- /extra/runc/depends: -------------------------------------------------------------------------------- 1 | go make 2 | libseccomp 3 | -------------------------------------------------------------------------------- /extra/runc/sources: -------------------------------------------------------------------------------- 1 | https://github.com/opencontainers/runc/archive/v1.1.12.tar.gz 2 | -------------------------------------------------------------------------------- /extra/runc/version: -------------------------------------------------------------------------------- 1 | 1.1.12 1 2 | -------------------------------------------------------------------------------- /extra/rust/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | curl make 3 | llvm 4 | openssl 5 | pkgconf make 6 | python make 7 | xz 8 | zlib 9 | -------------------------------------------------------------------------------- /extra/rust/version: -------------------------------------------------------------------------------- 1 | 1.76.0 1 2 | -------------------------------------------------------------------------------- /extra/samurai/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make PREFIX=/usr 4 | make PREFIX=/usr install 5 | 6 | ln -sf samu "$1/usr/bin/ninja" 7 | ln -sf samu.1 "$1/usr/share/man/man1/ninja.1" 8 | -------------------------------------------------------------------------------- /extra/samurai/checksums: -------------------------------------------------------------------------------- 1 | 9f0315f1f6e123eb32c8cdb5fe98bcca1f1d2f4ca2617675476568cf3ddc07dabe 2 | -------------------------------------------------------------------------------- /extra/samurai/sources: -------------------------------------------------------------------------------- 1 | https://github.com/michaelforney/samurai/releases/download/1.2/samurai-1.2.tar.gz 2 | -------------------------------------------------------------------------------- /extra/samurai/version: -------------------------------------------------------------------------------- 1 | 1.2 1 2 | -------------------------------------------------------------------------------- /extra/scdoc/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make PREFIX=/usr 4 | make PREFIX=/usr install 5 | -------------------------------------------------------------------------------- /extra/scdoc/checksums: -------------------------------------------------------------------------------- 1 | 241d4d907395bdd25a17fea878e8c476ec988f2e247fcea462955fd43f2f98ac21 2 | -------------------------------------------------------------------------------- /extra/scdoc/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~sircmpwn/scdoc/archive/1.11.3.tar.gz 2 | -------------------------------------------------------------------------------- /extra/scdoc/version: -------------------------------------------------------------------------------- 1 | 1.11.3 1 2 | -------------------------------------------------------------------------------- /extra/scrot/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --mandir=/usr/share/man 6 | 7 | make 8 | make DESTDIR="$1" install 9 | -------------------------------------------------------------------------------- /extra/scrot/checksums: -------------------------------------------------------------------------------- 1 | bfc23802c1d9b4a1244dc1f882fc3dadfb4c6a75bf4a4ac98a715f0ee7ac7bb590 2 | -------------------------------------------------------------------------------- /extra/scrot/depends: -------------------------------------------------------------------------------- 1 | giblib 2 | imlib2 3 | libX11 4 | -------------------------------------------------------------------------------- /extra/scrot/sources: -------------------------------------------------------------------------------- 1 | https://github.com/resurrecting-open-source-projects/scrot/releases/download/1.10/scrot-1.10.tar.gz 2 | -------------------------------------------------------------------------------- /extra/scrot/version: -------------------------------------------------------------------------------- 1 | 1.10 1 2 | -------------------------------------------------------------------------------- /extra/shared-mime-info/checksums: -------------------------------------------------------------------------------- 1 | ad130f2f923ab3d5455c643e6257abf3598339fdd134ad0fac4e5dbbbf070eb906 2 | -------------------------------------------------------------------------------- /extra/shared-mime-info/depends: -------------------------------------------------------------------------------- 1 | glib 2 | libxml2 3 | -------------------------------------------------------------------------------- /extra/shared-mime-info/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/xdg/shared-mime-info/-/archive/2.4/shared-mime-info-2.4.tar.gz 2 | -------------------------------------------------------------------------------- /extra/shared-mime-info/version: -------------------------------------------------------------------------------- 1 | 2.4 1 2 | -------------------------------------------------------------------------------- /extra/sqlite/checksums: -------------------------------------------------------------------------------- 1 | cacc0337aca2a36c5308a2c3f4f044126832873198f5326c0a933731bf5c25f028 2 | -------------------------------------------------------------------------------- /extra/sqlite/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/sqlite/sources: -------------------------------------------------------------------------------- 1 | https://www.sqlite.org/2023/sqlite-autoconf-3410200.tar.gz 2 | -------------------------------------------------------------------------------- /extra/sqlite/version: -------------------------------------------------------------------------------- 1 | 3.45.1 1 2 | -------------------------------------------------------------------------------- /extra/ssu/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make 4 | make \ 5 | PREFIX=/usr \ 6 | BINOWN="$(id -u)" \ 7 | BINGRP="$(id -g)" \ 8 | install 9 | -------------------------------------------------------------------------------- /extra/ssu/checksums: -------------------------------------------------------------------------------- 1 | e603a1923ec9b636b948a11493a559817f8c3a94b480c8924a25acce760c4bf6c4 2 | -------------------------------------------------------------------------------- /extra/ssu/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | chown root:wheel /usr/bin/ssu 4 | chmod 4754 /usr/bin/ssu 5 | -------------------------------------------------------------------------------- /extra/ssu/sources: -------------------------------------------------------------------------------- 1 | https://github.com/illiliti/ssu/archive/refs/tags/0.3.2.tar.gz 2 | -------------------------------------------------------------------------------- /extra/ssu/version: -------------------------------------------------------------------------------- 1 | 0.3.2 1 2 | -------------------------------------------------------------------------------- /extra/strace/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-mpers 6 | 7 | make 8 | make install 9 | -------------------------------------------------------------------------------- /extra/strace/checksums: -------------------------------------------------------------------------------- 1 | 30bdc0f525f30b8208345f2dbbbc2c8be91781eb2d97db78aabfdcb38b023c4aab 2 | -------------------------------------------------------------------------------- /extra/strace/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/strace/sources: -------------------------------------------------------------------------------- 1 | https://github.com/strace/strace/releases/download/v6.7/strace-6.7.tar.xz 2 | -------------------------------------------------------------------------------- /extra/strace/version: -------------------------------------------------------------------------------- 1 | 6.7 1 2 | -------------------------------------------------------------------------------- /extra/sudo/checksums: -------------------------------------------------------------------------------- 1 | c2c3a4dbdb04e7472b26223af9876146e79284d1b064f12d01ca893126d1f76b0e 2 | -------------------------------------------------------------------------------- /extra/sudo/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/sudo/sources: -------------------------------------------------------------------------------- 1 | https://www.sudo.ws/dist/sudo-1.9.15p5.tar.gz 2 | -------------------------------------------------------------------------------- /extra/sudo/version: -------------------------------------------------------------------------------- 1 | 1.9.15p5 1 2 | -------------------------------------------------------------------------------- /extra/tlp/checksums: -------------------------------------------------------------------------------- 1 | 461a1dff947f067b162f69a07756a2d8b95f4cc16d91bde809630218c3a5f4369b 2 | a3ec8b5786ba4d48fff3d6d16e8e6092ae2515d709381936f80bb1a2f4f4965a22 3 | -------------------------------------------------------------------------------- /extra/tlp/depends: -------------------------------------------------------------------------------- 1 | perl 2 | util-linux 3 | -------------------------------------------------------------------------------- /extra/tlp/sources: -------------------------------------------------------------------------------- 1 | https://github.com/linrunner/TLP/archive/1.6.1.tar.gz 2 | patches/tlp-no-flock-wait.patch 3 | -------------------------------------------------------------------------------- /extra/tlp/version: -------------------------------------------------------------------------------- 1 | 1.6.1 1 2 | -------------------------------------------------------------------------------- /extra/ttf-croscore/checksums: -------------------------------------------------------------------------------- 1 | 66cd58e7470bb5fde7e6750e317840a19b7f428cdf9c40a54d4c10edee8c9a3c84 2 | -------------------------------------------------------------------------------- /extra/ttf-croscore/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | fc-cache -v 4 | -------------------------------------------------------------------------------- /extra/ttf-croscore/sources: -------------------------------------------------------------------------------- 1 | http://gsdview.appspot.com/chromeos-localmirror/distfiles/croscorefonts-1.31.0.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/ttf-croscore/version: -------------------------------------------------------------------------------- 1 | 1.31.0 2 2 | -------------------------------------------------------------------------------- /extra/tzdata/checksums: -------------------------------------------------------------------------------- 1 | 10b9bcb12c6221bc6d86a81b2f43b241efb187ac68408efc4406070e5a9349c833 2 | -------------------------------------------------------------------------------- /extra/tzdata/sources: -------------------------------------------------------------------------------- 1 | https://github.com/eggert/tz/archive/2024a.tar.gz 2 | -------------------------------------------------------------------------------- /extra/tzdata/version: -------------------------------------------------------------------------------- 1 | 2024a 1 2 | -------------------------------------------------------------------------------- /extra/unrar/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make 4 | make DESTDIR="$1/usr" install 5 | -------------------------------------------------------------------------------- /extra/unrar/checksums: -------------------------------------------------------------------------------- 1 | 47c9c41f16b3e153b913273f7b7039da5798ccadeed846ee559650497b71bc048a 2 | -------------------------------------------------------------------------------- /extra/unrar/sources: -------------------------------------------------------------------------------- 1 | https://www.rarlab.com/rar/unrarsrc-7.0.7.tar.gz 2 | -------------------------------------------------------------------------------- /extra/unrar/version: -------------------------------------------------------------------------------- 1 | 7.0.7 1 2 | -------------------------------------------------------------------------------- /extra/util-linux/checksums: -------------------------------------------------------------------------------- 1 | 69d498a93b08e1bc6dbf44ef78661c8fc8e52b086150eb13ef52290308c6525c02 2 | -------------------------------------------------------------------------------- /extra/util-linux/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/util-linux/sources: -------------------------------------------------------------------------------- 1 | https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.39/util-linux-2.39.3.tar.xz 2 | -------------------------------------------------------------------------------- /extra/util-linux/version: -------------------------------------------------------------------------------- 1 | 2.39.3 1 2 | -------------------------------------------------------------------------------- /extra/vala/checksums: -------------------------------------------------------------------------------- 1 | 9bd8a7b6ff6cf7a6d7f12b4903f74bea7143d53b5093aed0d5ee58a491c6f926d3 2 | -------------------------------------------------------------------------------- /extra/vala/depends: -------------------------------------------------------------------------------- 1 | bash make 2 | bison make 3 | flex make 4 | glib 5 | libffi 6 | pkgconf make 7 | -------------------------------------------------------------------------------- /extra/vala/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/vala/0.56/vala-0.56.14.tar.xz 2 | -------------------------------------------------------------------------------- /extra/vala/version: -------------------------------------------------------------------------------- 1 | 0.56.14 1 2 | -------------------------------------------------------------------------------- /extra/vim/depends: -------------------------------------------------------------------------------- 1 | ncurses 2 | -------------------------------------------------------------------------------- /extra/vim/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/vim/vim 2 | -------------------------------------------------------------------------------- /extra/vim/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /extra/wpa_supplicant/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | openssl 3 | -------------------------------------------------------------------------------- /extra/wpa_supplicant/files/wpa_supplicant.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec wpa_supplicant -C /etc/wpa_supplicant.conf 3 | -------------------------------------------------------------------------------- /extra/wpa_supplicant/version: -------------------------------------------------------------------------------- 1 | 2.10 1 2 | -------------------------------------------------------------------------------- /extra/x264/checksums: -------------------------------------------------------------------------------- 1 | 8ff4ea610f350436137a8ea6fda6fdcddc22234d16fa229de6ca314454eb855741 2 | 5cfc5577ee0a6222683af47d3062fdc29554c70c02a2240760a33333a54a4c6552 3 | -------------------------------------------------------------------------------- /extra/x264/depends: -------------------------------------------------------------------------------- 1 | nasm make 2 | -------------------------------------------------------------------------------- /extra/x264/sources: -------------------------------------------------------------------------------- 1 | https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20190812-2245-stable.tar.bz2 2 | patches/portability.patch 3 | -------------------------------------------------------------------------------- /extra/x264/version: -------------------------------------------------------------------------------- 1 | 20190812-2245 4 2 | -------------------------------------------------------------------------------- /extra/x265/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake source \ 4 | -DCMAKE_INSTALL_PREFIX=/usr \ 5 | -DCMAKE_BUILD_TYPE=Release 6 | 7 | cmake --build . 8 | cmake --install . 9 | -------------------------------------------------------------------------------- /extra/x265/checksums: -------------------------------------------------------------------------------- 1 | 81c90ec4b419ff61bbe49cfdcb75931e24bb3291f788e80436ff5d639673fd30f6 2 | -------------------------------------------------------------------------------- /extra/x265/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | nasm make 3 | -------------------------------------------------------------------------------- /extra/x265/sources: -------------------------------------------------------------------------------- 1 | https://bitbucket.org/multicoreware/x265_git/downloads/x265_3.5.tar.gz 2 | -------------------------------------------------------------------------------- /extra/x265/version: -------------------------------------------------------------------------------- 1 | 3.5 1 2 | -------------------------------------------------------------------------------- /extra/xvidcore/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cd build/generic 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /extra/xvidcore/checksums: -------------------------------------------------------------------------------- 1 | b29e53dcb890e7dd2ef8faa5dbf4a6d7ed7eea84cf66e8a211c61ef0d902950989 2 | -------------------------------------------------------------------------------- /extra/xvidcore/depends: -------------------------------------------------------------------------------- 1 | nasm make 2 | -------------------------------------------------------------------------------- /extra/xvidcore/sources: -------------------------------------------------------------------------------- 1 | https://downloads.xvid.com/downloads/xvidcore-1.3.7.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/xvidcore/version: -------------------------------------------------------------------------------- 1 | 1.3.7 1 2 | -------------------------------------------------------------------------------- /extra/zsh/checksums: -------------------------------------------------------------------------------- 1 | b440cfbea634b5a684903656db8d8f8ff70a5657a4b479b9c256e9583adfeaccf5 2 | 960164aa23d3c9d084aff7e2443115ad3185add16bad6c6f5bb2c11b473fa3a312 3 | -------------------------------------------------------------------------------- /extra/zsh/depends: -------------------------------------------------------------------------------- 1 | ncurses 2 | xz make 3 | -------------------------------------------------------------------------------- /extra/zsh/files/zprofile: -------------------------------------------------------------------------------- 1 | emulate sh -c '. /etc/profile' 2 | -------------------------------------------------------------------------------- /extra/zsh/sources: -------------------------------------------------------------------------------- 1 | https://sourceforge.net/projects/zsh/files/zsh/5.9/zsh-5.9.tar.xz 2 | files/zprofile 3 | -------------------------------------------------------------------------------- /extra/zsh/version: -------------------------------------------------------------------------------- 1 | 5.9 1 2 | -------------------------------------------------------------------------------- /extra/zstd/checksums: -------------------------------------------------------------------------------- 1 | 1d5a2f321553b474179a3c88c00038b1b529087cf5f39fb47445b6b8558ed68457 2 | -------------------------------------------------------------------------------- /extra/zstd/sources: -------------------------------------------------------------------------------- 1 | https://github.com/facebook/zstd/releases/download/v1.5.5/zstd-1.5.5.tar.gz 2 | -------------------------------------------------------------------------------- /extra/zstd/version: -------------------------------------------------------------------------------- 1 | 1.5.5 1 2 | -------------------------------------------------------------------------------- /wayland/foot-pgo/depends: -------------------------------------------------------------------------------- 1 | fontconfig 2 | libxkbcommon 3 | meson make 4 | ncurses make 5 | pkgconf make 6 | python make 7 | wayland 8 | wayland-protocols make 9 | -------------------------------------------------------------------------------- /wayland/foot-pgo/version: -------------------------------------------------------------------------------- 1 | 1.14.0 1 2 | -------------------------------------------------------------------------------- /wayland/foot/depends: -------------------------------------------------------------------------------- 1 | fontconfig 2 | libxkbcommon 3 | meson make 4 | ncurses make 5 | pkgconf make 6 | python make 7 | wayland 8 | wayland-protocols make 9 | -------------------------------------------------------------------------------- /wayland/foot/version: -------------------------------------------------------------------------------- 1 | 1.16.2 1 2 | -------------------------------------------------------------------------------- /wayland/grim/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | meson \ 4 | --prefix=/usr \ 5 | -Djpeg=disabled \ 6 | . build 7 | 8 | ninja -C build 9 | ninja -C build install 10 | -------------------------------------------------------------------------------- /wayland/grim/checksums: -------------------------------------------------------------------------------- 1 | 70170a919083394bb8013eb9bac56130e95db48af3e9af75d16046cf6c8f825fd9 2 | -------------------------------------------------------------------------------- /wayland/grim/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | pkgconf make 3 | wayland 4 | wayland-protocols make 5 | -------------------------------------------------------------------------------- /wayland/grim/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~emersion/grim/archive/v1.4.1.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/grim/version: -------------------------------------------------------------------------------- 1 | 1.4.1 1 2 | -------------------------------------------------------------------------------- /wayland/libdrm/checksums: -------------------------------------------------------------------------------- 1 | 0b1353717e4eaa3c1e232a6f16b7f0c96329dbd52760bfb1d401ef01fbc2fee9f1 2 | 691d5499ca9c80159cae9cda03cdd4f31679317756742aecbea6d0b547bfe47cd9 3 | -------------------------------------------------------------------------------- /wayland/libdrm/depends: -------------------------------------------------------------------------------- 1 | libpciaccess 2 | linux-headers make 3 | meson make 4 | pkgconf make 5 | -------------------------------------------------------------------------------- /wayland/libdrm/sources: -------------------------------------------------------------------------------- 1 | https://dri.freedesktop.org/libdrm/libdrm-2.4.120.tar.xz 2 | https://files.pythonhosted.org/packages/source/d/docutils/docutils-0.18.1.tar.gz docutils 3 | -------------------------------------------------------------------------------- /wayland/libdrm/version: -------------------------------------------------------------------------------- 1 | 2.4.120 1 2 | -------------------------------------------------------------------------------- /wayland/libpciaccess/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make install 8 | -------------------------------------------------------------------------------- /wayland/libpciaccess/checksums: -------------------------------------------------------------------------------- 1 | 992630496a0933969c45d17e1f32d80db70cd36415259e015dc1aefc34eb5dc1a4 2 | -------------------------------------------------------------------------------- /wayland/libpciaccess/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libpciaccess-0.18.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/libpciaccess/version: -------------------------------------------------------------------------------- 1 | 0.18 1 2 | -------------------------------------------------------------------------------- /wayland/libseat/checksums: -------------------------------------------------------------------------------- 1 | d1d2bbeda123643540e7b7c84528a5c73bbb27cc04d7fad09213750acea6055060 2 | 44b9b75e9ea8c7e53373c6b1188605eb92e545fd31ba5df863b7863223627a40a6 3 | -------------------------------------------------------------------------------- /wayland/libseat/depends: -------------------------------------------------------------------------------- 1 | meson make 2 | -------------------------------------------------------------------------------- /wayland/libseat/files/seatd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec seatd -g video 3 | -------------------------------------------------------------------------------- /wayland/libseat/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~kennylevinsen/seatd/archive/0.7.0.tar.gz 2 | files/seatd.run 3 | -------------------------------------------------------------------------------- /wayland/libseat/version: -------------------------------------------------------------------------------- 1 | 0.7.0 1 2 | -------------------------------------------------------------------------------- /wayland/libxkbcommon/checksums: -------------------------------------------------------------------------------- 1 | ce9e2187d72a7d689110caa9bf84aee27bcc7f23317ea72df6c7620ebdc57ad900 2 | -------------------------------------------------------------------------------- /wayland/libxkbcommon/depends: -------------------------------------------------------------------------------- 1 | bison make 2 | meson make 3 | pkgconf make 4 | wayland 5 | wayland-protocols make 6 | xkeyboard-config 7 | -------------------------------------------------------------------------------- /wayland/libxkbcommon/sources: -------------------------------------------------------------------------------- 1 | https://xkbcommon.org/download/libxkbcommon-1.6.0.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/libxkbcommon/version: -------------------------------------------------------------------------------- 1 | 1.6.0 1 2 | -------------------------------------------------------------------------------- /wayland/pixman/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-gtk 6 | 7 | make 8 | make install 9 | -------------------------------------------------------------------------------- /wayland/pixman/checksums: -------------------------------------------------------------------------------- 1 | de50d2f9937106d47d95e915aa8ef54a0af34e0d6b804095452c755e43b0aa34e9 2 | -------------------------------------------------------------------------------- /wayland/pixman/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/pixman-0.43.4.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/pixman/version: -------------------------------------------------------------------------------- 1 | 0.43.4 1 2 | -------------------------------------------------------------------------------- /wayland/slurp/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | meson \ 4 | --prefix=/usr \ 5 | --buildtype=release \ 6 | . output 7 | 8 | ninja -C output 9 | ninja -C output install 10 | -------------------------------------------------------------------------------- /wayland/slurp/checksums: -------------------------------------------------------------------------------- 1 | 8657e8b2682d67adb3dfc052f6603ec8601f94d362f2311bd17a84b87eafd850f3 2 | -------------------------------------------------------------------------------- /wayland/slurp/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | libxkbcommon 3 | linux-headers make 4 | meson make 5 | pkgconf make 6 | wayland 7 | wayland-protocols make 8 | -------------------------------------------------------------------------------- /wayland/slurp/sources: -------------------------------------------------------------------------------- 1 | https://github.com/emersion/slurp/releases/download/v1.5.0/slurp-1.5.0.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/slurp/version: -------------------------------------------------------------------------------- 1 | 1.5.0 1 2 | -------------------------------------------------------------------------------- /wayland/sway-no-seat/version: -------------------------------------------------------------------------------- 1 | 6ffa4b1f7000cd90d63213820039ee432803e66a 1 2 | -------------------------------------------------------------------------------- /wayland/sway-tiny/depends: -------------------------------------------------------------------------------- 1 | flex make 2 | libinput 3 | libxkbcommon 4 | linux-headers make 5 | mesa 6 | meson make 7 | pixman 8 | pkgconf make 9 | wayland 10 | wayland-protocols make 11 | -------------------------------------------------------------------------------- /wayland/sway-tiny/version: -------------------------------------------------------------------------------- 1 | c34a4ca6d234177416dc931efd3035f3b803315b 2 2 | -------------------------------------------------------------------------------- /wayland/sway/sources: -------------------------------------------------------------------------------- 1 | https://github.com/swaywm/sway/releases/download/1.9/sway-1.9.tar.gz 2 | patches/no-evdev.patch 3 | patches/llvm-13.patch 4 | -------------------------------------------------------------------------------- /wayland/sway/version: -------------------------------------------------------------------------------- 1 | 1.9 1 2 | -------------------------------------------------------------------------------- /wayland/wayland-protocols/checksums: -------------------------------------------------------------------------------- 1 | c7ed5ebc2f324e2b925af14f2072c80e2da85b282fb9374cb9b876d3ee28ed330d 2 | -------------------------------------------------------------------------------- /wayland/wayland-protocols/depends: -------------------------------------------------------------------------------- 1 | meson make 2 | wayland make 3 | -------------------------------------------------------------------------------- /wayland/wayland-protocols/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/1.33/downloads/wayland-protocols-1.33.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/wayland-protocols/version: -------------------------------------------------------------------------------- 1 | 1.33 1 2 | -------------------------------------------------------------------------------- /wayland/wayland/checksums: -------------------------------------------------------------------------------- 1 | 81c50b673472657ac334a73340ec17448136162c943bfff7bd9677d64ea286c770 2 | -------------------------------------------------------------------------------- /wayland/wayland/depends: -------------------------------------------------------------------------------- 1 | expat 2 | flex make 3 | libffi 4 | meson make 5 | -------------------------------------------------------------------------------- /wayland/wayland/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/wayland/wayland/-/releases/1.22.0/downloads/wayland-1.22.0.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/wayland/version: -------------------------------------------------------------------------------- 1 | 1.22.0 1 2 | -------------------------------------------------------------------------------- /wayland/wbg/checksums: -------------------------------------------------------------------------------- 1 | e2ee3a0f5db05e4f6b123ea0c4b30c7730c261ae82b46be09ba46506e4610a5458 2 | 8822c938a0aa3136f49a563099051b6c328b202257b803ae4a5c3db962bc9a340e 3 | -------------------------------------------------------------------------------- /wayland/wbg/depends: -------------------------------------------------------------------------------- 1 | libjpeg-turbo 2 | libpng 3 | meson make 4 | pixman 5 | wayland 6 | wayland-protocols make 7 | -------------------------------------------------------------------------------- /wayland/wbg/sources: -------------------------------------------------------------------------------- 1 | https://codeberg.org/dnkl/wbg/archive/1.1.0.tar.gz 2 | https://codeberg.org/dnkl/tllist/archive/1.1.0.tar.gz subprojects/tllist 3 | -------------------------------------------------------------------------------- /wayland/wbg/version: -------------------------------------------------------------------------------- 1 | 1.1.0 1 2 | -------------------------------------------------------------------------------- /wayland/wl-clipboard/checksums: -------------------------------------------------------------------------------- 1 | f6542deead64f0804935a704c958bfd4baa4d2db2861d733f86f41b8874e9af1e6 2 | -------------------------------------------------------------------------------- /wayland/wl-clipboard/depends: -------------------------------------------------------------------------------- 1 | meson make 2 | wayland 3 | wayland-protocols make 4 | -------------------------------------------------------------------------------- /wayland/wl-clipboard/sources: -------------------------------------------------------------------------------- 1 | https://github.com/bugaevc/wl-clipboard/archive/refs/tags/v2.2.1.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/wl-clipboard/version: -------------------------------------------------------------------------------- 1 | 2.2.1 1 2 | -------------------------------------------------------------------------------- /wayland/wlroots/checksums: -------------------------------------------------------------------------------- 1 | 6bbd5d7f422bdceaf5cba848fe9b122e3baae7f24ac157625a509c6e4b2ea5bc8f 2 | -------------------------------------------------------------------------------- /wayland/wlroots/depends: -------------------------------------------------------------------------------- 1 | flex make 2 | libdrm 3 | libinput 4 | libseat 5 | libudev-zero 6 | libxkbcommon 7 | linux-headers make 8 | mesa 9 | meson make 10 | pixman 11 | wayland 12 | wayland-protocols make 13 | -------------------------------------------------------------------------------- /wayland/wlroots/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/wlroots/wlroots/-/archive/0.17.1/wlroots-0.17.1.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/wlroots/version: -------------------------------------------------------------------------------- 1 | 0.17.1 1 2 | -------------------------------------------------------------------------------- /wayland/wlsunset/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | meson \ 4 | --prefix=/usr \ 5 | --buildtype=release \ 6 | . output 7 | 8 | ninja -C output 9 | ninja -C output install 10 | -------------------------------------------------------------------------------- /wayland/wlsunset/checksums: -------------------------------------------------------------------------------- 1 | a8c7719ae9b5e5f7d0e152f663f1bc206e70f927f8be506e61e128cd762b4c49b3 2 | -------------------------------------------------------------------------------- /wayland/wlsunset/depends: -------------------------------------------------------------------------------- 1 | meson make 2 | wayland 3 | wayland-protocols make 4 | -------------------------------------------------------------------------------- /wayland/wlsunset/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~kennylevinsen/wlsunset/archive/0.3.0.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/wlsunset/version: -------------------------------------------------------------------------------- 1 | 0.3.0 1 2 | -------------------------------------------------------------------------------- /xorg/libICE/checksums: -------------------------------------------------------------------------------- 1 | d4679a072a23e0621a3646917b0f0df97544cfa99fa32fb61ca73a8d921e1e1628 2 | -------------------------------------------------------------------------------- /xorg/libICE/depends: -------------------------------------------------------------------------------- 1 | pkgconf make 2 | xorgproto make 3 | xtrans make 4 | -------------------------------------------------------------------------------- /xorg/libICE/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libICE-1.1.1.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libICE/version: -------------------------------------------------------------------------------- 1 | 1.1.1 1 2 | -------------------------------------------------------------------------------- /xorg/libSM/checksums: -------------------------------------------------------------------------------- 1 | 1247e2d5ca3d85489b4edbc38060822ac7f6b9b1aed574b4f8f722f99d4bfa69e5 2 | -------------------------------------------------------------------------------- /xorg/libSM/depends: -------------------------------------------------------------------------------- 1 | libICE 2 | pkgconf make 3 | xtrans make 4 | -------------------------------------------------------------------------------- /xorg/libSM/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libSM-1.2.4.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libSM/version: -------------------------------------------------------------------------------- 1 | 1.2.4 1 2 | -------------------------------------------------------------------------------- /xorg/libX11/checksums: -------------------------------------------------------------------------------- 1 | fc9b5872df09a0f5e4e8e27831b3ea0d3b762c5fbb564d753cc2e50213d9a88308 2 | -------------------------------------------------------------------------------- /xorg/libX11/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | libxcb 3 | pkgconf make 4 | xorgproto 5 | xtrans make 6 | -------------------------------------------------------------------------------- /xorg/libX11/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libX11-1.8.4.tar.xz 2 | -------------------------------------------------------------------------------- /xorg/libX11/version: -------------------------------------------------------------------------------- 1 | 1.8.4 1 2 | -------------------------------------------------------------------------------- /xorg/libXScrnSaver/checksums: -------------------------------------------------------------------------------- 1 | 2485470742928328e03633a74b208ac05644f7074c34908e4c2c3a75fe6fe7929d 2 | -------------------------------------------------------------------------------- /xorg/libXScrnSaver/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXext 3 | pkgconf make 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /xorg/libXScrnSaver/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXScrnSaver-1.2.4.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXScrnSaver/version: -------------------------------------------------------------------------------- 1 | 1.2.4 1 2 | -------------------------------------------------------------------------------- /xorg/libXau/checksums: -------------------------------------------------------------------------------- 1 | a846a256114ec70661a45a263bad1cc7229f1bcf4b195c2cfe086449e65cdeb228 2 | -------------------------------------------------------------------------------- /xorg/libXau/depends: -------------------------------------------------------------------------------- 1 | pkgconf make 2 | xorgproto make 3 | -------------------------------------------------------------------------------- /xorg/libXau/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXau-1.0.11.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXau/version: -------------------------------------------------------------------------------- 1 | 1.0.11 1 2 | -------------------------------------------------------------------------------- /xorg/libXcomposite/checksums: -------------------------------------------------------------------------------- 1 | 78c2f6093f3d4b18cd716b896b91d496cf7d41b1d48365e48a09e9abdce50384fc 2 | -------------------------------------------------------------------------------- /xorg/libXcomposite/depends: -------------------------------------------------------------------------------- 1 | libXfixes 2 | pkgconf make 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /xorg/libXcomposite/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXcomposite-0.4.6.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXcomposite/version: -------------------------------------------------------------------------------- 1 | 0.4.6 1 2 | -------------------------------------------------------------------------------- /xorg/libXcursor/checksums: -------------------------------------------------------------------------------- 1 | 26a322123196adc8c5a09514d565b907b34cca67fe0824e09367efd65e75cf7d05 2 | -------------------------------------------------------------------------------- /xorg/libXcursor/depends: -------------------------------------------------------------------------------- 1 | libXfixes 2 | libXrender 3 | pkgconf make 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /xorg/libXcursor/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXcursor-1.2.1.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXcursor/version: -------------------------------------------------------------------------------- 1 | 1.2.1 1 2 | -------------------------------------------------------------------------------- /xorg/libXdamage/checksums: -------------------------------------------------------------------------------- 1 | 9463cd1ea6d89ed82e94e7d464621d6559f91b48cd7e16827f1ade8de59489a2fb 2 | -------------------------------------------------------------------------------- /xorg/libXdamage/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXfixes 3 | pkgconf make 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /xorg/libXdamage/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXdamage-1.1.6.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXdamage/version: -------------------------------------------------------------------------------- 1 | 1.1.6 1 2 | -------------------------------------------------------------------------------- /xorg/libXdmcp/checksums: -------------------------------------------------------------------------------- 1 | 38e3a64a3e38a3ffefb01c31dac17a6c78e3ac9ae38fd90ab588760522e866d554 2 | -------------------------------------------------------------------------------- /xorg/libXdmcp/depends: -------------------------------------------------------------------------------- 1 | pkgconf make 2 | xorgproto make 3 | -------------------------------------------------------------------------------- /xorg/libXdmcp/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXdmcp-1.1.4.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXdmcp/version: -------------------------------------------------------------------------------- 1 | 1.1.4 1 2 | -------------------------------------------------------------------------------- /xorg/libXext/checksums: -------------------------------------------------------------------------------- 1 | e1e3e1e8b27d980bfe1d7dd099204ed18472dafc6f4bb066ddea273e1286288946 2 | -------------------------------------------------------------------------------- /xorg/libXext/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | pkgconf make 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /xorg/libXext/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXext-1.3.5.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXext/version: -------------------------------------------------------------------------------- 1 | 1.3.5 1 2 | -------------------------------------------------------------------------------- /xorg/libXfixes/checksums: -------------------------------------------------------------------------------- 1 | 301a34d173d13e73f4e5712ecc5da6e3757bee7729fcd9b95515688bf6029ee03b 2 | -------------------------------------------------------------------------------- /xorg/libXfixes/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | pkgconf make 3 | -------------------------------------------------------------------------------- /xorg/libXfixes/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXfixes-6.0.1.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXfixes/version: -------------------------------------------------------------------------------- 1 | 6.0.1 1 2 | -------------------------------------------------------------------------------- /xorg/libXfont/checksums: -------------------------------------------------------------------------------- 1 | ed40672d69bbbe4bfa5d4d80be713785039ec4b158e1177e9b1db7c8c9cd22b2ac 2 | -------------------------------------------------------------------------------- /xorg/libXfont/depends: -------------------------------------------------------------------------------- 1 | freetype-harfbuzz 2 | libfontenc 3 | pkgconf make 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /xorg/libXfont/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXfont-1.5.4.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXfont/version: -------------------------------------------------------------------------------- 1 | 1.5.4 1 2 | -------------------------------------------------------------------------------- /xorg/libXfont2/checksums: -------------------------------------------------------------------------------- 1 | ab243ea8a5ef32d08c655f96abc4c323a1ad304eb8cf8d5c819185c73c9d611e55 2 | -------------------------------------------------------------------------------- /xorg/libXfont2/depends: -------------------------------------------------------------------------------- 1 | freetype-harfbuzz 2 | libfontenc 3 | pkgconf make 4 | xorgproto make 5 | xtrans make 6 | -------------------------------------------------------------------------------- /xorg/libXfont2/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXfont2-2.0.6.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXfont2/version: -------------------------------------------------------------------------------- 1 | 2.0.6 1 2 | -------------------------------------------------------------------------------- /xorg/libXft/checksums: -------------------------------------------------------------------------------- 1 | bcff239c6139ed140d45ed4358d430a910152929f7ecf9557db7eec454e268066d 2 | -------------------------------------------------------------------------------- /xorg/libXft/depends: -------------------------------------------------------------------------------- 1 | fontconfig make 2 | freetype-harfbuzz make 3 | libXrender make 4 | pkgconf make 5 | xorgproto make 6 | -------------------------------------------------------------------------------- /xorg/libXft/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXft-2.3.8.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXft/version: -------------------------------------------------------------------------------- 1 | 2.3.8 1 2 | -------------------------------------------------------------------------------- /xorg/libXi/checksums: -------------------------------------------------------------------------------- 1 | d87d342ea4e8b621e8f51d8c709257ab7b03240d996951cd79eedfeb1aa2f23013 2 | -------------------------------------------------------------------------------- /xorg/libXi/depends: -------------------------------------------------------------------------------- 1 | libXext 2 | libXfixes 3 | pkgconf make 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /xorg/libXi/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXi-1.8.1.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXi/version: -------------------------------------------------------------------------------- 1 | 1.8.1 1 2 | -------------------------------------------------------------------------------- /xorg/libXinerama/checksums: -------------------------------------------------------------------------------- 1 | 4275827cb3012d07b89cc7eacf695c15850a6df065228eae33bc5cef5ceba15bf6 2 | -------------------------------------------------------------------------------- /xorg/libXinerama/depends: -------------------------------------------------------------------------------- 1 | libXext 2 | pkgconf make 3 | xorgproto 4 | -------------------------------------------------------------------------------- /xorg/libXinerama/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXinerama-1.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXinerama/version: -------------------------------------------------------------------------------- 1 | 1.1.5 1 2 | -------------------------------------------------------------------------------- /xorg/libXmu/checksums: -------------------------------------------------------------------------------- 1 | 3291b244ae236c153b8e24889ddf2818c2153c9653fc8ff04e90b53039ecbf3562 2 | -------------------------------------------------------------------------------- /xorg/libXmu/depends: -------------------------------------------------------------------------------- 1 | libXext 2 | libXt 3 | pkgconf make 4 | xorg-util-macros make 5 | -------------------------------------------------------------------------------- /xorg/libXmu/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXmu-1.1.4.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXmu/version: -------------------------------------------------------------------------------- 1 | 1.1.4 1 2 | -------------------------------------------------------------------------------- /xorg/libXpresent/checksums: -------------------------------------------------------------------------------- 1 | f5ab362d1628033a30e812d37623d5f15e3177797510c01344da3c2632fb82bca6 2 | -------------------------------------------------------------------------------- /xorg/libXpresent/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | pkgconf make 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /xorg/libXpresent/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXpresent-1.0.1.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXpresent/version: -------------------------------------------------------------------------------- 1 | 1.0.1 1 2 | -------------------------------------------------------------------------------- /xorg/libXrandr/checksums: -------------------------------------------------------------------------------- 1 | 898f483a2723487d5878d3de67725d7db508c74c25364d64f0d6bc96aaa8f4d2f8 2 | -------------------------------------------------------------------------------- /xorg/libXrandr/depends: -------------------------------------------------------------------------------- 1 | libXext 2 | libXrender 3 | pkgconf make 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /xorg/libXrandr/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXrandr-1.5.3.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXrandr/version: -------------------------------------------------------------------------------- 1 | 1.5.3 1 2 | -------------------------------------------------------------------------------- /xorg/libXrender/checksums: -------------------------------------------------------------------------------- 1 | a81b16b0e483cccff3204a691a47e9d5959988d8852a47979503db06aa5a5114d4 2 | -------------------------------------------------------------------------------- /xorg/libXrender/depends: -------------------------------------------------------------------------------- 1 | libXext make 2 | pkgconf make 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /xorg/libXrender/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXrender-0.9.11.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXrender/version: -------------------------------------------------------------------------------- 1 | 0.9.11 1 2 | -------------------------------------------------------------------------------- /xorg/libXt/checksums: -------------------------------------------------------------------------------- 1 | e4b3451aaaba6325b7b992df42077630446c7c0161b1d8ddbfb52070bb39b5caf8 2 | -------------------------------------------------------------------------------- /xorg/libXt/depends: -------------------------------------------------------------------------------- 1 | libSM 2 | libX11 3 | pkgconf make 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /xorg/libXt/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXt-1.3.0.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXt/version: -------------------------------------------------------------------------------- 1 | 1.3.0 1 2 | -------------------------------------------------------------------------------- /xorg/libXtst/checksums: -------------------------------------------------------------------------------- 1 | 3a37593d9b6cacb4b471f0c1180937eab6ab336023856a26a8ae221d6cd6acbb32 2 | -------------------------------------------------------------------------------- /xorg/libXtst/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXau 3 | libXext 4 | libXi 5 | libxcb 6 | pkgconf make 7 | -------------------------------------------------------------------------------- /xorg/libXtst/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXtst-1.2.4.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXtst/version: -------------------------------------------------------------------------------- 1 | 1.2.4 1 2 | -------------------------------------------------------------------------------- /xorg/libXxf86vm/checksums: -------------------------------------------------------------------------------- 1 | 9b984ff6785a50e2d863c6ab74e1507a7a200b9b25077eb0fabcf0776c07efd23b 2 | -------------------------------------------------------------------------------- /xorg/libXxf86vm/depends: -------------------------------------------------------------------------------- 1 | libXext make 2 | pkgconf make 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /xorg/libXxf86vm/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXxf86vm-1.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libXxf86vm/version: -------------------------------------------------------------------------------- 1 | 1.1.5 1 2 | -------------------------------------------------------------------------------- /xorg/libfontenc/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr \ 8 | --with-fontrootdir=/usr/share/fonts/X11 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /xorg/libfontenc/checksums: -------------------------------------------------------------------------------- 1 | 282ef1c086a10bb0361d50c75ca9a0baa0a4ed4f7c5ba475c93772dbb08c2a6df3 2 | -------------------------------------------------------------------------------- /xorg/libfontenc/depends: -------------------------------------------------------------------------------- 1 | pkgconf make 2 | xorgproto make 3 | zlib 4 | -------------------------------------------------------------------------------- /xorg/libfontenc/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libfontenc-1.1.8.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libfontenc/version: -------------------------------------------------------------------------------- 1 | 1.1.8 1 2 | -------------------------------------------------------------------------------- /xorg/libxcb/checksums: -------------------------------------------------------------------------------- 1 | 495bd4eae158a7d551172f1eabb102229d13347ae3b4cbc8a875a92396f00bc716 2 | -------------------------------------------------------------------------------- /xorg/libxcb/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | pkgconf make 3 | python make 4 | xcb-proto 5 | xorg-util-macros 6 | -------------------------------------------------------------------------------- /xorg/libxcb/sources: -------------------------------------------------------------------------------- 1 | https://xorg.freedesktop.org/archive/individual/lib/libxcb-1.16.1.tar.xz 2 | -------------------------------------------------------------------------------- /xorg/libxcb/version: -------------------------------------------------------------------------------- 1 | 1.16.1 1 2 | -------------------------------------------------------------------------------- /xorg/libxcvt/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | meson setup \ 6 | -Dprefix=/usr \ 7 | output 8 | 9 | ninja -C output 10 | ninja -C output install 11 | -------------------------------------------------------------------------------- /xorg/libxcvt/checksums: -------------------------------------------------------------------------------- 1 | ccbe63a8b68a581aea632da0e867b605d890847eb91b468c930ba7ded7bb7a95f3 2 | -------------------------------------------------------------------------------- /xorg/libxcvt/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | meson make 3 | pkgconf make 4 | python make 5 | samurai make 6 | xcb-proto 7 | xorg-util-macros 8 | -------------------------------------------------------------------------------- /xorg/libxcvt/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libxcvt-0.1.2.tar.xz 2 | -------------------------------------------------------------------------------- /xorg/libxcvt/version: -------------------------------------------------------------------------------- 1 | 0.1.2 1 2 | -------------------------------------------------------------------------------- /xorg/libxkbfile/checksums: -------------------------------------------------------------------------------- 1 | e940155f90be437b7fd99fdfd673c6b93e8cb0d8fd73776e046a30193e3d224d17 2 | -------------------------------------------------------------------------------- /xorg/libxkbfile/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | pkgconf make 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /xorg/libxkbfile/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libxkbfile-1.1.3.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libxkbfile/version: -------------------------------------------------------------------------------- 1 | 1.1.3 1 2 | -------------------------------------------------------------------------------- /xorg/libxshmfence/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr \ 8 | --with-shared-memory-dir=/dev/shm 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /xorg/libxshmfence/checksums: -------------------------------------------------------------------------------- 1 | 1db5f7002e58f0260d96fe40a6d694d3f08fb383840ac24f1d724cc979bfff60c1 2 | -------------------------------------------------------------------------------- /xorg/libxshmfence/depends: -------------------------------------------------------------------------------- 1 | pkgconf make 2 | xorgproto make 3 | -------------------------------------------------------------------------------- /xorg/libxshmfence/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libxshmfence-1.3.2.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/libxshmfence/version: -------------------------------------------------------------------------------- 1 | 1.3.2 1 2 | -------------------------------------------------------------------------------- /xorg/setxkbmap/checksums: -------------------------------------------------------------------------------- 1 | 89d10e316545c854ab6522cf2a944a282cd078a8cac83809f0a4e02e6d40dd441d 2 | -------------------------------------------------------------------------------- /xorg/setxkbmap/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libxkbfile 3 | pkgconf make 4 | -------------------------------------------------------------------------------- /xorg/setxkbmap/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/setxkbmap-1.3.4.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/setxkbmap/version: -------------------------------------------------------------------------------- 1 | 1.3.4 1 2 | -------------------------------------------------------------------------------- /xorg/sowm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | make 7 | make install 8 | -------------------------------------------------------------------------------- /xorg/sowm/checksums: -------------------------------------------------------------------------------- 1 | b25d810b6e9c6512492d8f1859084a64bdab14d052760e7ba6bd0204d31c1efbc3 2 | -------------------------------------------------------------------------------- /xorg/sowm/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | -------------------------------------------------------------------------------- /xorg/sowm/sources: -------------------------------------------------------------------------------- 1 | https://github.com/dylanaraps/sowm/archive/1.6.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/sowm/version: -------------------------------------------------------------------------------- 1 | 1.6 1 2 | -------------------------------------------------------------------------------- /xorg/st/checksums: -------------------------------------------------------------------------------- 1 | b61834181186c9c7b740b2feb8a0d39c99d6c15b5076a29862fc0bb3c89f27aa9e 2 | -------------------------------------------------------------------------------- /xorg/st/depends: -------------------------------------------------------------------------------- 1 | fontconfig 2 | libX11 3 | libXft 4 | ncurses make 5 | pkgconf make 6 | -------------------------------------------------------------------------------- /xorg/st/sources: -------------------------------------------------------------------------------- 1 | https://dl.suckless.org/st/st-0.9.tar.gz -------------------------------------------------------------------------------- /xorg/st/version: -------------------------------------------------------------------------------- 1 | 0.9 1 2 | -------------------------------------------------------------------------------- /xorg/sx/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make PREFIX=/usr DESTDIR="$1" install 4 | -------------------------------------------------------------------------------- /xorg/sx/checksums: -------------------------------------------------------------------------------- 1 | 3b9b9fdbd19eae6b460fbb6db026aa448d4c5b5f810cd6929e7cc3b806cb70426c 2 | -------------------------------------------------------------------------------- /xorg/sx/depends: -------------------------------------------------------------------------------- 1 | xauth 2 | xorg-server 3 | -------------------------------------------------------------------------------- /xorg/sx/sources: -------------------------------------------------------------------------------- 1 | https://github.com/Earnestly/sx/archive/refs/tags/2.1.7.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/sx/version: -------------------------------------------------------------------------------- 1 | 2.1.7 1 2 | -------------------------------------------------------------------------------- /xorg/tinyx/checksums: -------------------------------------------------------------------------------- 1 | 78fb9658f2ce79b689d57ae9dc3f9a19e4d0cb859a8d5b404f660eaa2b36a68eac 2 | -------------------------------------------------------------------------------- /xorg/tinyx/depends: -------------------------------------------------------------------------------- 1 | autoconf 2 | freetype-harfbuzz 3 | libXdmcp 4 | libXfont 5 | libXtst 6 | libfontenc 7 | libpng 8 | zlib 9 | libtool 10 | xtrans 11 | -------------------------------------------------------------------------------- /xorg/tinyx/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/tinycorelinux/tinyx.git 2 | https://github.com/kyx0r/repo-main/releases/download/tinyxfont_1.0/tinyxfont.tar.gz 3 | -------------------------------------------------------------------------------- /xorg/tinyx/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /xorg/xauth/checksums: -------------------------------------------------------------------------------- 1 | 02c8468a8f54f0a51aa539df1c6e73390003fecb2858a2ab95031b633cd053df32 2 | -------------------------------------------------------------------------------- /xorg/xauth/depends: -------------------------------------------------------------------------------- 1 | libXmu 2 | pkgconf make 3 | xorg-util-macros make 4 | -------------------------------------------------------------------------------- /xorg/xauth/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xauth-1.1.3.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xauth/version: -------------------------------------------------------------------------------- 1 | 1.1.3 1 2 | -------------------------------------------------------------------------------- /xorg/xbitmaps/checksums: -------------------------------------------------------------------------------- 1 | 709594d1b9a9573ff882798dba672040348ff413f4bd0087d06bb6b7745ad9d596 2 | -------------------------------------------------------------------------------- /xorg/xbitmaps/depends: -------------------------------------------------------------------------------- 1 | xorg-util-macros make 2 | -------------------------------------------------------------------------------- /xorg/xbitmaps/sources: -------------------------------------------------------------------------------- 1 | https://x.org/archive//individual/data/xbitmaps-1.1.3.tar.xz 2 | -------------------------------------------------------------------------------- /xorg/xbitmaps/version: -------------------------------------------------------------------------------- 1 | 1.1.3 1 2 | -------------------------------------------------------------------------------- /xorg/xcb-proto/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr 8 | 9 | make 10 | make install 11 | -------------------------------------------------------------------------------- /xorg/xcb-proto/checksums: -------------------------------------------------------------------------------- 1 | 2117ae3c1730586cb7bdaae6e8ba5e0ec3d5ee423d1387a59b3865f812953483d0 2 | -------------------------------------------------------------------------------- /xorg/xcb-proto/depends: -------------------------------------------------------------------------------- 1 | python make 2 | -------------------------------------------------------------------------------- /xorg/xcb-proto/sources: -------------------------------------------------------------------------------- 1 | https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-1.16.0.tar.xz 2 | -------------------------------------------------------------------------------- /xorg/xcb-proto/version: -------------------------------------------------------------------------------- 1 | 1.16.0 1 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-cursor/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr \ 8 | --disable-static 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /xorg/xcb-util-cursor/checksums: -------------------------------------------------------------------------------- 1 | 23888f843c896ef2f6087540bcca1f5451c400d5628f9898505e17c74ff887d2c7 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-cursor/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | libxcb 3 | m4 make 4 | pkgconf make 5 | xcb-util 6 | xcb-util-image 7 | xcb-util-renderutil 8 | -------------------------------------------------------------------------------- /xorg/xcb-util-cursor/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-cursor-0.1.4.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-cursor/version: -------------------------------------------------------------------------------- 1 | 0.1.4 1 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-image/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr \ 8 | --disable-static 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /xorg/xcb-util-image/checksums: -------------------------------------------------------------------------------- 1 | 9aca6977c5fde46aa188c394c36389fc16e78fd6db5b88ea263abd98c7d9e3fbe2 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-image/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | libxcb 3 | pkgconf make 4 | xcb-util 5 | -------------------------------------------------------------------------------- /xorg/xcb-util-image/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-image-0.4.1.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-image/version: -------------------------------------------------------------------------------- 1 | 0.4.1 1 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-keysyms/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr \ 8 | --disable-static 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /xorg/xcb-util-keysyms/checksums: -------------------------------------------------------------------------------- 1 | 5c126cf650ea3853c788eb821a87ee4e07148eed381981b7027b1e95f036a3058d 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-keysyms/depends: -------------------------------------------------------------------------------- 1 | libxcb 2 | pkgconf make 3 | xcb-util make 4 | -------------------------------------------------------------------------------- /xorg/xcb-util-keysyms/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-keysyms-0.4.1.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-keysyms/version: -------------------------------------------------------------------------------- 1 | 0.4.1 1 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-renderutil/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr \ 8 | --disable-static 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /xorg/xcb-util-renderutil/checksums: -------------------------------------------------------------------------------- 1 | d922f02ad7e2034d4429c7328648382caa74ff32523cf9cc5e34e6aab8a45bd064 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-renderutil/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | libxcb 3 | pkgconf make 4 | -------------------------------------------------------------------------------- /xorg/xcb-util-renderutil/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-renderutil-0.3.10.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-renderutil/version: -------------------------------------------------------------------------------- 1 | 0.3.10 1 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-wm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr \ 8 | --disable-static 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /xorg/xcb-util-wm/checksums: -------------------------------------------------------------------------------- 1 | 9f20b453bd46c4847a3a8b6343c17187504fb3cf158b35a9da64d8dfe016d6e71b 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-wm/depends: -------------------------------------------------------------------------------- 1 | libxcb 2 | m4 make 3 | pkgconf make 4 | xcb-util make 5 | -------------------------------------------------------------------------------- /xorg/xcb-util-wm/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-wm-0.4.2.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xcb-util-wm/version: -------------------------------------------------------------------------------- 1 | 0.4.2 1 2 | -------------------------------------------------------------------------------- /xorg/xcb-util/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr \ 8 | --disable-static 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /xorg/xcb-util/checksums: -------------------------------------------------------------------------------- 1 | ae4f8ffe9997e4d402cfb5377ca14bf2c56f327819d3abed11a1304c5d805b251b 2 | -------------------------------------------------------------------------------- /xorg/xcb-util/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | libxcb 3 | pkgconf make 4 | -------------------------------------------------------------------------------- /xorg/xcb-util/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-0.4.1.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xcb-util/version: -------------------------------------------------------------------------------- 1 | 0.4.1 1 2 | -------------------------------------------------------------------------------- /xorg/xdpyinfo/checksums: -------------------------------------------------------------------------------- 1 | 7e94e3d469aa1f418321fda485353b03f8983e3e2d231154b88c7ced581a63ebcb 2 | -------------------------------------------------------------------------------- /xorg/xdpyinfo/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXext 3 | libXi 4 | libXinerama 5 | libXrender 6 | libXtst 7 | libXxf86vm 8 | libxcb 9 | xorg-util-macros make 10 | xorgproto make 11 | -------------------------------------------------------------------------------- /xorg/xdpyinfo/sources: -------------------------------------------------------------------------------- 1 | https://xorg.freedesktop.org/archive/individual/app/xdpyinfo-1.3.4.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xdpyinfo/version: -------------------------------------------------------------------------------- 1 | 1.3.4 1 2 | -------------------------------------------------------------------------------- /xorg/xev/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr 8 | 9 | make 10 | make install 11 | -------------------------------------------------------------------------------- /xorg/xev/checksums: -------------------------------------------------------------------------------- 1 | e01dc4d13187992d36b2bb9cff11981c35df63647ffff44cd14b30c5abe1d05322 2 | -------------------------------------------------------------------------------- /xorg/xev/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXrandr 3 | pkgconf make 4 | xorg-util-macros make 5 | xorgproto make 6 | -------------------------------------------------------------------------------- /xorg/xev/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xev-1.2.6.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xev/version: -------------------------------------------------------------------------------- 1 | 1.2.6 1 2 | -------------------------------------------------------------------------------- /xorg/xf86-input-libinput/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr 8 | 9 | make 10 | make install 11 | -------------------------------------------------------------------------------- /xorg/xf86-input-libinput/checksums: -------------------------------------------------------------------------------- 1 | bbaeb804219d88c7db4268434822f4f325c90b79d65628edd7516a7a8cead1ffa6 2 | -------------------------------------------------------------------------------- /xorg/xf86-input-libinput/depends: -------------------------------------------------------------------------------- 1 | libinput 2 | linux-headers make 3 | pkgconf make 4 | xorg-server 5 | -------------------------------------------------------------------------------- /xorg/xf86-input-libinput/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/driver/xf86-input-libinput-1.3.0.tar.xz 2 | -------------------------------------------------------------------------------- /xorg/xf86-input-libinput/version: -------------------------------------------------------------------------------- 1 | 1.3.0 1 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-amdgpu/checksums: -------------------------------------------------------------------------------- 1 | 556614cd45c3d1d7950552bbeba59137358166c77e80c4653d89a3e993737896c5 2 | 39663ff0b374c396af9e024aa6b21439732754ef90569176ead202dd6114277ee4 3 | -------------------------------------------------------------------------------- /xorg/xf86-video-amdgpu/depends: -------------------------------------------------------------------------------- 1 | expat 2 | libdrm 3 | libpciaccess 4 | linux-headers make 5 | mesa 6 | pkgconf make 7 | xorgproto 8 | -------------------------------------------------------------------------------- /xorg/xf86-video-amdgpu/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/driver/xf86-video-amdgpu-23.0.0.tar.xz 2 | patches/rootless_modesetting.patch 3 | -------------------------------------------------------------------------------- /xorg/xf86-video-amdgpu/version: -------------------------------------------------------------------------------- 1 | 23.0.0 1 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-ati/checksums: -------------------------------------------------------------------------------- 1 | 837e76a5a0217c593a6f546e92e0e46ff7cac36381b14fc8d2bf83e7a235f0f9c9 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-ati/depends: -------------------------------------------------------------------------------- 1 | automake make 2 | autoconf make 3 | expat 4 | libdrm 5 | libpciaccess 6 | pkgconf make 7 | mesa 8 | xorgproto 9 | -------------------------------------------------------------------------------- /xorg/xf86-video-ati/sources: -------------------------------------------------------------------------------- 1 | https://xorg.freedesktop.org/archive/individual/driver/xf86-video-ati-22.0.0.tar.xz 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-ati/version: -------------------------------------------------------------------------------- 1 | 22.0.0 1 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-intel/checksums: -------------------------------------------------------------------------------- 1 | 1d5cffdda1c5ba06b00c01d065ccd2051e5525c0ff02e589798aad464865b4e810 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-intel/depends: -------------------------------------------------------------------------------- 1 | libXScrnSaver 2 | libXcursor 3 | libXinerama 4 | libXrandr 5 | libXtst 6 | linux-headers make 7 | meson make 8 | pkgconf make 9 | xorg-server 10 | -------------------------------------------------------------------------------- /xorg/xf86-video-intel/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/xorg/driver/xf86-video-intel/-/archive/31486f40f8e8f8923ca0799aea84b58799754564/xf86-video-intel-31486f40f8e8f8923ca0799aea84b58799754564.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-intel/version: -------------------------------------------------------------------------------- 1 | 31486f40f8e8f8923ca0799aea84b58799754564 1 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-nouveau/depends: -------------------------------------------------------------------------------- 1 | libdrm 2 | linux-headers make 3 | pkgconf make 4 | xorgproto 5 | -------------------------------------------------------------------------------- /xorg/xf86-video-nouveau/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/driver/xf86-video-nouveau-1.0.17.tar.bz2 2 | patches/rootless_modesetting.patch 3 | patches/fix-xorg-21.1.diff 4 | -------------------------------------------------------------------------------- /xorg/xf86-video-nouveau/version: -------------------------------------------------------------------------------- 1 | 1.0.17 1 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-vesa/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | export LDFLAGS="-Wl,-z,lazy" 7 | 8 | ./configure \ 9 | --prefix=/usr 10 | 11 | make 12 | make install 13 | -------------------------------------------------------------------------------- /xorg/xf86-video-vesa/checksums: -------------------------------------------------------------------------------- 1 | ad80f88905426e59c5b683a262d0ad97689e6e32a08aa2455b2938f9971b731af4 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-vesa/depends: -------------------------------------------------------------------------------- 1 | libXi 2 | pkgconf make 3 | xorg-util-macros make 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /xorg/xf86-video-vesa/sources: -------------------------------------------------------------------------------- 1 | https://xorg.freedesktop.org/releases/individual/driver/xf86-video-vesa-2.6.0.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xf86-video-vesa/version: -------------------------------------------------------------------------------- 1 | 2.6.0 1 2 | -------------------------------------------------------------------------------- /xorg/xinit/checksums: -------------------------------------------------------------------------------- 1 | 7d76a993b23a57af1700350330e9e564e27c9a8f21ab1223a9052570e9851a4114 2 | -------------------------------------------------------------------------------- /xorg/xinit/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | pkgconf make 3 | -------------------------------------------------------------------------------- /xorg/xinit/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xinit-1.4.2.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xinit/version: -------------------------------------------------------------------------------- 1 | 1.4.2 1 2 | -------------------------------------------------------------------------------- /xorg/xinput/checksums: -------------------------------------------------------------------------------- 1 | 1a52a321a16e3afe66d325fb5a6d9bec67a8d5ef568e81d5cf7a711ab63d4aa40a 2 | -------------------------------------------------------------------------------- /xorg/xinput/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXi 3 | libXinerama 4 | libXmu 5 | pkgconf make 6 | -------------------------------------------------------------------------------- /xorg/xinput/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xinput-1.6.4.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xinput/version: -------------------------------------------------------------------------------- 1 | 1.6.4 1 2 | -------------------------------------------------------------------------------- /xorg/xkbcomp/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | 6 | ./configure \ 7 | --prefix=/usr 8 | 9 | make 10 | make install 11 | -------------------------------------------------------------------------------- /xorg/xkbcomp/checksums: -------------------------------------------------------------------------------- 1 | 1398a8204b1ab89968aa6c4f56a1ac38ae820caee7e0b1220edeb6c5d56234e914 2 | -------------------------------------------------------------------------------- /xorg/xkbcomp/depends: -------------------------------------------------------------------------------- 1 | libX11 make 2 | libxkbfile make 3 | pkgconf make 4 | -------------------------------------------------------------------------------- /xorg/xkbcomp/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xkbcomp-1.4.7.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xkbcomp/version: -------------------------------------------------------------------------------- 1 | 1.4.7 1 2 | -------------------------------------------------------------------------------- /xorg/xkeyboard-config/checksums: -------------------------------------------------------------------------------- 1 | 0efee51b134827e2b076a3e42a8950a598ab63ab74ebb2ac4a53bf09de8e1c9551 2 | eeba110163cd65a614b0ad4f15615c0faec6dcc9201a9257ba406445dac7095c1b 3 | -------------------------------------------------------------------------------- /xorg/xkeyboard-config/depends: -------------------------------------------------------------------------------- 1 | libX11 make 2 | meson make 3 | pkgconf make 4 | python make 5 | samurai make 6 | xkbcomp 7 | -------------------------------------------------------------------------------- /xorg/xkeyboard-config/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/data/xkeyboard-config/xkeyboard-config-2.41.tar.xz 2 | files/xml2lst rules 3 | -------------------------------------------------------------------------------- /xorg/xkeyboard-config/version: -------------------------------------------------------------------------------- 1 | 2.41 1 2 | -------------------------------------------------------------------------------- /xorg/xorg-server/checksums: -------------------------------------------------------------------------------- 1 | 43249c24b0d13970698fab2aefd33dd0a5b83ee2899e13ab2bd941e23e2e6f591c 2 | c2e28cedb8528795b222d50b3d49bf833f5c56211dc34d830f3aa83665dbba8fd4 3 | -------------------------------------------------------------------------------- /xorg/xorg-server/sources: -------------------------------------------------------------------------------- 1 | https://x.org/archive/individual/xserver/xorg-server-21.1.11.tar.xz 2 | patches/rootless_modesetting.patch 3 | -------------------------------------------------------------------------------- /xorg/xorg-server/version: -------------------------------------------------------------------------------- 1 | 21.1.11 1 2 | -------------------------------------------------------------------------------- /xorg/xorg-util-macros/checksums: -------------------------------------------------------------------------------- 1 | cfd9960e84fba07349a897851e5e0ccd2b46bde9ba49a4d78ee78f427620c2f531 2 | -------------------------------------------------------------------------------- /xorg/xorg-util-macros/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/util/util-macros-1.20.0.tar.xz 2 | -------------------------------------------------------------------------------- /xorg/xorg-util-macros/version: -------------------------------------------------------------------------------- 1 | 1.20.0 1 2 | -------------------------------------------------------------------------------- /xorg/xorgproto/checksums: -------------------------------------------------------------------------------- 1 | 1e108dfcfcf6d19b31fa06619f1eeb3f4df036af12f015f1a03d9791bfcf075456 2 | -------------------------------------------------------------------------------- /xorg/xorgproto/sources: -------------------------------------------------------------------------------- 1 | https://xorg.freedesktop.org/archive/individual/proto/xorgproto-2023.2.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xorgproto/version: -------------------------------------------------------------------------------- 1 | 2023.2 1 2 | -------------------------------------------------------------------------------- /xorg/xprop/checksums: -------------------------------------------------------------------------------- 1 | 832499a0359c9f09618cf1d3b3b2e362b6ef9712e442a9d0304ef485c929e266a5 2 | -------------------------------------------------------------------------------- /xorg/xprop/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXmu 3 | pkgconf make 4 | -------------------------------------------------------------------------------- /xorg/xprop/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xprop-1.2.7.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xprop/version: -------------------------------------------------------------------------------- 1 | 1.2.7 1 2 | -------------------------------------------------------------------------------- /xorg/xrandr/checksums: -------------------------------------------------------------------------------- 1 | 52b5e24860e8dbf79e695f4b31d6edfa10f9b337da13bf0901988f049f89ca40cb 2 | -------------------------------------------------------------------------------- /xorg/xrandr/depends: -------------------------------------------------------------------------------- 1 | libXrandr 2 | pkgconf make 3 | xorg-util-macros make 4 | -------------------------------------------------------------------------------- /xorg/xrandr/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xrandr-1.5.2.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xrandr/version: -------------------------------------------------------------------------------- 1 | 1.5.2 1 2 | -------------------------------------------------------------------------------- /xorg/xrdb/checksums: -------------------------------------------------------------------------------- 1 | d2422d8971bed90ed48052076747fa9ef8c252d79c9714b5a283fa72cf7edcfb3e 2 | -------------------------------------------------------------------------------- /xorg/xrdb/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXmu 3 | pkgconf make 4 | xorg-util-macros make 5 | -------------------------------------------------------------------------------- /xorg/xrdb/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xrdb-1.2.2.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xrdb/version: -------------------------------------------------------------------------------- 1 | 1.2.2 1 2 | -------------------------------------------------------------------------------- /xorg/xrectsel/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ${CC:-cc} -o xrectsel xrectsel.c strtonum.c -lX11 4 | install -Dt "$1/usr/bin" xrectsel 5 | -------------------------------------------------------------------------------- /xorg/xrectsel/checksums: -------------------------------------------------------------------------------- 1 | 18322a8f89fe30326deed2ea0dcab758594516c691ff643d19a16f5e8262eabc50 2 | -------------------------------------------------------------------------------- /xorg/xrectsel/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | -------------------------------------------------------------------------------- /xorg/xrectsel/sources: -------------------------------------------------------------------------------- 1 | https://github.com/gvalkov/xrectsel/archive/refs/tags/v1.1.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xrectsel/version: -------------------------------------------------------------------------------- 1 | 1.1 1 2 | -------------------------------------------------------------------------------- /xorg/xset/checksums: -------------------------------------------------------------------------------- 1 | 78c20f34cb430672c2b048f97209abaffef0c60d0e6006ef2bcd81e9ac899d2c69 2 | -------------------------------------------------------------------------------- /xorg/xset/depends: -------------------------------------------------------------------------------- 1 | libXmu 2 | pkgconf make 3 | xorg-util-macros make 4 | -------------------------------------------------------------------------------- /xorg/xset/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xset-1.2.5.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xset/version: -------------------------------------------------------------------------------- 1 | 1.2.5 1 2 | -------------------------------------------------------------------------------- /xorg/xsetroot/checksums: -------------------------------------------------------------------------------- 1 | e888590bd65462ad3c987262ae008bd9d66274d35572a0a8712d16c8d25418306d 2 | -------------------------------------------------------------------------------- /xorg/xsetroot/depends: -------------------------------------------------------------------------------- 1 | libXcursor 2 | libXfixes 3 | libXmu 4 | libXrender 5 | pkgconf make 6 | xbitmaps 7 | -------------------------------------------------------------------------------- /xorg/xsetroot/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xsetroot-1.1.3.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xsetroot/version: -------------------------------------------------------------------------------- 1 | 1.1.3 1 2 | -------------------------------------------------------------------------------- /xorg/xtrans/checksums: -------------------------------------------------------------------------------- 1 | f6aa5dc41f63e0e841c8006a805622d7cf66fccfc73cd9cb6f62be8d86df7ee9bf 2 | -------------------------------------------------------------------------------- /xorg/xtrans/depends: -------------------------------------------------------------------------------- 1 | pkgconf make 2 | -------------------------------------------------------------------------------- /xorg/xtrans/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/xtrans-1.5.0.tar.gz 2 | -------------------------------------------------------------------------------- /xorg/xtrans/version: -------------------------------------------------------------------------------- 1 | 1.5.0 2 2 | --------------------------------------------------------------------------------