├── README.md ├── core ├── baseinit │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── baselayout │ ├── README │ ├── build │ ├── checksums │ ├── files │ │ ├── crypttab │ │ ├── fstab │ │ ├── group │ │ ├── host.conf │ │ ├── hosts │ │ ├── issue │ │ ├── mime.types │ │ ├── os-release │ │ ├── passwd │ │ ├── profile │ │ ├── securetty │ │ ├── shadow │ │ └── shells │ ├── sources │ └── version ├── bison │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── busybox │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── .config │ │ ├── .config-suid │ │ ├── acpid.run │ │ ├── crond.run │ │ ├── mdev.conf │ │ ├── mdev.run │ │ ├── ntpd.run │ │ └── syslogd.run │ ├── patches │ │ ├── adduser-no-setgid.patch │ │ ├── fsck-resolve-uuid.patch │ │ ├── init-use-baseinit.patch │ │ ├── install-fix-chown.patch │ │ ├── lsusb-vendor-product.patch │ │ ├── modprobe-kernel-version.patch │ │ ├── print-unicode.patch │ │ └── unzip-usage-no-error.patch │ ├── sources │ └── version ├── bzip2 │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── certs │ ├── build │ ├── checksums │ ├── sources │ └── version ├── curl │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── flex │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── git │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── kiss │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── linux-headers │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── llvm │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── Distribution-stage2.cmake │ │ ├── Distribution.cmake │ │ └── c99 │ ├── patches │ │ └── glasnost.patch │ ├── sources │ └── version ├── m4 │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── make │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── musl │ ├── README │ ├── build │ ├── checksums │ ├── files │ │ ├── cdefs.h │ │ ├── getconf.c │ │ ├── getent.c │ │ ├── queue.h │ │ └── tree.h │ ├── sources │ └── version ├── openssl │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── pigz │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xz │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version └── zlib │ ├── README │ ├── build │ ├── checksums │ ├── patches │ └── cross.patch │ ├── sources │ └── version ├── extra ├── alsa-lib │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── clang16.patch │ │ └── fix-dlo.patch │ ├── sources │ └── version ├── alsa-utils │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── aria2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── autoconf │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── automake │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── baseinit │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── bash │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── btrfs-progs │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── clang.patch │ ├── sources │ └── version ├── cairo │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── cbindgen │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── cmake │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── kiss-cmake-config │ ├── sources │ └── version ├── dhcpcd │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── dhcpcd.run │ ├── sources │ └── version ├── dosfstools │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── e2fsprogs │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── efibootmgr │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── efivar │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-add-needed.patch │ ├── sources │ └── version ├── exfatprogs │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── expat │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── f2fs-tools │ ├── build │ ├── checksums │ ├── sources │ └── version ├── ffmpeg │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── ppc64.patch │ ├── sources │ └── version ├── file │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── findutils │ ├── build │ ├── checksums │ ├── sources │ └── version ├── firefox-privacy │ ├── README │ ├── build │ ├── checksums │ ├── files │ │ ├── policies.json │ │ └── vendor.js │ ├── sources │ └── version ├── firefox │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── stab.h │ ├── patches │ │ ├── avoid-redefinition.patch │ │ ├── disable-moz-stackwalk.patch │ │ ├── fix-clang-as.patch │ │ ├── fix-debug.patch │ │ ├── fix-fortify-system-wrappers.patch │ │ ├── fix-linux-header.patch │ │ ├── fix-ppc-clang-asm.patch │ │ ├── fix-rust-target.patch │ │ ├── fix-webrtc-glibcisms.patch │ │ ├── mallinfo.patch │ │ ├── no-fribidi.patch │ │ ├── no-x11.patch │ │ ├── sandbox-fork.patch │ │ ├── sandbox-largefile.patch │ │ └── sandbox-sched_setscheduler.patch │ ├── post-install │ ├── sources │ └── version ├── flac │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── fontconfig │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── fcobjshash.h │ ├── patches │ │ └── nojsonc.patch │ ├── post-install │ ├── sources │ └── version ├── freetype-harfbuzz │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gdk-pixbuf │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── giflib │ ├── build │ ├── checksums │ ├── sources │ └── version ├── glib │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gnugrep │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── gnupg1 │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── go │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gperf │ ├── build │ ├── checksums │ ├── sources │ └── version ├── gtk+3 │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── 01-no-fribidi.patch │ │ ├── 02-fix-firefox.patch │ │ └── 03-no-accessibility.patch │ ├── post-install │ ├── sources │ └── version ├── hicolor-icon-theme │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── htop │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── icu │ ├── build │ ├── checksums │ ├── sources │ └── version ├── intel-vaapi-driver │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── json-c │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── clang.patch │ ├── sources │ └── version ├── kirc │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── lame │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libass │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-fribidi.patch │ ├── sources │ └── version ├── libelf │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── musl.patch │ ├── sources │ └── version ├── libepoxy │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── liberation-fonts │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libevent │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libexecinfo │ ├── build │ ├── checksums │ ├── patches │ │ ├── 01-execinfo.patch │ │ ├── 02-makefile.patch │ │ ├── 03-define-gnu-source.patch │ │ ├── libexecinfo_pc.patch │ │ └── make.patch │ ├── sources │ └── version ├── libffi │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libglvnd │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libgpg-error │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libjpeg-turbo │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-docs.patch │ ├── sources │ └── version ├── libnvme │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libogg │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libpng │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── apng.patch │ ├── sources │ └── version ├── libretls │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libslirp │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libtheora │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── config.sub │ ├── patches │ │ ├── fix-theoraenc.patch │ │ └── libtheora-1.1.1-libpng16.patch │ ├── sources │ └── version ├── libtirpc │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libtool │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libudev-zero │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libva-utils │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libva-v4l2-request │ ├── build │ ├── depends │ ├── sources │ └── version ├── libva │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── undef.patch │ ├── sources │ └── version ├── libvorbis │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libvpx │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── vp8_rtcd.h │ │ ├── vp9_rtcd.h │ │ ├── vpx_dsp_rtcd.h │ │ └── vpx_scale_rtcd.h │ ├── sources │ └── version ├── libwebp │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libxml2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libyaml │ ├── build │ ├── checksums │ ├── manifest │ ├── sources │ └── version ├── links2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── lzip │ ├── build │ ├── checksums │ ├── sources │ └── version ├── lzo │ ├── build │ ├── checksums │ ├── sources │ └── version ├── man-pages │ ├── README │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── mandoc │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── mandoc-no-warn.patch │ ├── sources │ └── version ├── mdevd │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── mdevd.conf │ │ └── mdevd.run │ ├── patches │ │ └── cross.patch │ ├── sources │ └── version ├── mesa │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── wayland.patch │ ├── sources │ └── version ├── meson │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── kiss-meson-config │ ├── sources │ └── version ├── mpv │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── nano │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── nasm │ ├── build │ ├── checksums │ ├── sources │ └── version ├── ncurses │ ├── build │ ├── checksums │ ├── sources │ └── version ├── nettle │ ├── build │ ├── checksums │ ├── sources │ └── version ├── nmap │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── nodejs │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── nspr │ ├── build │ ├── checksums │ ├── sources │ └── version ├── nss │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── certdata.sh │ │ └── generated.hash │ ├── patches │ │ ├── native-nsinstall-cflags.patch │ │ ├── no-perl.patch │ │ └── respect-ldflags.patch │ ├── sources │ └── version ├── nvme-cli │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── opendoas │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── doas.conf │ ├── sources │ └── version ├── openresolv │ ├── build │ ├── checksums │ ├── sources │ └── version ├── openssh │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── sshd.run │ ├── post-install │ ├── sources │ └── version ├── opus │ ├── build │ ├── checksums │ ├── sources │ └── version ├── p11-kit │ ├── build │ ├── checksums │ ├── sources │ └── version ├── pango │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-fribidi.patch │ ├── sources │ └── version ├── patchelf │ ├── build │ ├── checksums │ ├── sources │ └── version ├── pciutils │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── pcre │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── pcre2 │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── perl │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── pfetch │ ├── build │ ├── checksums │ ├── sources │ └── version ├── picocom │ ├── build │ ├── sources │ └── version ├── pkgconf │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── plzip │ ├── build │ ├── checksums │ ├── sources │ └── version ├── python-docutils │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python-mako │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python-markupsafe │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── python3-always-pip.patch │ │ └── python3-pyc-hash.patch │ ├── sources │ └── version ├── qemu │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── musl-ppc.patch │ │ └── ppc-revert.patch │ ├── sources │ └── version ├── rsync │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── mkproto.awk │ ├── sources │ └── version ├── rust │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── stage0.json │ ├── patches │ │ ├── glasnost.patch │ │ └── openssl.patch │ ├── sources │ └── version ├── samurai │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── scdoc │ ├── README │ ├── build │ ├── checksums │ ├── patches │ │ └── clang.patch │ ├── sources │ └── version ├── sdl2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── skalibs │ ├── build │ ├── checksums │ ├── patches │ │ └── cross.patch │ ├── sources │ └── version ├── sqlite │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── ssu │ ├── README │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── strace │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── sudo │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── tmux │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── reallocarray.patch │ ├── sources │ └── version ├── ttf-croscore │ ├── README │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── tzdata │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── uboot-tools │ ├── build │ ├── checksums │ ├── sources │ └── version ├── util-linux │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── vim │ ├── README │ ├── build │ ├── depends │ ├── sources │ └── version ├── visurf │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── nsgenbind.patch │ │ └── testament.patch │ ├── sources │ └── version ├── wpa_supplicant │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── .config │ │ └── wpa_supplicant.run │ ├── sources │ └── version ├── x264 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── config.guess │ │ └── config.sub │ ├── patches │ │ ├── portability.patch │ │ └── x264-no-bash.patch │ ├── sources │ └── version ├── x265 │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xvidcore │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── config.guess │ │ └── config.sub │ ├── sources │ └── version ├── yt-dlp │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── zip │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version └── zstd │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── gcc ├── _binutils │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── fix-fd-issue.patch │ ├── sources │ └── version ├── _gcc │ ├── README │ ├── build │ ├── checksums │ ├── files │ │ └── c99 │ ├── sources │ └── version ├── binutils-aarch64 ├── binutils-armnone ├── binutils-armv7 ├── binutils-i686 ├── binutils-or1k ├── binutils-powerpc ├── binutils-powerpc64 ├── binutils-powerpc64le ├── binutils-powerpcle ├── binutils-riscv64 ├── binutils-x86_64 ├── gcc-aarch64 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-armnone │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-armv7 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-i686 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-or1k │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-powerpc │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-powerpc64 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-powerpc64le │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-powerpcle │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-riscv64 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version └── gcc-x86_64 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── system ├── atf │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── rk3399-baudrate.patch │ ├── sources │ └── version ├── crust │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0289a01c9ee211195728e14b4f26dd2e5226561a.patch │ ├── sources │ └── version ├── dtc │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── linux-pinephone │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── .config │ ├── patches │ │ └── all.patch │ ├── sources │ └── version ├── swig │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── uboot-pinephone │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── .config │ │ └── extlinux.conf │ ├── patches │ │ ├── 0001-ATF-set-fno-stack-protector.patch │ │ ├── 0001-mmc-sunxi-Avoid-ifdefs-in-delay-and-width-setup.patch │ │ ├── 0002-mmc-sunxi-Fix-warnings-with-CONFIG_PHYS_64BIT.patch │ │ ├── 0003-mmc-sunxi-Fix-MMC-clock-parent-selection.patch │ │ ├── 0004-mmc-sunxi-Cleanup-new-timing-mode-selection.patch │ │ ├── 0005-mmc-sunxi-Enable-new-timing-mode-on-all-new-SoCs.patch │ │ ├── 0006-mmc-sunxi-Cleanup-and-fix-self-calibration-code.patch │ │ ├── 0007-mmc-sunxi-Increase-MMIO-FIFO-read-performance.patch │ │ ├── 0008-mmc-sunxi-Use-mmc_of_parse.patch │ │ ├── 0009-sunxi-DT-H5-update-device-tree-files.patch │ │ ├── 0010-sunxi-DT-H6-update-device-tree-files.patch │ │ ├── 0011-phy-sun50i-usb3-Add-a-driver-for-the-H6-USB3-PHY.patch │ │ ├── 0012-usb-xhci-pci-Move-reset-logic-out-of-XHCI-core.patch │ │ ├── 0013-usb-xhci-dwc3-Add-support-for-clocks-resets.patch │ │ ├── 0014-configs-Enable-USB3-on-Allwinner-H6-boards.patch │ │ ├── 0015-tools-Refactor-mkimage-linking-with-OpenSSL.patch │ │ ├── 0016-tools-mkimage-Add-Allwinner-TOC0-support.patch │ │ ├── 0017-sunxi-Support-both-SPL-image-types.patch │ │ ├── 0018-sunxi-Support-building-a-SPL-as-a-TOC0-image.patch │ │ ├── 0019-sunxi-H616-Enable-full-4GB-of-DRAM.patch │ │ ├── 0020-sunxi-DT-H6-Add-USB3-to-Pine-H64-DTS.patch │ │ ├── 0021-sunxi-Select-environment-MMC-based-on-boot-device.patch │ │ ├── 0022-sunxi-Load-sun8i-secure-monitor-to-SRAM-A2.patch │ │ ├── 0023-pinephone-Add-volume_key-environment-variable.patch │ │ ├── 0024-Enable-led-on-boot-to-notify-user-of-boot-status.patch │ │ ├── 0025-disable-bootdelay.patch │ │ ├── 0026-Reduce-DRAM-speed-to-528-for-better-compatibility-wi.patch │ │ ├── 0027-mmc-sunxi-Add-support-for-DMA-transfers.patch │ │ ├── 0028-mmc-sunxi-DDR-DMA-support-for-SPL.patch │ │ ├── 0029-spl-ARM-Enable-CPU-caches.patch │ │ ├── 0030-common-expose-DRAM-clock-speed.patch │ │ └── Improve-Allwinner-A64-timer-workaround.patch │ ├── post-install │ ├── sources │ └── version └── uboot-tools │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version └── wayland ├── bemenu ├── build ├── checksums ├── depends ├── sources └── version ├── foot ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── grim ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── libdrm ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── libevdev ├── build ├── checksums ├── sources └── version ├── libinput ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── libpciaccess ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── libseat ├── README ├── build ├── checksums ├── depends ├── files │ └── seatd.run ├── sources └── version ├── libxkbcommon ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── mtdev ├── build ├── checksums ├── files │ └── config.sub ├── sources └── version ├── pixman ├── README ├── build ├── checksums ├── sources └── version ├── slurp ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── sway ├── README ├── build ├── checksums ├── depends ├── patches │ └── no-evdev.patch ├── post-install ├── sources └── version ├── swayidle ├── build ├── checksums ├── depends ├── sources └── version ├── swaylock-effects ├── build ├── checksums ├── depends ├── sources └── version ├── swaylock ├── build ├── checksums ├── depends ├── sources └── version ├── wayland-protocols ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── wayland ├── README ├── build ├── checksums ├── depends ├── patches │ └── cross.patch ├── sources └── version ├── wbg ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── wlr-randr ├── build ├── checksums ├── depends ├── sources └── version ├── wlroots ├── README ├── build ├── checksums ├── depends ├── patches │ └── cross.patch ├── sources └── version ├── wlsunset ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── wvkbd ├── build ├── checksums ├── patches │ ├── mobile.patch │ └── ppp.patch ├── sources └── version └── xkeyboard-config ├── README ├── build ├── checksums ├── files └── xml2lst ├── sources └── version /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/README.md -------------------------------------------------------------------------------- /core/baseinit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/baseinit/README -------------------------------------------------------------------------------- /core/baseinit/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/baseinit/build -------------------------------------------------------------------------------- /core/baseinit/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/baseinit/checksums -------------------------------------------------------------------------------- /core/baseinit/sources: -------------------------------------------------------------------------------- 1 | https://github.com/kisslinux/init/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /core/baseinit/version: -------------------------------------------------------------------------------- 1 | 1.0.3 2 2 | -------------------------------------------------------------------------------- /core/baselayout/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/baselayout/README -------------------------------------------------------------------------------- /core/baselayout/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/baselayout/build -------------------------------------------------------------------------------- /core/baselayout/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/baselayout/checksums -------------------------------------------------------------------------------- /core/baselayout/files/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/baselayout/files/fstab -------------------------------------------------------------------------------- /core/baselayout/files/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/baselayout/files/group -------------------------------------------------------------------------------- /core/baselayout/files/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/baselayout/files/hosts -------------------------------------------------------------------------------- /core/baselayout/files/issue: -------------------------------------------------------------------------------- 1 | Glasnost Linux \r (\l) 2 | -------------------------------------------------------------------------------- /core/baselayout/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/baselayout/sources -------------------------------------------------------------------------------- /core/baselayout/version: -------------------------------------------------------------------------------- 1 | 1 8 2 | -------------------------------------------------------------------------------- /core/bison/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/bison/README -------------------------------------------------------------------------------- /core/bison/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/bison/build -------------------------------------------------------------------------------- /core/bison/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/bison/checksums -------------------------------------------------------------------------------- /core/bison/depends: -------------------------------------------------------------------------------- 1 | m4 2 | -------------------------------------------------------------------------------- /core/bison/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/bison/sources -------------------------------------------------------------------------------- /core/bison/version: -------------------------------------------------------------------------------- 1 | 3.8.2 1 2 | -------------------------------------------------------------------------------- /core/busybox/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/busybox/README -------------------------------------------------------------------------------- /core/busybox/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/busybox/build -------------------------------------------------------------------------------- /core/busybox/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/busybox/checksums -------------------------------------------------------------------------------- /core/busybox/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /core/busybox/files/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/busybox/files/.config -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/busybox/files/mdev.run -------------------------------------------------------------------------------- /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/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/busybox/sources -------------------------------------------------------------------------------- /core/busybox/version: -------------------------------------------------------------------------------- 1 | 1.35.0 2 2 | -------------------------------------------------------------------------------- /core/bzip2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/bzip2/README -------------------------------------------------------------------------------- /core/bzip2/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/bzip2/build -------------------------------------------------------------------------------- /core/bzip2/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/bzip2/checksums -------------------------------------------------------------------------------- /core/bzip2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/bzip2/sources -------------------------------------------------------------------------------- /core/bzip2/version: -------------------------------------------------------------------------------- 1 | 1.0.8 1 2 | -------------------------------------------------------------------------------- /core/certs/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/certs/build -------------------------------------------------------------------------------- /core/certs/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/certs/checksums -------------------------------------------------------------------------------- /core/certs/sources: -------------------------------------------------------------------------------- 1 | https://curl.se/ca/cacert-VERSION.pem 2 | -------------------------------------------------------------------------------- /core/certs/version: -------------------------------------------------------------------------------- 1 | 2022-10-11 1 2 | -------------------------------------------------------------------------------- /core/curl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/curl/README -------------------------------------------------------------------------------- /core/curl/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/curl/build -------------------------------------------------------------------------------- /core/curl/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/curl/checksums -------------------------------------------------------------------------------- /core/curl/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | zlib 3 | -------------------------------------------------------------------------------- /core/curl/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/curl/sources -------------------------------------------------------------------------------- /core/curl/version: -------------------------------------------------------------------------------- 1 | 7.87.0 1 2 | -------------------------------------------------------------------------------- /core/flex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/flex/README -------------------------------------------------------------------------------- /core/flex/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/flex/build -------------------------------------------------------------------------------- /core/flex/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/flex/checksums -------------------------------------------------------------------------------- /core/flex/depends: -------------------------------------------------------------------------------- 1 | m4 make 2 | -------------------------------------------------------------------------------- /core/flex/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/flex/sources -------------------------------------------------------------------------------- /core/flex/version: -------------------------------------------------------------------------------- 1 | 2.6.4 4 2 | -------------------------------------------------------------------------------- /core/git/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/git/README -------------------------------------------------------------------------------- /core/git/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/git/build -------------------------------------------------------------------------------- /core/git/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/git/checksums -------------------------------------------------------------------------------- /core/git/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/git/depends -------------------------------------------------------------------------------- /core/git/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/git/sources -------------------------------------------------------------------------------- /core/git/version: -------------------------------------------------------------------------------- 1 | 2.39.0 1 2 | -------------------------------------------------------------------------------- /core/kiss/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/kiss/README -------------------------------------------------------------------------------- /core/kiss/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/kiss/build -------------------------------------------------------------------------------- /core/kiss/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/kiss/checksums -------------------------------------------------------------------------------- /core/kiss/depends: -------------------------------------------------------------------------------- 1 | git 2 | -------------------------------------------------------------------------------- /core/kiss/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/kiss/sources -------------------------------------------------------------------------------- /core/kiss/version: -------------------------------------------------------------------------------- 1 | 5.5.28 4 2 | -------------------------------------------------------------------------------- /core/linux-headers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/linux-headers/README -------------------------------------------------------------------------------- /core/linux-headers/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/linux-headers/build -------------------------------------------------------------------------------- /core/linux-headers/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/linux-headers/sources -------------------------------------------------------------------------------- /core/linux-headers/version: -------------------------------------------------------------------------------- 1 | 5.15.36 1 2 | -------------------------------------------------------------------------------- /core/llvm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/llvm/README -------------------------------------------------------------------------------- /core/llvm/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/llvm/build -------------------------------------------------------------------------------- /core/llvm/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/llvm/checksums -------------------------------------------------------------------------------- /core/llvm/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/llvm/depends -------------------------------------------------------------------------------- /core/llvm/files/c99: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec cc -std=c99 "$@" 3 | -------------------------------------------------------------------------------- /core/llvm/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/llvm/sources -------------------------------------------------------------------------------- /core/llvm/version: -------------------------------------------------------------------------------- 1 | 15.0.6 1 2 | -------------------------------------------------------------------------------- /core/m4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/m4/README -------------------------------------------------------------------------------- /core/m4/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/m4/build -------------------------------------------------------------------------------- /core/m4/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/m4/checksums -------------------------------------------------------------------------------- /core/m4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/m4/sources -------------------------------------------------------------------------------- /core/m4/version: -------------------------------------------------------------------------------- 1 | 1.4.19 1 2 | -------------------------------------------------------------------------------- /core/make/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/make/README -------------------------------------------------------------------------------- /core/make/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/make/build -------------------------------------------------------------------------------- /core/make/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/make/checksums -------------------------------------------------------------------------------- /core/make/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/make/sources -------------------------------------------------------------------------------- /core/make/version: -------------------------------------------------------------------------------- 1 | 4.4 1 2 | -------------------------------------------------------------------------------- /core/musl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/musl/README -------------------------------------------------------------------------------- /core/musl/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/musl/build -------------------------------------------------------------------------------- /core/musl/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/musl/checksums -------------------------------------------------------------------------------- /core/musl/files/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/musl/files/cdefs.h -------------------------------------------------------------------------------- /core/musl/files/getconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/musl/files/getconf.c -------------------------------------------------------------------------------- /core/musl/files/getent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/musl/files/getent.c -------------------------------------------------------------------------------- /core/musl/files/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/musl/files/queue.h -------------------------------------------------------------------------------- /core/musl/files/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/musl/files/tree.h -------------------------------------------------------------------------------- /core/musl/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/musl/sources -------------------------------------------------------------------------------- /core/musl/version: -------------------------------------------------------------------------------- 1 | 1.2.3 1 2 | -------------------------------------------------------------------------------- /core/openssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/openssl/README -------------------------------------------------------------------------------- /core/openssl/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/openssl/build -------------------------------------------------------------------------------- /core/openssl/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/openssl/checksums -------------------------------------------------------------------------------- /core/openssl/depends: -------------------------------------------------------------------------------- 1 | certs 2 | perl make 3 | -------------------------------------------------------------------------------- /core/openssl/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/openssl/sources -------------------------------------------------------------------------------- /core/openssl/version: -------------------------------------------------------------------------------- 1 | 3.0.7 1 2 | -------------------------------------------------------------------------------- /core/pigz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/pigz/README -------------------------------------------------------------------------------- /core/pigz/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/pigz/build -------------------------------------------------------------------------------- /core/pigz/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/pigz/checksums -------------------------------------------------------------------------------- /core/pigz/depends: -------------------------------------------------------------------------------- 1 | zlib make 2 | -------------------------------------------------------------------------------- /core/pigz/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/pigz/sources -------------------------------------------------------------------------------- /core/pigz/version: -------------------------------------------------------------------------------- 1 | 2.7 1 2 | -------------------------------------------------------------------------------- /core/xz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/xz/README -------------------------------------------------------------------------------- /core/xz/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/xz/build -------------------------------------------------------------------------------- /core/xz/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/xz/checksums -------------------------------------------------------------------------------- /core/xz/sources: -------------------------------------------------------------------------------- 1 | https://tukaani.org/xz/xz-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /core/xz/version: -------------------------------------------------------------------------------- 1 | 5.4.0 1 2 | -------------------------------------------------------------------------------- /core/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/zlib/README -------------------------------------------------------------------------------- /core/zlib/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/zlib/build -------------------------------------------------------------------------------- /core/zlib/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/zlib/checksums -------------------------------------------------------------------------------- /core/zlib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/core/zlib/sources -------------------------------------------------------------------------------- /core/zlib/version: -------------------------------------------------------------------------------- 1 | 1.2.13 1 2 | -------------------------------------------------------------------------------- /extra/alsa-lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/alsa-lib/README -------------------------------------------------------------------------------- /extra/alsa-lib/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/alsa-lib/build -------------------------------------------------------------------------------- /extra/alsa-lib/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/alsa-lib/checksums -------------------------------------------------------------------------------- /extra/alsa-lib/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/alsa-lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/alsa-lib/sources -------------------------------------------------------------------------------- /extra/alsa-lib/version: -------------------------------------------------------------------------------- 1 | 1.2.8 1 2 | -------------------------------------------------------------------------------- /extra/alsa-utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/alsa-utils/README -------------------------------------------------------------------------------- /extra/alsa-utils/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/alsa-utils/build -------------------------------------------------------------------------------- /extra/alsa-utils/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/alsa-utils/checksums -------------------------------------------------------------------------------- /extra/alsa-utils/depends: -------------------------------------------------------------------------------- 1 | alsa-lib 2 | ncurses 3 | -------------------------------------------------------------------------------- /extra/alsa-utils/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/alsa-utils/sources -------------------------------------------------------------------------------- /extra/alsa-utils/version: -------------------------------------------------------------------------------- 1 | 1.2.8 1 2 | -------------------------------------------------------------------------------- /extra/aria2/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/aria2/build -------------------------------------------------------------------------------- /extra/aria2/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/aria2/checksums -------------------------------------------------------------------------------- /extra/aria2/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | xz 3 | zlib 4 | -------------------------------------------------------------------------------- /extra/aria2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/aria2/sources -------------------------------------------------------------------------------- /extra/aria2/version: -------------------------------------------------------------------------------- 1 | 1.36.0 1 2 | -------------------------------------------------------------------------------- /extra/autoconf/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/autoconf/build -------------------------------------------------------------------------------- /extra/autoconf/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/autoconf/checksums -------------------------------------------------------------------------------- /extra/autoconf/depends: -------------------------------------------------------------------------------- 1 | m4 2 | perl 3 | -------------------------------------------------------------------------------- /extra/autoconf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/autoconf/sources -------------------------------------------------------------------------------- /extra/autoconf/version: -------------------------------------------------------------------------------- 1 | 2.71 1 2 | -------------------------------------------------------------------------------- /extra/automake/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/automake/build -------------------------------------------------------------------------------- /extra/automake/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/automake/checksums -------------------------------------------------------------------------------- /extra/automake/depends: -------------------------------------------------------------------------------- 1 | autoconf 2 | perl 3 | -------------------------------------------------------------------------------- /extra/automake/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/automake/sources -------------------------------------------------------------------------------- /extra/automake/version: -------------------------------------------------------------------------------- 1 | 1.16.5 1 2 | -------------------------------------------------------------------------------- /extra/baseinit/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/baseinit/build -------------------------------------------------------------------------------- /extra/baseinit/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/baseinit/checksums -------------------------------------------------------------------------------- /extra/baseinit/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/baseinit/post-install -------------------------------------------------------------------------------- /extra/baseinit/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/baseinit/sources -------------------------------------------------------------------------------- /extra/baseinit/version: -------------------------------------------------------------------------------- 1 | 1.0.4 1 2 | -------------------------------------------------------------------------------- /extra/bash/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/bash/build -------------------------------------------------------------------------------- /extra/bash/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/bash/checksums -------------------------------------------------------------------------------- /extra/bash/depends: -------------------------------------------------------------------------------- 1 | ncurses 2 | -------------------------------------------------------------------------------- /extra/bash/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/bash/sources -------------------------------------------------------------------------------- /extra/bash/version: -------------------------------------------------------------------------------- 1 | 5.2.p15 1 2 | -------------------------------------------------------------------------------- /extra/btrfs-progs/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/btrfs-progs/build -------------------------------------------------------------------------------- /extra/btrfs-progs/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/btrfs-progs/checksums -------------------------------------------------------------------------------- /extra/btrfs-progs/depends: -------------------------------------------------------------------------------- 1 | e2fsprogs 2 | lzo 3 | pkgconf make 4 | python 5 | util-linux 6 | zlib 7 | -------------------------------------------------------------------------------- /extra/btrfs-progs/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/btrfs-progs/sources -------------------------------------------------------------------------------- /extra/btrfs-progs/version: -------------------------------------------------------------------------------- 1 | 6.2.1 1 2 | -------------------------------------------------------------------------------- /extra/cairo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cairo/README -------------------------------------------------------------------------------- /extra/cairo/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cairo/build -------------------------------------------------------------------------------- /extra/cairo/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cairo/checksums -------------------------------------------------------------------------------- /extra/cairo/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cairo/depends -------------------------------------------------------------------------------- /extra/cairo/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cairo/sources -------------------------------------------------------------------------------- /extra/cairo/version: -------------------------------------------------------------------------------- 1 | 1.16.0 1 2 | -------------------------------------------------------------------------------- /extra/cbindgen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cbindgen/README -------------------------------------------------------------------------------- /extra/cbindgen/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cbindgen/build -------------------------------------------------------------------------------- /extra/cbindgen/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cbindgen/checksums -------------------------------------------------------------------------------- /extra/cbindgen/depends: -------------------------------------------------------------------------------- 1 | rust make 2 | -------------------------------------------------------------------------------- /extra/cbindgen/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cbindgen/sources -------------------------------------------------------------------------------- /extra/cbindgen/version: -------------------------------------------------------------------------------- 1 | 0.24.3 1 2 | -------------------------------------------------------------------------------- /extra/cmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cmake/README -------------------------------------------------------------------------------- /extra/cmake/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cmake/build -------------------------------------------------------------------------------- /extra/cmake/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cmake/checksums -------------------------------------------------------------------------------- /extra/cmake/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | curl 3 | expat 4 | linux-headers make 5 | zlib 6 | -------------------------------------------------------------------------------- /extra/cmake/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/cmake/sources -------------------------------------------------------------------------------- /extra/cmake/version: -------------------------------------------------------------------------------- 1 | 3.25.2 1 2 | -------------------------------------------------------------------------------- /extra/dhcpcd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/dhcpcd/README -------------------------------------------------------------------------------- /extra/dhcpcd/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/dhcpcd/build -------------------------------------------------------------------------------- /extra/dhcpcd/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/dhcpcd/checksums -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/dhcpcd/sources -------------------------------------------------------------------------------- /extra/dhcpcd/version: -------------------------------------------------------------------------------- 1 | 9.4.1 2 2 | -------------------------------------------------------------------------------- /extra/dosfstools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/dosfstools/README -------------------------------------------------------------------------------- /extra/dosfstools/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/dosfstools/build -------------------------------------------------------------------------------- /extra/dosfstools/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/dosfstools/checksums -------------------------------------------------------------------------------- /extra/dosfstools/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/dosfstools/sources -------------------------------------------------------------------------------- /extra/dosfstools/version: -------------------------------------------------------------------------------- 1 | 4.2 1 2 | -------------------------------------------------------------------------------- /extra/e2fsprogs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/e2fsprogs/README -------------------------------------------------------------------------------- /extra/e2fsprogs/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/e2fsprogs/build -------------------------------------------------------------------------------- /extra/e2fsprogs/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/e2fsprogs/checksums -------------------------------------------------------------------------------- /extra/e2fsprogs/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/e2fsprogs/sources -------------------------------------------------------------------------------- /extra/e2fsprogs/version: -------------------------------------------------------------------------------- 1 | 1.47.0 1 2 | -------------------------------------------------------------------------------- /extra/efibootmgr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/efibootmgr/README -------------------------------------------------------------------------------- /extra/efibootmgr/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/efibootmgr/build -------------------------------------------------------------------------------- /extra/efibootmgr/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/efibootmgr/checksums -------------------------------------------------------------------------------- /extra/efibootmgr/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/efibootmgr/depends -------------------------------------------------------------------------------- /extra/efibootmgr/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/efibootmgr/sources -------------------------------------------------------------------------------- /extra/efibootmgr/version: -------------------------------------------------------------------------------- 1 | 18 1 2 | -------------------------------------------------------------------------------- /extra/efivar/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/efivar/README -------------------------------------------------------------------------------- /extra/efivar/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/efivar/build -------------------------------------------------------------------------------- /extra/efivar/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/efivar/checksums -------------------------------------------------------------------------------- /extra/efivar/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/efivar/depends -------------------------------------------------------------------------------- /extra/efivar/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/efivar/sources -------------------------------------------------------------------------------- /extra/efivar/version: -------------------------------------------------------------------------------- 1 | bc65d63ebf8fe6ac8a099ff15ca200986dba1565 1 2 | -------------------------------------------------------------------------------- /extra/exfatprogs/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/exfatprogs/build -------------------------------------------------------------------------------- /extra/exfatprogs/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/exfatprogs/checksums -------------------------------------------------------------------------------- /extra/exfatprogs/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/exfatprogs/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/exfatprogs/sources -------------------------------------------------------------------------------- /extra/exfatprogs/version: -------------------------------------------------------------------------------- 1 | 1.2.0 1 2 | -------------------------------------------------------------------------------- /extra/expat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/expat/README -------------------------------------------------------------------------------- /extra/expat/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/expat/build -------------------------------------------------------------------------------- /extra/expat/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/expat/checksums -------------------------------------------------------------------------------- /extra/expat/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/expat/sources -------------------------------------------------------------------------------- /extra/expat/version: -------------------------------------------------------------------------------- 1 | 2.5.0 1 2 | -------------------------------------------------------------------------------- /extra/f2fs-tools/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/f2fs-tools/build -------------------------------------------------------------------------------- /extra/f2fs-tools/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/f2fs-tools/checksums -------------------------------------------------------------------------------- /extra/f2fs-tools/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/f2fs-tools/sources -------------------------------------------------------------------------------- /extra/f2fs-tools/version: -------------------------------------------------------------------------------- 1 | 1.15.0 1 2 | -------------------------------------------------------------------------------- /extra/ffmpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ffmpeg/README -------------------------------------------------------------------------------- /extra/ffmpeg/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ffmpeg/build -------------------------------------------------------------------------------- /extra/ffmpeg/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ffmpeg/checksums -------------------------------------------------------------------------------- /extra/ffmpeg/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ffmpeg/depends -------------------------------------------------------------------------------- /extra/ffmpeg/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ffmpeg/sources -------------------------------------------------------------------------------- /extra/ffmpeg/version: -------------------------------------------------------------------------------- 1 | 6.0 2 2 | -------------------------------------------------------------------------------- /extra/file/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/file/build -------------------------------------------------------------------------------- /extra/file/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/file/checksums -------------------------------------------------------------------------------- /extra/file/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/file/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/file/sources -------------------------------------------------------------------------------- /extra/file/version: -------------------------------------------------------------------------------- 1 | 5.44 1 2 | -------------------------------------------------------------------------------- /extra/findutils/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/findutils/build -------------------------------------------------------------------------------- /extra/findutils/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/findutils/checksums -------------------------------------------------------------------------------- /extra/findutils/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/findutils/sources -------------------------------------------------------------------------------- /extra/findutils/version: -------------------------------------------------------------------------------- 1 | 4.9.0 1 2 | -------------------------------------------------------------------------------- /extra/firefox-privacy/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/firefox-privacy/build -------------------------------------------------------------------------------- /extra/firefox-privacy/version: -------------------------------------------------------------------------------- 1 | 1.0 5 2 | -------------------------------------------------------------------------------- /extra/firefox/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/firefox/README -------------------------------------------------------------------------------- /extra/firefox/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/firefox/build -------------------------------------------------------------------------------- /extra/firefox/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/firefox/checksums -------------------------------------------------------------------------------- /extra/firefox/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/firefox/depends -------------------------------------------------------------------------------- /extra/firefox/files/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/firefox/files/stab.h -------------------------------------------------------------------------------- /extra/firefox/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/firefox/post-install -------------------------------------------------------------------------------- /extra/firefox/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/firefox/sources -------------------------------------------------------------------------------- /extra/firefox/version: -------------------------------------------------------------------------------- 1 | 94.0.2 1 2 | -------------------------------------------------------------------------------- /extra/flac/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/flac/build -------------------------------------------------------------------------------- /extra/flac/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/flac/checksums -------------------------------------------------------------------------------- /extra/flac/depends: -------------------------------------------------------------------------------- 1 | libogg 2 | nasm make 3 | -------------------------------------------------------------------------------- /extra/flac/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/flac/sources -------------------------------------------------------------------------------- /extra/flac/version: -------------------------------------------------------------------------------- 1 | 1.4.2 1 2 | -------------------------------------------------------------------------------- /extra/fontconfig/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/fontconfig/README -------------------------------------------------------------------------------- /extra/fontconfig/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/fontconfig/build -------------------------------------------------------------------------------- /extra/fontconfig/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/fontconfig/checksums -------------------------------------------------------------------------------- /extra/fontconfig/depends: -------------------------------------------------------------------------------- 1 | expat 2 | freetype-harfbuzz 3 | pkgconf make 4 | -------------------------------------------------------------------------------- /extra/fontconfig/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/fontconfig/sources -------------------------------------------------------------------------------- /extra/fontconfig/version: -------------------------------------------------------------------------------- 1 | 2.14.2 1 2 | -------------------------------------------------------------------------------- /extra/freetype-harfbuzz/version: -------------------------------------------------------------------------------- 1 | 2.13.0+7.1.0 1 2 | -------------------------------------------------------------------------------- /extra/gdk-pixbuf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gdk-pixbuf/README -------------------------------------------------------------------------------- /extra/gdk-pixbuf/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gdk-pixbuf/build -------------------------------------------------------------------------------- /extra/gdk-pixbuf/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gdk-pixbuf/checksums -------------------------------------------------------------------------------- /extra/gdk-pixbuf/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gdk-pixbuf/depends -------------------------------------------------------------------------------- /extra/gdk-pixbuf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gdk-pixbuf/sources -------------------------------------------------------------------------------- /extra/gdk-pixbuf/version: -------------------------------------------------------------------------------- 1 | 2.42.10 1 2 | -------------------------------------------------------------------------------- /extra/giflib/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/giflib/build -------------------------------------------------------------------------------- /extra/giflib/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/giflib/checksums -------------------------------------------------------------------------------- /extra/giflib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/giflib/sources -------------------------------------------------------------------------------- /extra/giflib/version: -------------------------------------------------------------------------------- 1 | 5.2.1 1 2 | -------------------------------------------------------------------------------- /extra/glib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/glib/README -------------------------------------------------------------------------------- /extra/glib/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/glib/build -------------------------------------------------------------------------------- /extra/glib/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/glib/checksums -------------------------------------------------------------------------------- /extra/glib/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/glib/depends -------------------------------------------------------------------------------- /extra/glib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/glib/sources -------------------------------------------------------------------------------- /extra/glib/version: -------------------------------------------------------------------------------- 1 | 2.75.4 1 2 | -------------------------------------------------------------------------------- /extra/gnugrep/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gnugrep/README -------------------------------------------------------------------------------- /extra/gnugrep/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gnugrep/build -------------------------------------------------------------------------------- /extra/gnugrep/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gnugrep/checksums -------------------------------------------------------------------------------- /extra/gnugrep/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gnugrep/sources -------------------------------------------------------------------------------- /extra/gnugrep/version: -------------------------------------------------------------------------------- 1 | 3.9 1 2 | -------------------------------------------------------------------------------- /extra/gnupg1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gnupg1/README -------------------------------------------------------------------------------- /extra/gnupg1/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gnupg1/build -------------------------------------------------------------------------------- /extra/gnupg1/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gnupg1/checksums -------------------------------------------------------------------------------- /extra/gnupg1/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | curl 3 | zlib 4 | -------------------------------------------------------------------------------- /extra/gnupg1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gnupg1/sources -------------------------------------------------------------------------------- /extra/gnupg1/version: -------------------------------------------------------------------------------- 1 | 1.4.23 2 2 | -------------------------------------------------------------------------------- /extra/go/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/go/build -------------------------------------------------------------------------------- /extra/go/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/go/checksums -------------------------------------------------------------------------------- /extra/go/depends: -------------------------------------------------------------------------------- 1 | bash make 2 | -------------------------------------------------------------------------------- /extra/go/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/go/sources -------------------------------------------------------------------------------- /extra/go/version: -------------------------------------------------------------------------------- 1 | 1.20.1 1 2 | -------------------------------------------------------------------------------- /extra/gperf/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gperf/build -------------------------------------------------------------------------------- /extra/gperf/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gperf/checksums -------------------------------------------------------------------------------- /extra/gperf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gperf/sources -------------------------------------------------------------------------------- /extra/gperf/version: -------------------------------------------------------------------------------- 1 | 3.1 3 2 | -------------------------------------------------------------------------------- /extra/gtk+3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gtk+3/README -------------------------------------------------------------------------------- /extra/gtk+3/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gtk+3/build -------------------------------------------------------------------------------- /extra/gtk+3/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gtk+3/checksums -------------------------------------------------------------------------------- /extra/gtk+3/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gtk+3/depends -------------------------------------------------------------------------------- /extra/gtk+3/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gtk+3/post-install -------------------------------------------------------------------------------- /extra/gtk+3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/gtk+3/sources -------------------------------------------------------------------------------- /extra/gtk+3/version: -------------------------------------------------------------------------------- 1 | 3.24.37 1 2 | -------------------------------------------------------------------------------- /extra/hicolor-icon-theme/version: -------------------------------------------------------------------------------- 1 | 0.17 1 2 | -------------------------------------------------------------------------------- /extra/htop/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/htop/build -------------------------------------------------------------------------------- /extra/htop/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/htop/checksums -------------------------------------------------------------------------------- /extra/htop/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/htop/depends -------------------------------------------------------------------------------- /extra/htop/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/htop/sources -------------------------------------------------------------------------------- /extra/htop/version: -------------------------------------------------------------------------------- 1 | 3.2.2 1 2 | -------------------------------------------------------------------------------- /extra/icu/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/icu/build -------------------------------------------------------------------------------- /extra/icu/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/icu/checksums -------------------------------------------------------------------------------- /extra/icu/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/icu/sources -------------------------------------------------------------------------------- /extra/icu/version: -------------------------------------------------------------------------------- 1 | 71.1 1 2 | -------------------------------------------------------------------------------- /extra/intel-vaapi-driver/version: -------------------------------------------------------------------------------- 1 | 2.4.1 1 2 | -------------------------------------------------------------------------------- /extra/json-c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/json-c/README -------------------------------------------------------------------------------- /extra/json-c/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/json-c/build -------------------------------------------------------------------------------- /extra/json-c/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/json-c/checksums -------------------------------------------------------------------------------- /extra/json-c/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/json-c/depends -------------------------------------------------------------------------------- /extra/json-c/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/json-c/sources -------------------------------------------------------------------------------- /extra/json-c/version: -------------------------------------------------------------------------------- 1 | 0.16 1 2 | -------------------------------------------------------------------------------- /extra/kirc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/kirc/README -------------------------------------------------------------------------------- /extra/kirc/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/kirc/build -------------------------------------------------------------------------------- /extra/kirc/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/kirc/checksums -------------------------------------------------------------------------------- /extra/kirc/sources: -------------------------------------------------------------------------------- 1 | https://github.com/mcpcpc/kirc/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/kirc/version: -------------------------------------------------------------------------------- 1 | 0.3.2 1 2 | -------------------------------------------------------------------------------- /extra/lame/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/lame/README -------------------------------------------------------------------------------- /extra/lame/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/lame/build -------------------------------------------------------------------------------- /extra/lame/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/lame/checksums -------------------------------------------------------------------------------- /extra/lame/sources: -------------------------------------------------------------------------------- 1 | https://fossies.org/linux/misc/lame-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/lame/version: -------------------------------------------------------------------------------- 1 | 3.100 2 2 | -------------------------------------------------------------------------------- /extra/libass/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libass/README -------------------------------------------------------------------------------- /extra/libass/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libass/build -------------------------------------------------------------------------------- /extra/libass/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libass/checksums -------------------------------------------------------------------------------- /extra/libass/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libass/depends -------------------------------------------------------------------------------- /extra/libass/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libass/sources -------------------------------------------------------------------------------- /extra/libass/version: -------------------------------------------------------------------------------- 1 | 0.17.1 1 2 | -------------------------------------------------------------------------------- /extra/libelf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libelf/README -------------------------------------------------------------------------------- /extra/libelf/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libelf/build -------------------------------------------------------------------------------- /extra/libelf/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libelf/checksums -------------------------------------------------------------------------------- /extra/libelf/depends: -------------------------------------------------------------------------------- 1 | pkgconf make 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/libelf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libelf/sources -------------------------------------------------------------------------------- /extra/libelf/version: -------------------------------------------------------------------------------- 1 | 0.189 1 2 | -------------------------------------------------------------------------------- /extra/libepoxy/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libepoxy/build -------------------------------------------------------------------------------- /extra/libepoxy/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libepoxy/checksums -------------------------------------------------------------------------------- /extra/libepoxy/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libepoxy/depends -------------------------------------------------------------------------------- /extra/libepoxy/sources: -------------------------------------------------------------------------------- 1 | https://github.com/anholt/libepoxy/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libepoxy/version: -------------------------------------------------------------------------------- 1 | 1.5.10 2 2 | -------------------------------------------------------------------------------- /extra/liberation-fonts/version: -------------------------------------------------------------------------------- 1 | 2.1.5 1 2 | -------------------------------------------------------------------------------- /extra/libevent/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libevent/build -------------------------------------------------------------------------------- /extra/libevent/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libevent/checksums -------------------------------------------------------------------------------- /extra/libevent/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libevent/sources -------------------------------------------------------------------------------- /extra/libevent/version: -------------------------------------------------------------------------------- 1 | 2.1.12 1 2 | -------------------------------------------------------------------------------- /extra/libexecinfo/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libexecinfo/build -------------------------------------------------------------------------------- /extra/libexecinfo/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libexecinfo/checksums -------------------------------------------------------------------------------- /extra/libexecinfo/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libexecinfo/sources -------------------------------------------------------------------------------- /extra/libexecinfo/version: -------------------------------------------------------------------------------- 1 | 1.1 1 2 | -------------------------------------------------------------------------------- /extra/libffi/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libffi/build -------------------------------------------------------------------------------- /extra/libffi/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libffi/checksums -------------------------------------------------------------------------------- /extra/libffi/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libffi/sources -------------------------------------------------------------------------------- /extra/libffi/version: -------------------------------------------------------------------------------- 1 | 3.4.4 1 2 | -------------------------------------------------------------------------------- /extra/libglvnd/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libglvnd/build -------------------------------------------------------------------------------- /extra/libglvnd/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libglvnd/checksums -------------------------------------------------------------------------------- /extra/libglvnd/depends: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/libglvnd/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libglvnd/sources -------------------------------------------------------------------------------- /extra/libglvnd/version: -------------------------------------------------------------------------------- 1 | 1.6.0 1 2 | -------------------------------------------------------------------------------- /extra/libgpg-error/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libgpg-error/build -------------------------------------------------------------------------------- /extra/libgpg-error/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libgpg-error/sources -------------------------------------------------------------------------------- /extra/libgpg-error/version: -------------------------------------------------------------------------------- 1 | 1.46 1 2 | -------------------------------------------------------------------------------- /extra/libjpeg-turbo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libjpeg-turbo/README -------------------------------------------------------------------------------- /extra/libjpeg-turbo/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libjpeg-turbo/build -------------------------------------------------------------------------------- /extra/libjpeg-turbo/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libjpeg-turbo/depends -------------------------------------------------------------------------------- /extra/libjpeg-turbo/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libjpeg-turbo/sources -------------------------------------------------------------------------------- /extra/libjpeg-turbo/version: -------------------------------------------------------------------------------- 1 | 2.1.5.1 1 2 | -------------------------------------------------------------------------------- /extra/libnvme/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libnvme/build -------------------------------------------------------------------------------- /extra/libnvme/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libnvme/checksums -------------------------------------------------------------------------------- /extra/libnvme/depends: -------------------------------------------------------------------------------- 1 | json-c 2 | -------------------------------------------------------------------------------- /extra/libnvme/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libnvme/sources -------------------------------------------------------------------------------- /extra/libnvme/version: -------------------------------------------------------------------------------- 1 | 1.3 1 2 | -------------------------------------------------------------------------------- /extra/libogg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libogg/README -------------------------------------------------------------------------------- /extra/libogg/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libogg/build -------------------------------------------------------------------------------- /extra/libogg/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libogg/checksums -------------------------------------------------------------------------------- /extra/libogg/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libogg/sources -------------------------------------------------------------------------------- /extra/libogg/version: -------------------------------------------------------------------------------- 1 | 1.3.5 1 2 | -------------------------------------------------------------------------------- /extra/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libpng/README -------------------------------------------------------------------------------- /extra/libpng/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libpng/build -------------------------------------------------------------------------------- /extra/libpng/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libpng/checksums -------------------------------------------------------------------------------- /extra/libpng/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/libpng/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libpng/sources -------------------------------------------------------------------------------- /extra/libpng/version: -------------------------------------------------------------------------------- 1 | 1.6.39 1 2 | -------------------------------------------------------------------------------- /extra/libretls/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libretls/build -------------------------------------------------------------------------------- /extra/libretls/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libretls/checksums -------------------------------------------------------------------------------- /extra/libretls/depends: -------------------------------------------------------------------------------- 1 | openssl -------------------------------------------------------------------------------- /extra/libretls/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libretls/sources -------------------------------------------------------------------------------- /extra/libretls/version: -------------------------------------------------------------------------------- 1 | 3.7.0 1 2 | -------------------------------------------------------------------------------- /extra/libslirp/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libslirp/build -------------------------------------------------------------------------------- /extra/libslirp/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libslirp/checksums -------------------------------------------------------------------------------- /extra/libslirp/depends: -------------------------------------------------------------------------------- 1 | glib 2 | -------------------------------------------------------------------------------- /extra/libslirp/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libslirp/sources -------------------------------------------------------------------------------- /extra/libslirp/version: -------------------------------------------------------------------------------- 1 | 4.7.0 1 2 | -------------------------------------------------------------------------------- /extra/libtheora/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libtheora/README -------------------------------------------------------------------------------- /extra/libtheora/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libtheora/build -------------------------------------------------------------------------------- /extra/libtheora/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libtheora/checksums -------------------------------------------------------------------------------- /extra/libtheora/depends: -------------------------------------------------------------------------------- 1 | libogg 2 | -------------------------------------------------------------------------------- /extra/libtheora/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libtheora/sources -------------------------------------------------------------------------------- /extra/libtheora/version: -------------------------------------------------------------------------------- 1 | 1.1.1 2 2 | -------------------------------------------------------------------------------- /extra/libtirpc/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libtirpc/build -------------------------------------------------------------------------------- /extra/libtirpc/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libtirpc/checksums -------------------------------------------------------------------------------- /extra/libtirpc/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/libtirpc/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libtirpc/sources -------------------------------------------------------------------------------- /extra/libtirpc/version: -------------------------------------------------------------------------------- 1 | 1.3.3 1 2 | -------------------------------------------------------------------------------- /extra/libtool/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libtool/build -------------------------------------------------------------------------------- /extra/libtool/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libtool/checksums -------------------------------------------------------------------------------- /extra/libtool/depends: -------------------------------------------------------------------------------- 1 | m4 2 | perl 3 | -------------------------------------------------------------------------------- /extra/libtool/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libtool/sources -------------------------------------------------------------------------------- /extra/libtool/version: -------------------------------------------------------------------------------- 1 | 2.4.7 1 2 | -------------------------------------------------------------------------------- /extra/libudev-zero/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libudev-zero/README -------------------------------------------------------------------------------- /extra/libudev-zero/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libudev-zero/build -------------------------------------------------------------------------------- /extra/libudev-zero/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/libudev-zero/sources: -------------------------------------------------------------------------------- 1 | https://github.com/illiliti/libudev-zero/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libudev-zero/version: -------------------------------------------------------------------------------- 1 | 1.0.1 1 2 | -------------------------------------------------------------------------------- /extra/libva-utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libva-utils/README -------------------------------------------------------------------------------- /extra/libva-utils/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libva-utils/build -------------------------------------------------------------------------------- /extra/libva-utils/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libva-utils/checksums -------------------------------------------------------------------------------- /extra/libva-utils/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libva-utils/depends -------------------------------------------------------------------------------- /extra/libva-utils/sources: -------------------------------------------------------------------------------- 1 | https://github.com/intel/libva-utils/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libva-utils/version: -------------------------------------------------------------------------------- 1 | 2.17.1 1 2 | -------------------------------------------------------------------------------- /extra/libva-v4l2-request/depends: -------------------------------------------------------------------------------- 1 | libva 2 | -------------------------------------------------------------------------------- /extra/libva-v4l2-request/version: -------------------------------------------------------------------------------- 1 | git-20190517 1 2 | -------------------------------------------------------------------------------- /extra/libva/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libva/README -------------------------------------------------------------------------------- /extra/libva/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libva/build -------------------------------------------------------------------------------- /extra/libva/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libva/checksums -------------------------------------------------------------------------------- /extra/libva/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libva/depends -------------------------------------------------------------------------------- /extra/libva/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libva/sources -------------------------------------------------------------------------------- /extra/libva/version: -------------------------------------------------------------------------------- 1 | 2.17.0 1 2 | -------------------------------------------------------------------------------- /extra/libvorbis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libvorbis/README -------------------------------------------------------------------------------- /extra/libvorbis/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libvorbis/build -------------------------------------------------------------------------------- /extra/libvorbis/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libvorbis/checksums -------------------------------------------------------------------------------- /extra/libvorbis/depends: -------------------------------------------------------------------------------- 1 | libogg 2 | -------------------------------------------------------------------------------- /extra/libvorbis/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libvorbis/sources -------------------------------------------------------------------------------- /extra/libvorbis/version: -------------------------------------------------------------------------------- 1 | 1.3.7 1 2 | -------------------------------------------------------------------------------- /extra/libvpx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libvpx/README -------------------------------------------------------------------------------- /extra/libvpx/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libvpx/build -------------------------------------------------------------------------------- /extra/libvpx/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libvpx/checksums -------------------------------------------------------------------------------- /extra/libvpx/depends: -------------------------------------------------------------------------------- 1 | nasm make 2 | -------------------------------------------------------------------------------- /extra/libvpx/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libvpx/sources -------------------------------------------------------------------------------- /extra/libvpx/version: -------------------------------------------------------------------------------- 1 | 1.13.0 1 2 | -------------------------------------------------------------------------------- /extra/libwebp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libwebp/README -------------------------------------------------------------------------------- /extra/libwebp/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libwebp/build -------------------------------------------------------------------------------- /extra/libwebp/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libwebp/checksums -------------------------------------------------------------------------------- /extra/libwebp/depends: -------------------------------------------------------------------------------- 1 | libjpeg-turbo 2 | libpng 3 | -------------------------------------------------------------------------------- /extra/libwebp/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libwebp/sources -------------------------------------------------------------------------------- /extra/libwebp/version: -------------------------------------------------------------------------------- 1 | 1.3.0 1 2 | -------------------------------------------------------------------------------- /extra/libxml2/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libxml2/build -------------------------------------------------------------------------------- /extra/libxml2/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libxml2/checksums -------------------------------------------------------------------------------- /extra/libxml2/depends: -------------------------------------------------------------------------------- 1 | xz 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/libxml2/sources: -------------------------------------------------------------------------------- 1 | https://fossies.org/linux/www/libxml2-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libxml2/version: -------------------------------------------------------------------------------- 1 | 2.10.3 1 2 | -------------------------------------------------------------------------------- /extra/libyaml/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libyaml/build -------------------------------------------------------------------------------- /extra/libyaml/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libyaml/checksums -------------------------------------------------------------------------------- /extra/libyaml/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libyaml/manifest -------------------------------------------------------------------------------- /extra/libyaml/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/libyaml/sources -------------------------------------------------------------------------------- /extra/libyaml/version: -------------------------------------------------------------------------------- 1 | 0.2.5 1 2 | -------------------------------------------------------------------------------- /extra/links2/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/links2/build -------------------------------------------------------------------------------- /extra/links2/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/links2/checksums -------------------------------------------------------------------------------- /extra/links2/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | bzip2 3 | -------------------------------------------------------------------------------- /extra/links2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/links2/sources -------------------------------------------------------------------------------- /extra/links2/version: -------------------------------------------------------------------------------- 1 | 2.28 1 2 | -------------------------------------------------------------------------------- /extra/lzip/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/lzip/build -------------------------------------------------------------------------------- /extra/lzip/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/lzip/checksums -------------------------------------------------------------------------------- /extra/lzip/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/lzip/sources -------------------------------------------------------------------------------- /extra/lzip/version: -------------------------------------------------------------------------------- 1 | 1.23 1 2 | -------------------------------------------------------------------------------- /extra/lzo/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/lzo/build -------------------------------------------------------------------------------- /extra/lzo/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/lzo/checksums -------------------------------------------------------------------------------- /extra/lzo/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/lzo/sources -------------------------------------------------------------------------------- /extra/lzo/version: -------------------------------------------------------------------------------- 1 | 2.10 1 2 | -------------------------------------------------------------------------------- /extra/man-pages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/man-pages/README -------------------------------------------------------------------------------- /extra/man-pages/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/man-pages/build -------------------------------------------------------------------------------- /extra/man-pages/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/man-pages/checksums -------------------------------------------------------------------------------- /extra/man-pages/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | makewhatis /usr/share/man 4 | -------------------------------------------------------------------------------- /extra/man-pages/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/man-pages/sources -------------------------------------------------------------------------------- /extra/man-pages/version: -------------------------------------------------------------------------------- 1 | 6.03 1 2 | -------------------------------------------------------------------------------- /extra/mandoc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mandoc/README -------------------------------------------------------------------------------- /extra/mandoc/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mandoc/build -------------------------------------------------------------------------------- /extra/mandoc/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mandoc/checksums -------------------------------------------------------------------------------- /extra/mandoc/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/mandoc/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mandoc/sources -------------------------------------------------------------------------------- /extra/mandoc/version: -------------------------------------------------------------------------------- 1 | 1.14.6 1 2 | -------------------------------------------------------------------------------- /extra/mdevd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mdevd/README -------------------------------------------------------------------------------- /extra/mdevd/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mdevd/build -------------------------------------------------------------------------------- /extra/mdevd/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mdevd/checksums -------------------------------------------------------------------------------- /extra/mdevd/depends: -------------------------------------------------------------------------------- 1 | skalibs 2 | -------------------------------------------------------------------------------- /extra/mdevd/files/mdevd.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mdevd/files/mdevd.run -------------------------------------------------------------------------------- /extra/mdevd/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mdevd/sources -------------------------------------------------------------------------------- /extra/mdevd/version: -------------------------------------------------------------------------------- 1 | 0.1.6.2 2 2 | -------------------------------------------------------------------------------- /extra/mesa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mesa/README -------------------------------------------------------------------------------- /extra/mesa/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mesa/build -------------------------------------------------------------------------------- /extra/mesa/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mesa/checksums -------------------------------------------------------------------------------- /extra/mesa/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mesa/depends -------------------------------------------------------------------------------- /extra/mesa/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mesa/sources -------------------------------------------------------------------------------- /extra/mesa/version: -------------------------------------------------------------------------------- 1 | 23.0.0 1 2 | -------------------------------------------------------------------------------- /extra/meson/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/meson/build -------------------------------------------------------------------------------- /extra/meson/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/meson/checksums -------------------------------------------------------------------------------- /extra/meson/depends: -------------------------------------------------------------------------------- 1 | python 2 | samurai 3 | -------------------------------------------------------------------------------- /extra/meson/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/meson/sources -------------------------------------------------------------------------------- /extra/meson/version: -------------------------------------------------------------------------------- 1 | 1.0.1 1 2 | -------------------------------------------------------------------------------- /extra/mpv/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mpv/README -------------------------------------------------------------------------------- /extra/mpv/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mpv/build -------------------------------------------------------------------------------- /extra/mpv/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mpv/checksums -------------------------------------------------------------------------------- /extra/mpv/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mpv/depends -------------------------------------------------------------------------------- /extra/mpv/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/mpv/sources -------------------------------------------------------------------------------- /extra/mpv/version: -------------------------------------------------------------------------------- 1 | git 2 2 | -------------------------------------------------------------------------------- /extra/nano/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nano/build -------------------------------------------------------------------------------- /extra/nano/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nano/checksums -------------------------------------------------------------------------------- /extra/nano/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | ncurses 3 | zlib 4 | -------------------------------------------------------------------------------- /extra/nano/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nano/sources -------------------------------------------------------------------------------- /extra/nano/version: -------------------------------------------------------------------------------- 1 | 7.2 1 2 | -------------------------------------------------------------------------------- /extra/nasm/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nasm/build -------------------------------------------------------------------------------- /extra/nasm/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nasm/checksums -------------------------------------------------------------------------------- /extra/nasm/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nasm/sources -------------------------------------------------------------------------------- /extra/nasm/version: -------------------------------------------------------------------------------- 1 | 2.16.01 1 2 | -------------------------------------------------------------------------------- /extra/ncurses/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ncurses/build -------------------------------------------------------------------------------- /extra/ncurses/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ncurses/checksums -------------------------------------------------------------------------------- /extra/ncurses/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ncurses/sources -------------------------------------------------------------------------------- /extra/ncurses/version: -------------------------------------------------------------------------------- 1 | 6.4 1 2 | -------------------------------------------------------------------------------- /extra/nettle/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nettle/build -------------------------------------------------------------------------------- /extra/nettle/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nettle/checksums -------------------------------------------------------------------------------- /extra/nettle/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nettle/sources -------------------------------------------------------------------------------- /extra/nettle/version: -------------------------------------------------------------------------------- 1 | 3.8.1 1 2 | -------------------------------------------------------------------------------- /extra/nmap/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nmap/build -------------------------------------------------------------------------------- /extra/nmap/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nmap/checksums -------------------------------------------------------------------------------- /extra/nmap/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/nmap/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nmap/sources -------------------------------------------------------------------------------- /extra/nmap/version: -------------------------------------------------------------------------------- 1 | 7.93 1 2 | -------------------------------------------------------------------------------- /extra/nodejs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nodejs/README -------------------------------------------------------------------------------- /extra/nodejs/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nodejs/build -------------------------------------------------------------------------------- /extra/nodejs/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nodejs/checksums -------------------------------------------------------------------------------- /extra/nodejs/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nodejs/depends -------------------------------------------------------------------------------- /extra/nodejs/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nodejs/sources -------------------------------------------------------------------------------- /extra/nodejs/version: -------------------------------------------------------------------------------- 1 | 19.7.0 1 2 | -------------------------------------------------------------------------------- /extra/nspr/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nspr/build -------------------------------------------------------------------------------- /extra/nspr/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nspr/checksums -------------------------------------------------------------------------------- /extra/nspr/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nspr/sources -------------------------------------------------------------------------------- /extra/nspr/version: -------------------------------------------------------------------------------- 1 | 4.35 1 2 | -------------------------------------------------------------------------------- /extra/nss/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nss/build -------------------------------------------------------------------------------- /extra/nss/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nss/checksums -------------------------------------------------------------------------------- /extra/nss/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nss/depends -------------------------------------------------------------------------------- /extra/nss/files/certdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nss/files/certdata.sh -------------------------------------------------------------------------------- /extra/nss/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nss/sources -------------------------------------------------------------------------------- /extra/nss/version: -------------------------------------------------------------------------------- 1 | 3.88.1 1 2 | -------------------------------------------------------------------------------- /extra/nvme-cli/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nvme-cli/build -------------------------------------------------------------------------------- /extra/nvme-cli/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nvme-cli/checksums -------------------------------------------------------------------------------- /extra/nvme-cli/depends: -------------------------------------------------------------------------------- 1 | json-c 2 | libnvme 3 | util-linux 4 | zlib 5 | -------------------------------------------------------------------------------- /extra/nvme-cli/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/nvme-cli/sources -------------------------------------------------------------------------------- /extra/nvme-cli/version: -------------------------------------------------------------------------------- 1 | 2.3 1 2 | -------------------------------------------------------------------------------- /extra/opendoas/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/opendoas/README -------------------------------------------------------------------------------- /extra/opendoas/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/opendoas/build -------------------------------------------------------------------------------- /extra/opendoas/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/opendoas/checksums -------------------------------------------------------------------------------- /extra/opendoas/depends: -------------------------------------------------------------------------------- 1 | bison make 2 | -------------------------------------------------------------------------------- /extra/opendoas/sources: -------------------------------------------------------------------------------- 1 | https://github.com/Duncaen/OpenDoas/archive/vVERSION.tar.gz 2 | files/doas.conf 3 | -------------------------------------------------------------------------------- /extra/opendoas/version: -------------------------------------------------------------------------------- 1 | 6.8.2 1 2 | -------------------------------------------------------------------------------- /extra/openresolv/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/openresolv/build -------------------------------------------------------------------------------- /extra/openresolv/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/openresolv/checksums -------------------------------------------------------------------------------- /extra/openresolv/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/openresolv/sources -------------------------------------------------------------------------------- /extra/openresolv/version: -------------------------------------------------------------------------------- 1 | 3.12.0 1 2 | -------------------------------------------------------------------------------- /extra/openssh/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/openssh/README -------------------------------------------------------------------------------- /extra/openssh/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/openssh/build -------------------------------------------------------------------------------- /extra/openssh/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/openssh/checksums -------------------------------------------------------------------------------- /extra/openssh/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/openssh/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/openssh/post-install -------------------------------------------------------------------------------- /extra/openssh/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/openssh/sources -------------------------------------------------------------------------------- /extra/openssh/version: -------------------------------------------------------------------------------- 1 | 9.2p1 1 2 | -------------------------------------------------------------------------------- /extra/opus/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/opus/build -------------------------------------------------------------------------------- /extra/opus/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/opus/checksums -------------------------------------------------------------------------------- /extra/opus/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/opus/sources -------------------------------------------------------------------------------- /extra/opus/version: -------------------------------------------------------------------------------- 1 | 1.3.1 1 2 | -------------------------------------------------------------------------------- /extra/p11-kit/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/p11-kit/build -------------------------------------------------------------------------------- /extra/p11-kit/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/p11-kit/checksums -------------------------------------------------------------------------------- /extra/p11-kit/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/p11-kit/sources -------------------------------------------------------------------------------- /extra/p11-kit/version: -------------------------------------------------------------------------------- 1 | 0.24.1 1 2 | -------------------------------------------------------------------------------- /extra/pango/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pango/README -------------------------------------------------------------------------------- /extra/pango/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pango/build -------------------------------------------------------------------------------- /extra/pango/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pango/checksums -------------------------------------------------------------------------------- /extra/pango/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pango/depends -------------------------------------------------------------------------------- /extra/pango/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pango/sources -------------------------------------------------------------------------------- /extra/pango/version: -------------------------------------------------------------------------------- 1 | 1.50.14 1 2 | -------------------------------------------------------------------------------- /extra/patchelf/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/patchelf/build -------------------------------------------------------------------------------- /extra/patchelf/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/patchelf/checksums -------------------------------------------------------------------------------- /extra/patchelf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/patchelf/sources -------------------------------------------------------------------------------- /extra/patchelf/version: -------------------------------------------------------------------------------- 1 | 0.17.2 1 2 | -------------------------------------------------------------------------------- /extra/pciutils/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pciutils/build -------------------------------------------------------------------------------- /extra/pciutils/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pciutils/checksums -------------------------------------------------------------------------------- /extra/pciutils/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/pciutils/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pciutils/sources -------------------------------------------------------------------------------- /extra/pciutils/version: -------------------------------------------------------------------------------- 1 | 3.9.0 1 2 | -------------------------------------------------------------------------------- /extra/pcre/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pcre/README -------------------------------------------------------------------------------- /extra/pcre/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pcre/build -------------------------------------------------------------------------------- /extra/pcre/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pcre/checksums -------------------------------------------------------------------------------- /extra/pcre/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pcre/sources -------------------------------------------------------------------------------- /extra/pcre/version: -------------------------------------------------------------------------------- 1 | 8.45 1 2 | -------------------------------------------------------------------------------- /extra/pcre2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pcre2/README -------------------------------------------------------------------------------- /extra/pcre2/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pcre2/build -------------------------------------------------------------------------------- /extra/pcre2/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pcre2/checksums -------------------------------------------------------------------------------- /extra/pcre2/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/pcre2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pcre2/sources -------------------------------------------------------------------------------- /extra/pcre2/version: -------------------------------------------------------------------------------- 1 | 10.42 1 2 | -------------------------------------------------------------------------------- /extra/perl/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/perl/build -------------------------------------------------------------------------------- /extra/perl/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/perl/checksums -------------------------------------------------------------------------------- /extra/perl/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/perl/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/perl/sources -------------------------------------------------------------------------------- /extra/perl/version: -------------------------------------------------------------------------------- 1 | 5.32.1 1 2 | -------------------------------------------------------------------------------- /extra/pfetch/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pfetch/build -------------------------------------------------------------------------------- /extra/pfetch/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pfetch/checksums -------------------------------------------------------------------------------- /extra/pfetch/sources: -------------------------------------------------------------------------------- 1 | https://github.com/dylanaraps/pfetch/archive/0.6.0.tar.gz 2 | -------------------------------------------------------------------------------- /extra/pfetch/version: -------------------------------------------------------------------------------- 1 | 0.6.0 1 2 | -------------------------------------------------------------------------------- /extra/picocom/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/picocom/build -------------------------------------------------------------------------------- /extra/picocom/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/picocom/sources -------------------------------------------------------------------------------- /extra/picocom/version: -------------------------------------------------------------------------------- 1 | 3.2a 1 2 | -------------------------------------------------------------------------------- /extra/pkgconf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pkgconf/README -------------------------------------------------------------------------------- /extra/pkgconf/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pkgconf/build -------------------------------------------------------------------------------- /extra/pkgconf/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pkgconf/checksums -------------------------------------------------------------------------------- /extra/pkgconf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/pkgconf/sources -------------------------------------------------------------------------------- /extra/pkgconf/version: -------------------------------------------------------------------------------- 1 | 1.9.4 1 2 | -------------------------------------------------------------------------------- /extra/plzip/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/plzip/build -------------------------------------------------------------------------------- /extra/plzip/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/plzip/checksums -------------------------------------------------------------------------------- /extra/plzip/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/plzip/sources -------------------------------------------------------------------------------- /extra/plzip/version: -------------------------------------------------------------------------------- 1 | 1.10 1 2 | -------------------------------------------------------------------------------- /extra/python-docutils/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/python-docutils/build -------------------------------------------------------------------------------- /extra/python-docutils/version: -------------------------------------------------------------------------------- 1 | 0.19 2 2 | -------------------------------------------------------------------------------- /extra/python-mako/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/python-mako/build -------------------------------------------------------------------------------- /extra/python-mako/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/python-mako/checksums -------------------------------------------------------------------------------- /extra/python-mako/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/python-mako/depends -------------------------------------------------------------------------------- /extra/python-mako/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/python-mako/sources -------------------------------------------------------------------------------- /extra/python-mako/version: -------------------------------------------------------------------------------- 1 | 1.2.4 1 2 | -------------------------------------------------------------------------------- /extra/python-markupsafe/depends: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /extra/python-markupsafe/sources: -------------------------------------------------------------------------------- 1 | https://github.com/pallets/markupsafe/archive/refs/tags/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/python-markupsafe/version: -------------------------------------------------------------------------------- 1 | 2.1.2 1 2 | -------------------------------------------------------------------------------- /extra/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/python/README -------------------------------------------------------------------------------- /extra/python/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/python/build -------------------------------------------------------------------------------- /extra/python/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/python/checksums -------------------------------------------------------------------------------- /extra/python/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | expat 3 | libffi 4 | openssl 5 | sqlite 6 | zlib 7 | -------------------------------------------------------------------------------- /extra/python/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/python/sources -------------------------------------------------------------------------------- /extra/python/version: -------------------------------------------------------------------------------- 1 | 3.11.2 1 2 | -------------------------------------------------------------------------------- /extra/qemu/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/qemu/build -------------------------------------------------------------------------------- /extra/qemu/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/qemu/checksums -------------------------------------------------------------------------------- /extra/qemu/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/qemu/depends -------------------------------------------------------------------------------- /extra/qemu/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/qemu/sources -------------------------------------------------------------------------------- /extra/qemu/version: -------------------------------------------------------------------------------- 1 | 7.2.0 1 2 | -------------------------------------------------------------------------------- /extra/rsync/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/rsync/build -------------------------------------------------------------------------------- /extra/rsync/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/rsync/checksums -------------------------------------------------------------------------------- /extra/rsync/depends: -------------------------------------------------------------------------------- 1 | zlib make 2 | -------------------------------------------------------------------------------- /extra/rsync/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/rsync/sources -------------------------------------------------------------------------------- /extra/rsync/version: -------------------------------------------------------------------------------- 1 | 3.2.7 1 2 | -------------------------------------------------------------------------------- /extra/rust/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/rust/build -------------------------------------------------------------------------------- /extra/rust/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/rust/checksums -------------------------------------------------------------------------------- /extra/rust/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/rust/depends -------------------------------------------------------------------------------- /extra/rust/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/rust/sources -------------------------------------------------------------------------------- /extra/rust/version: -------------------------------------------------------------------------------- 1 | 1.60.0 1 2 | -------------------------------------------------------------------------------- /extra/samurai/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/samurai/README -------------------------------------------------------------------------------- /extra/samurai/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/samurai/build -------------------------------------------------------------------------------- /extra/samurai/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/samurai/checksums -------------------------------------------------------------------------------- /extra/samurai/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/samurai/sources -------------------------------------------------------------------------------- /extra/samurai/version: -------------------------------------------------------------------------------- 1 | 1.2 1 2 | -------------------------------------------------------------------------------- /extra/scdoc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/scdoc/README -------------------------------------------------------------------------------- /extra/scdoc/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/scdoc/build -------------------------------------------------------------------------------- /extra/scdoc/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/scdoc/checksums -------------------------------------------------------------------------------- /extra/scdoc/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/scdoc/sources -------------------------------------------------------------------------------- /extra/scdoc/version: -------------------------------------------------------------------------------- 1 | 1.11.2 1 2 | -------------------------------------------------------------------------------- /extra/sdl2/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/sdl2/build -------------------------------------------------------------------------------- /extra/sdl2/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/sdl2/checksums -------------------------------------------------------------------------------- /extra/sdl2/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/sdl2/sources: -------------------------------------------------------------------------------- 1 | https://libsdl.org/release/SDL2-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/sdl2/version: -------------------------------------------------------------------------------- 1 | 2.26.3 1 2 | -------------------------------------------------------------------------------- /extra/skalibs/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/skalibs/build -------------------------------------------------------------------------------- /extra/skalibs/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/skalibs/checksums -------------------------------------------------------------------------------- /extra/skalibs/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/skalibs/sources -------------------------------------------------------------------------------- /extra/skalibs/version: -------------------------------------------------------------------------------- 1 | 2.13.1.0 1 2 | -------------------------------------------------------------------------------- /extra/sqlite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/sqlite/README -------------------------------------------------------------------------------- /extra/sqlite/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/sqlite/build -------------------------------------------------------------------------------- /extra/sqlite/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/sqlite/checksums -------------------------------------------------------------------------------- /extra/sqlite/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/sqlite/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/sqlite/sources -------------------------------------------------------------------------------- /extra/sqlite/version: -------------------------------------------------------------------------------- 1 | 3.41.0 1 2 | -------------------------------------------------------------------------------- /extra/ssu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ssu/README -------------------------------------------------------------------------------- /extra/ssu/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ssu/build -------------------------------------------------------------------------------- /extra/ssu/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ssu/checksums -------------------------------------------------------------------------------- /extra/ssu/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ssu/post-install -------------------------------------------------------------------------------- /extra/ssu/sources: -------------------------------------------------------------------------------- 1 | https://github.com/illiliti/ssu/archive/refs/tags/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/ssu/version: -------------------------------------------------------------------------------- 1 | 0.3.2 1 2 | -------------------------------------------------------------------------------- /extra/strace/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/strace/build -------------------------------------------------------------------------------- /extra/strace/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/strace/checksums -------------------------------------------------------------------------------- /extra/strace/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/strace/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/strace/sources -------------------------------------------------------------------------------- /extra/strace/version: -------------------------------------------------------------------------------- 1 | 6.2 1 2 | -------------------------------------------------------------------------------- /extra/sudo/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/sudo/build -------------------------------------------------------------------------------- /extra/sudo/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/sudo/checksums -------------------------------------------------------------------------------- /extra/sudo/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/sudo/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/sudo/post-install -------------------------------------------------------------------------------- /extra/sudo/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/sudo/sources -------------------------------------------------------------------------------- /extra/sudo/version: -------------------------------------------------------------------------------- 1 | 1.9.13p2 1 2 | -------------------------------------------------------------------------------- /extra/tmux/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/tmux/build -------------------------------------------------------------------------------- /extra/tmux/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/tmux/checksums -------------------------------------------------------------------------------- /extra/tmux/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/tmux/depends -------------------------------------------------------------------------------- /extra/tmux/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/tmux/sources -------------------------------------------------------------------------------- /extra/tmux/version: -------------------------------------------------------------------------------- 1 | 3.3a 1 2 | -------------------------------------------------------------------------------- /extra/ttf-croscore/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ttf-croscore/README -------------------------------------------------------------------------------- /extra/ttf-croscore/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ttf-croscore/build -------------------------------------------------------------------------------- /extra/ttf-croscore/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/ttf-croscore/sources -------------------------------------------------------------------------------- /extra/ttf-croscore/version: -------------------------------------------------------------------------------- 1 | 1.31.0 2 2 | -------------------------------------------------------------------------------- /extra/tzdata/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/tzdata/README -------------------------------------------------------------------------------- /extra/tzdata/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/tzdata/build -------------------------------------------------------------------------------- /extra/tzdata/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/tzdata/checksums -------------------------------------------------------------------------------- /extra/tzdata/sources: -------------------------------------------------------------------------------- 1 | https://github.com/eggert/tz/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/tzdata/version: -------------------------------------------------------------------------------- 1 | 2022g 1 2 | -------------------------------------------------------------------------------- /extra/uboot-tools/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/uboot-tools/build -------------------------------------------------------------------------------- /extra/uboot-tools/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/uboot-tools/checksums -------------------------------------------------------------------------------- /extra/uboot-tools/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/uboot-tools/sources -------------------------------------------------------------------------------- /extra/uboot-tools/version: -------------------------------------------------------------------------------- 1 | 2021.07 1 2 | -------------------------------------------------------------------------------- /extra/util-linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/util-linux/README -------------------------------------------------------------------------------- /extra/util-linux/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/util-linux/build -------------------------------------------------------------------------------- /extra/util-linux/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/util-linux/checksums -------------------------------------------------------------------------------- /extra/util-linux/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/util-linux/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/util-linux/sources -------------------------------------------------------------------------------- /extra/util-linux/version: -------------------------------------------------------------------------------- 1 | 2.38.1 1 2 | -------------------------------------------------------------------------------- /extra/vim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/vim/README -------------------------------------------------------------------------------- /extra/vim/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/vim/build -------------------------------------------------------------------------------- /extra/vim/depends: -------------------------------------------------------------------------------- 1 | ncurses 2 | -------------------------------------------------------------------------------- /extra/vim/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/vim/sources -------------------------------------------------------------------------------- /extra/vim/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /extra/visurf/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/visurf/build -------------------------------------------------------------------------------- /extra/visurf/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/visurf/checksums -------------------------------------------------------------------------------- /extra/visurf/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/visurf/depends -------------------------------------------------------------------------------- /extra/visurf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/visurf/sources -------------------------------------------------------------------------------- /extra/visurf/version: -------------------------------------------------------------------------------- 1 | 20220129 1 2 | -------------------------------------------------------------------------------- /extra/wpa_supplicant/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/wpa_supplicant/README -------------------------------------------------------------------------------- /extra/wpa_supplicant/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/wpa_supplicant/build -------------------------------------------------------------------------------- /extra/wpa_supplicant/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | openssl 3 | -------------------------------------------------------------------------------- /extra/wpa_supplicant/version: -------------------------------------------------------------------------------- 1 | 2.10 1 2 | -------------------------------------------------------------------------------- /extra/x264/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/x264/build -------------------------------------------------------------------------------- /extra/x264/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/x264/checksums -------------------------------------------------------------------------------- /extra/x264/depends: -------------------------------------------------------------------------------- 1 | nasm make 2 | -------------------------------------------------------------------------------- /extra/x264/files/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/x264/files/config.sub -------------------------------------------------------------------------------- /extra/x264/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/x264/sources -------------------------------------------------------------------------------- /extra/x264/version: -------------------------------------------------------------------------------- 1 | eaa68fad9e5d201d42fde51665f2d137ae96baf0 1 2 | -------------------------------------------------------------------------------- /extra/x265/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/x265/README -------------------------------------------------------------------------------- /extra/x265/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/x265/build -------------------------------------------------------------------------------- /extra/x265/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/x265/checksums -------------------------------------------------------------------------------- /extra/x265/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/x265/depends -------------------------------------------------------------------------------- /extra/x265/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/x265/sources -------------------------------------------------------------------------------- /extra/x265/version: -------------------------------------------------------------------------------- 1 | 3.5 1 2 | -------------------------------------------------------------------------------- /extra/xvidcore/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/xvidcore/build -------------------------------------------------------------------------------- /extra/xvidcore/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/xvidcore/checksums -------------------------------------------------------------------------------- /extra/xvidcore/depends: -------------------------------------------------------------------------------- 1 | nasm make 2 | -------------------------------------------------------------------------------- /extra/xvidcore/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/xvidcore/sources -------------------------------------------------------------------------------- /extra/xvidcore/version: -------------------------------------------------------------------------------- 1 | 1.3.7 1 2 | -------------------------------------------------------------------------------- /extra/yt-dlp/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/yt-dlp/build -------------------------------------------------------------------------------- /extra/yt-dlp/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/yt-dlp/checksums -------------------------------------------------------------------------------- /extra/yt-dlp/depends: -------------------------------------------------------------------------------- 1 | python 2 | zip make 3 | -------------------------------------------------------------------------------- /extra/yt-dlp/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/yt-dlp/sources -------------------------------------------------------------------------------- /extra/yt-dlp/version: -------------------------------------------------------------------------------- 1 | 2023.03.04 1 2 | -------------------------------------------------------------------------------- /extra/zip/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/zip/build -------------------------------------------------------------------------------- /extra/zip/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/zip/checksums -------------------------------------------------------------------------------- /extra/zip/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | -------------------------------------------------------------------------------- /extra/zip/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/infozip/zip30.tar.gz 2 | -------------------------------------------------------------------------------- /extra/zip/version: -------------------------------------------------------------------------------- 1 | 3.0 2 2 | -------------------------------------------------------------------------------- /extra/zstd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/zstd/README -------------------------------------------------------------------------------- /extra/zstd/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/zstd/build -------------------------------------------------------------------------------- /extra/zstd/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/zstd/checksums -------------------------------------------------------------------------------- /extra/zstd/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/extra/zstd/sources -------------------------------------------------------------------------------- /extra/zstd/version: -------------------------------------------------------------------------------- 1 | 1.5.4 1 2 | -------------------------------------------------------------------------------- /gcc/_binutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/_binutils/README -------------------------------------------------------------------------------- /gcc/_binutils/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/_binutils/build -------------------------------------------------------------------------------- /gcc/_binutils/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/_binutils/checksums -------------------------------------------------------------------------------- /gcc/_binutils/depends: -------------------------------------------------------------------------------- 1 | flex 2 | zlib 3 | -------------------------------------------------------------------------------- /gcc/_binutils/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/_binutils/sources -------------------------------------------------------------------------------- /gcc/_binutils/version: -------------------------------------------------------------------------------- 1 | 2.38 1 2 | -------------------------------------------------------------------------------- /gcc/_gcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/_gcc/README -------------------------------------------------------------------------------- /gcc/_gcc/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/_gcc/build -------------------------------------------------------------------------------- /gcc/_gcc/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/_gcc/checksums -------------------------------------------------------------------------------- /gcc/_gcc/files/c99: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec cc -std=c99 "$@" 3 | -------------------------------------------------------------------------------- /gcc/_gcc/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/_gcc/sources -------------------------------------------------------------------------------- /gcc/_gcc/version: -------------------------------------------------------------------------------- 1 | 12.1.0 1 2 | -------------------------------------------------------------------------------- /gcc/binutils-aarch64: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-armnone: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-armv7: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-i686: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-or1k: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-powerpc: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-powerpc64: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-powerpc64le: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-powerpcle: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-riscv64: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-x86_64: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/gcc-aarch64/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-aarch64/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-aarch64/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-aarch64/depends -------------------------------------------------------------------------------- /gcc/gcc-aarch64/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-aarch64/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-aarch64/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-armnone/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-armnone/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-armnone/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-armnone/depends -------------------------------------------------------------------------------- /gcc/gcc-armnone/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-armnone/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-armnone/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-armv7/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-armv7/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-armv7/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-armv7/depends -------------------------------------------------------------------------------- /gcc/gcc-armv7/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-armv7/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-armv7/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-i686/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-i686/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-i686/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-i686/depends -------------------------------------------------------------------------------- /gcc/gcc-i686/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-i686/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-i686/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-or1k/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-or1k/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-or1k/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-or1k/depends -------------------------------------------------------------------------------- /gcc/gcc-or1k/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-or1k/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-or1k/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-powerpc/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-powerpc/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-powerpc/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-powerpc/depends -------------------------------------------------------------------------------- /gcc/gcc-powerpc/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-powerpc/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-powerpc/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-powerpc64/depends -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-powerpc64le/depends -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-powerpcle/depends -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-riscv64/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-riscv64/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-riscv64/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-riscv64/depends -------------------------------------------------------------------------------- /gcc/gcc-riscv64/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-riscv64/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-riscv64/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-x86_64/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-x86_64/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-x86_64/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/gcc/gcc-x86_64/depends -------------------------------------------------------------------------------- /gcc/gcc-x86_64/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-x86_64/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-x86_64/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /system/atf/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/atf/build -------------------------------------------------------------------------------- /system/atf/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/atf/checksums -------------------------------------------------------------------------------- /system/atf/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/atf/depends -------------------------------------------------------------------------------- /system/atf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/atf/sources -------------------------------------------------------------------------------- /system/atf/version: -------------------------------------------------------------------------------- 1 | 2.6 1 2 | -------------------------------------------------------------------------------- /system/crust/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/crust/build -------------------------------------------------------------------------------- /system/crust/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/crust/checksums -------------------------------------------------------------------------------- /system/crust/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/crust/depends -------------------------------------------------------------------------------- /system/crust/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/crust/sources -------------------------------------------------------------------------------- /system/crust/version: -------------------------------------------------------------------------------- 1 | 0.5 1 2 | -------------------------------------------------------------------------------- /system/dtc/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/dtc/build -------------------------------------------------------------------------------- /system/dtc/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/dtc/checksums -------------------------------------------------------------------------------- /system/dtc/depends: -------------------------------------------------------------------------------- 1 | libyaml 2 | -------------------------------------------------------------------------------- /system/dtc/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/dtc/sources -------------------------------------------------------------------------------- /system/dtc/version: -------------------------------------------------------------------------------- 1 | 1.7.0 1 2 | -------------------------------------------------------------------------------- /system/linux-pinephone/depends: -------------------------------------------------------------------------------- 1 | perl make 2 | -------------------------------------------------------------------------------- /system/linux-pinephone/version: -------------------------------------------------------------------------------- 1 | 5.15.6 1 2 | -------------------------------------------------------------------------------- /system/swig/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/swig/build -------------------------------------------------------------------------------- /system/swig/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/swig/checksums -------------------------------------------------------------------------------- /system/swig/depends: -------------------------------------------------------------------------------- 1 | pcre2 2 | zlib 3 | -------------------------------------------------------------------------------- /system/swig/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/swig/sources -------------------------------------------------------------------------------- /system/swig/version: -------------------------------------------------------------------------------- 1 | 4.1.1 1 2 | -------------------------------------------------------------------------------- /system/uboot-pinephone/version: -------------------------------------------------------------------------------- 1 | 2021.10 1 2 | -------------------------------------------------------------------------------- /system/uboot-tools/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/uboot-tools/build -------------------------------------------------------------------------------- /system/uboot-tools/depends: -------------------------------------------------------------------------------- 1 | swig make 2 | -------------------------------------------------------------------------------- /system/uboot-tools/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/system/uboot-tools/sources -------------------------------------------------------------------------------- /system/uboot-tools/version: -------------------------------------------------------------------------------- 1 | 2021.07 1 2 | -------------------------------------------------------------------------------- /wayland/bemenu/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/bemenu/build -------------------------------------------------------------------------------- /wayland/bemenu/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/bemenu/checksums -------------------------------------------------------------------------------- /wayland/bemenu/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | freetype-harfbuzz 3 | glib 4 | libxkbcommon 5 | pango 6 | wayland 7 | -------------------------------------------------------------------------------- /wayland/bemenu/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/bemenu/sources -------------------------------------------------------------------------------- /wayland/bemenu/version: -------------------------------------------------------------------------------- 1 | 0.6.14 1 2 | -------------------------------------------------------------------------------- /wayland/foot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/foot/README -------------------------------------------------------------------------------- /wayland/foot/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/foot/build -------------------------------------------------------------------------------- /wayland/foot/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/foot/checksums -------------------------------------------------------------------------------- /wayland/foot/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/foot/depends -------------------------------------------------------------------------------- /wayland/foot/sources: -------------------------------------------------------------------------------- 1 | https://codeberg.org/dnkl/foot/archive/1.13.1.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/foot/version: -------------------------------------------------------------------------------- 1 | 1.13.1 2 2 | -------------------------------------------------------------------------------- /wayland/grim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/grim/README -------------------------------------------------------------------------------- /wayland/grim/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/grim/build -------------------------------------------------------------------------------- /wayland/grim/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/grim/checksums -------------------------------------------------------------------------------- /wayland/grim/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/grim/depends -------------------------------------------------------------------------------- /wayland/grim/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/grim/sources -------------------------------------------------------------------------------- /wayland/grim/version: -------------------------------------------------------------------------------- 1 | 1.4.0 1 2 | -------------------------------------------------------------------------------- /wayland/libdrm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libdrm/README -------------------------------------------------------------------------------- /wayland/libdrm/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libdrm/build -------------------------------------------------------------------------------- /wayland/libdrm/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libdrm/checksums -------------------------------------------------------------------------------- /wayland/libdrm/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libdrm/depends -------------------------------------------------------------------------------- /wayland/libdrm/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libdrm/sources -------------------------------------------------------------------------------- /wayland/libdrm/version: -------------------------------------------------------------------------------- 1 | 2.4.115 2 2 | -------------------------------------------------------------------------------- /wayland/libevdev/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libevdev/build -------------------------------------------------------------------------------- /wayland/libevdev/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libevdev/checksums -------------------------------------------------------------------------------- /wayland/libevdev/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libevdev/sources -------------------------------------------------------------------------------- /wayland/libevdev/version: -------------------------------------------------------------------------------- 1 | 1.13.0 1 2 | -------------------------------------------------------------------------------- /wayland/libinput/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libinput/README -------------------------------------------------------------------------------- /wayland/libinput/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libinput/build -------------------------------------------------------------------------------- /wayland/libinput/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libinput/checksums -------------------------------------------------------------------------------- /wayland/libinput/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libinput/depends -------------------------------------------------------------------------------- /wayland/libinput/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libinput/sources -------------------------------------------------------------------------------- /wayland/libinput/version: -------------------------------------------------------------------------------- 1 | 1.22.1 2 2 | -------------------------------------------------------------------------------- /wayland/libpciaccess/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libpciaccess/README -------------------------------------------------------------------------------- /wayland/libpciaccess/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libpciaccess/build -------------------------------------------------------------------------------- /wayland/libpciaccess/depends: -------------------------------------------------------------------------------- 1 | meson make 2 | -------------------------------------------------------------------------------- /wayland/libpciaccess/version: -------------------------------------------------------------------------------- 1 | 0.17 1 2 | -------------------------------------------------------------------------------- /wayland/libseat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libseat/README -------------------------------------------------------------------------------- /wayland/libseat/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libseat/build -------------------------------------------------------------------------------- /wayland/libseat/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libseat/checksums -------------------------------------------------------------------------------- /wayland/libseat/depends: -------------------------------------------------------------------------------- 1 | meson make 2 | -------------------------------------------------------------------------------- /wayland/libseat/files/seatd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec seatd -g video 2>&1 3 | -------------------------------------------------------------------------------- /wayland/libseat/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/libseat/sources -------------------------------------------------------------------------------- /wayland/libseat/version: -------------------------------------------------------------------------------- 1 | 0.7.0 3 2 | -------------------------------------------------------------------------------- /wayland/libxkbcommon/version: -------------------------------------------------------------------------------- 1 | 1.5.0 1 2 | -------------------------------------------------------------------------------- /wayland/mtdev/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/mtdev/build -------------------------------------------------------------------------------- /wayland/mtdev/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/mtdev/checksums -------------------------------------------------------------------------------- /wayland/mtdev/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/mtdev/sources -------------------------------------------------------------------------------- /wayland/mtdev/version: -------------------------------------------------------------------------------- 1 | 1.1.6 1 2 | -------------------------------------------------------------------------------- /wayland/pixman/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/pixman/README -------------------------------------------------------------------------------- /wayland/pixman/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/pixman/build -------------------------------------------------------------------------------- /wayland/pixman/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/pixman/checksums -------------------------------------------------------------------------------- /wayland/pixman/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/pixman-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/pixman/version: -------------------------------------------------------------------------------- 1 | 0.42.2 1 2 | -------------------------------------------------------------------------------- /wayland/slurp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/slurp/README -------------------------------------------------------------------------------- /wayland/slurp/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/slurp/build -------------------------------------------------------------------------------- /wayland/slurp/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/slurp/checksums -------------------------------------------------------------------------------- /wayland/slurp/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/slurp/depends -------------------------------------------------------------------------------- /wayland/slurp/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/slurp/sources -------------------------------------------------------------------------------- /wayland/slurp/version: -------------------------------------------------------------------------------- 1 | 1.4.0 1 2 | -------------------------------------------------------------------------------- /wayland/sway/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/sway/README -------------------------------------------------------------------------------- /wayland/sway/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/sway/build -------------------------------------------------------------------------------- /wayland/sway/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/sway/checksums -------------------------------------------------------------------------------- /wayland/sway/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/sway/depends -------------------------------------------------------------------------------- /wayland/sway/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/sway/post-install -------------------------------------------------------------------------------- /wayland/sway/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/sway/sources -------------------------------------------------------------------------------- /wayland/sway/version: -------------------------------------------------------------------------------- 1 | 1.8.1 1 2 | -------------------------------------------------------------------------------- /wayland/swayidle/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/swayidle/build -------------------------------------------------------------------------------- /wayland/swayidle/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/swayidle/depends -------------------------------------------------------------------------------- /wayland/swayidle/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/swayidle/sources -------------------------------------------------------------------------------- /wayland/swayidle/version: -------------------------------------------------------------------------------- 1 | 1.8.0 1 2 | -------------------------------------------------------------------------------- /wayland/swaylock-effects/version: -------------------------------------------------------------------------------- 1 | 1.6.11 1 2 | -------------------------------------------------------------------------------- /wayland/swaylock/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/swaylock/build -------------------------------------------------------------------------------- /wayland/swaylock/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/swaylock/depends -------------------------------------------------------------------------------- /wayland/swaylock/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/swaylock/sources -------------------------------------------------------------------------------- /wayland/swaylock/version: -------------------------------------------------------------------------------- 1 | 1.7.2 1 2 | -------------------------------------------------------------------------------- /wayland/wayland-protocols/version: -------------------------------------------------------------------------------- 1 | 1.31 1 2 | -------------------------------------------------------------------------------- /wayland/wayland/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wayland/README -------------------------------------------------------------------------------- /wayland/wayland/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wayland/build -------------------------------------------------------------------------------- /wayland/wayland/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wayland/checksums -------------------------------------------------------------------------------- /wayland/wayland/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wayland/depends -------------------------------------------------------------------------------- /wayland/wayland/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wayland/sources -------------------------------------------------------------------------------- /wayland/wayland/version: -------------------------------------------------------------------------------- 1 | 1.21.0 1 2 | -------------------------------------------------------------------------------- /wayland/wbg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wbg/README -------------------------------------------------------------------------------- /wayland/wbg/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wbg/build -------------------------------------------------------------------------------- /wayland/wbg/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wbg/checksums -------------------------------------------------------------------------------- /wayland/wbg/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wbg/depends -------------------------------------------------------------------------------- /wayland/wbg/sources: -------------------------------------------------------------------------------- 1 | https://codeberg.org/dnkl/wbg/archive/1.1.0.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/wbg/version: -------------------------------------------------------------------------------- 1 | 1.1.0 1 2 | -------------------------------------------------------------------------------- /wayland/wlr-randr/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wlr-randr/build -------------------------------------------------------------------------------- /wayland/wlr-randr/depends: -------------------------------------------------------------------------------- 1 | wayland 2 | -------------------------------------------------------------------------------- /wayland/wlr-randr/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wlr-randr/sources -------------------------------------------------------------------------------- /wayland/wlr-randr/version: -------------------------------------------------------------------------------- 1 | 0.3.0 1 2 | -------------------------------------------------------------------------------- /wayland/wlroots/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wlroots/README -------------------------------------------------------------------------------- /wayland/wlroots/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wlroots/build -------------------------------------------------------------------------------- /wayland/wlroots/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wlroots/checksums -------------------------------------------------------------------------------- /wayland/wlroots/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wlroots/depends -------------------------------------------------------------------------------- /wayland/wlroots/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wlroots/sources -------------------------------------------------------------------------------- /wayland/wlroots/version: -------------------------------------------------------------------------------- 1 | 0.16.2 1 2 | -------------------------------------------------------------------------------- /wayland/wlsunset/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wlsunset/README -------------------------------------------------------------------------------- /wayland/wlsunset/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wlsunset/build -------------------------------------------------------------------------------- /wayland/wlsunset/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wlsunset/depends -------------------------------------------------------------------------------- /wayland/wlsunset/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~kennylevinsen/wlsunset/archive/0.2.0.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/wlsunset/version: -------------------------------------------------------------------------------- 1 | 0.2.0 1 2 | -------------------------------------------------------------------------------- /wayland/wvkbd/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wvkbd/build -------------------------------------------------------------------------------- /wayland/wvkbd/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wvkbd/checksums -------------------------------------------------------------------------------- /wayland/wvkbd/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/HEAD/wayland/wvkbd/sources -------------------------------------------------------------------------------- /wayland/wvkbd/version: -------------------------------------------------------------------------------- 1 | 0.12 1 2 | -------------------------------------------------------------------------------- /wayland/xkeyboard-config/version: -------------------------------------------------------------------------------- 1 | 2.38 1 2 | --------------------------------------------------------------------------------