Moved arch to its own subdirectory
This commit is contained in:
		
							parent
							
								
									d4514416bf
								
							
						
					
					
						commit
						6c031e117f
					
				
					 70 changed files with 0 additions and 0 deletions
				
			
		
							
								
								
									
										19
									
								
								arch/pkg/tdpeuter/DOMAKEPKG
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										19
									
								
								arch/pkg/tdpeuter/DOMAKEPKG
									
										
									
									
									
										Executable file
									
								
							|  | @ -0,0 +1,19 @@ | |||
| #!/usr/bin/env bash | ||||
| 
 | ||||
| ver=$( grep "^pkgver=" "./PKGBUILD" | sed "s/^pkgver=\(.*\)$/\1/" ) | ||||
| >&2 echo "Building version ${ver}" | ||||
| 
 | ||||
| while read pkg ; do | ||||
|     match=$(find . -name "*${pkg}-${ver}*") | ||||
|     >&2 echo "Adding ${match}" | ||||
|     repo-add tdpeuter.db.tar.gz ${match} | ||||
| done <<< $( makepkg -f | grep Creating | sed "s/^.*\"\(.*\)\".*$/\1/g" ) | ||||
| 
 | ||||
| rm tdpeuter.db tdpeuter.files | ||||
| cp tdpeuter.db.tar.gz tdpeuter.db | ||||
| cp tdpeuter.files.tar.gz tdpeuter.files | ||||
| 
 | ||||
| git add --all | ||||
| git commit | ||||
| git push | ||||
| 
 | ||||
							
								
								
									
										108
									
								
								arch/pkg/tdpeuter/PKGBUILD
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										108
									
								
								arch/pkg/tdpeuter/PKGBUILD
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,108 @@ | |||
| # Maintainer: Tibo De Peuter <tibo.depeuter@gmail.com> | ||||
| pkgbase=tdpeuter | ||||
| pkgname=(tdpeuter-base tdpeuter-dev tdpeuter-desktop) | ||||
| pkgver=0.1.6 | ||||
| pkgrel=1 | ||||
| pkgdesc="Sysconfig for my systems" | ||||
| arch=(any) | ||||
| url="https://git.depeuter.tk/tdpeuter/arch-pkgs" | ||||
| license=(GPL) | ||||
| groups=(tdpeuter) | ||||
| 
 | ||||
| package_tdpeuter-base() { | ||||
|     install=base.install | ||||
| 
 | ||||
|     depends=( | ||||
|         base linux linux-firmware vim | ||||
|     ) | ||||
| 
 | ||||
|     # Networking & wireless | ||||
|     depends+=( | ||||
|         bluez bluez-utils  | ||||
|         networkmanager | ||||
|         pamixer playerctl pulseaudio-bluetooth | ||||
|     ) | ||||
| 
 | ||||
|     # Secrets | ||||
|     depends+=( | ||||
|         keychain | ||||
|     ) | ||||
| 
 | ||||
| } | ||||
| 
 | ||||
| package_tdpeuter-dev() { | ||||
|     depends=( | ||||
|         tdpeuter-base | ||||
|     ) | ||||
| 
 | ||||
|     depends+=( | ||||
|         archlinux-keyring autoconf automake binutils bison debugedit | ||||
|     	fakeroot file findutils flex gawk gcc gettext git grep groff | ||||
|     	gzip libtool m4 make man pacman patch pkgconf sed sudo | ||||
|     	texinfo which | ||||
|     ) | ||||
| 
 | ||||
|     # C/C++ programming | ||||
|     depends+=( | ||||
|         boost boost-libs cmake gcc gdb glew pkg-config sdl2 sdl2_image | ||||
|     ) | ||||
| 
 | ||||
|     # Haskell programming | ||||
|     depends+=( | ||||
|         stack | ||||
|     ) | ||||
| 
 | ||||
|     # Networking | ||||
|     depends+=( | ||||
|         termshark traceroute wireshark-qt | ||||
|     ) | ||||
| } | ||||
| 
 | ||||
| package_tdpeuter-desktop() { | ||||
|     install=desktop.install | ||||
| 
 | ||||
|     depends=( | ||||
|         tdpeuter-base | ||||
|     ) | ||||
| 
 | ||||
|     # Utilities | ||||
|     depends+=( | ||||
|         fzf jq | ||||
|         stow  | ||||
|         x11-ssh-askpass | ||||
|     ) | ||||
|     | ||||
|     # Base of sway desktop | ||||
|     depends+=( | ||||
|         brightnessctl  | ||||
|         dunst libnotify  | ||||
|         swayidle waybar xorg-xwayland | ||||
|         network-manager-applet  | ||||
|     ) | ||||
| 
 | ||||
|     # Applications | ||||
|     depends+=( | ||||
|         alacritty  | ||||
|         firefox qutebrowser | ||||
|         nextcloud-client  | ||||
|         obsidian | ||||
|     ) | ||||
| 
 | ||||
|     # Fonts | ||||
|     depends+=( | ||||
|         noto-fonts noto-fonts-cjk noto-fonts-emoji | ||||
|         otf-font-awesome | ||||
|     ) | ||||
|      | ||||
|     # Tools | ||||
|     depends+=( | ||||
|         duf | ||||
|         neofetch | ||||
|         pandoc pydflatex texlive-cleanthesis textlive-latexextra | ||||
|         vifm | ||||
|         wget | ||||
|         zathura zathura-pdf-mupdf | ||||
|         zellij | ||||
|     ) | ||||
| 
 | ||||
| } | ||||
							
								
								
									
										14
									
								
								arch/pkg/tdpeuter/base.install
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								arch/pkg/tdpeuter/base.install
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,14 @@ | |||
| post_install() { | ||||
|     >&2 echo "Enabling NetworkManager" | ||||
| 	systemctl enable --now NetworkManager.service | ||||
| 
 | ||||
|     >&2 echo "Disabling Bluetooth" | ||||
|     systemctl disable --now bluetooth.service | ||||
| 
 | ||||
|     >&2 echo "Disabling terminal bell" | ||||
|     echo "blacklist pcspkr" > /etc/modprobe.d/blacklist.conf | ||||
| 
 | ||||
|     >&2 echo "Fixing locale" | ||||
|     sed -i "s/^#\(en_GB.UTF-8 UTF-8\)$/\1/g" "/etc/locale.gen" | ||||
|     locale-gen | ||||
| } | ||||
							
								
								
									
										80
									
								
								arch/pkg/tdpeuter/desktop.install
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										80
									
								
								arch/pkg/tdpeuter/desktop.install
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,80 @@ | |||
| post_install() { | ||||
|     # Initiate the stow repo | ||||
|     >&2 echo "Cloning stow git repository" | ||||
|     git clone --depth 1 --progress https://git.depeuter.tk/tdpeuter/arch-pkgs /usr/share/tdpeuter/arch-pkgs | ||||
| 
 | ||||
|     # Installing yay | ||||
|     >&2 echo "Installing yay" | ||||
|     pacman -S --needed git base-devel | ||||
|     git clone https://aur.archlinux.org/yay.git | ||||
|     cd yay | ||||
|     su -c "makepkg -si --asdeps --noconfirm" - tdpeuter | ||||
|     | ||||
|     post_upgrade | ||||
| } | ||||
| 
 | ||||
| post_upgrade() { | ||||
|     install_apps | ||||
|      | ||||
|     code --install-extension ms-vscode.cpptools | ||||
|      | ||||
|     install_fonts | ||||
|     do_stow | ||||
| } | ||||
| 
 | ||||
| pre_remove() { | ||||
|     rm -rf /usr/share/tdpeuter/arch-pkgs | ||||
| } | ||||
| 
 | ||||
| install_apps() { | ||||
|     rm /var/lib/pacman/db.lck | ||||
| 
 | ||||
|     # Desktop | ||||
|     pkgs=" sway-git swaylock-effects-git " | ||||
| 
 | ||||
|     # Socials & entertainment | ||||
|     pkgs+=" betterbird-bin hamsket-bin jellyfin-media-player spotify " | ||||
|     pkgs+=" zoom " | ||||
| 
 | ||||
|     # Coding | ||||
|     pkgs+=" intellij-idea-ultimate-edition intellij-idea-ultimate-edition-jre " | ||||
|     pkgs+=" jetbrains-fleet pycharm-professional rstudio-desktop-bin " | ||||
|     pkgs+=" visual-studio-code-bin " | ||||
| 
 | ||||
|     # Tools | ||||
|     pkgs+=" google-chrome zenith " | ||||
| 
 | ||||
|     # Skip these | ||||
|     options="--sudoflags -A --answerclean None --answerdiff None " | ||||
|     # Do not wait | ||||
|     options+="--noconfirm " | ||||
| 
 | ||||
|     su -c "export SUDO_ASKPASS=/usr/lib/ssh/x11-ssh-askpass && yay ${options} -S ${pkgs}" - tdpeuter | ||||
| } | ||||
| 
 | ||||
| install_fonts() { | ||||
|     mkdir -p /usr/local/share/fonts/letter | ||||
| 
 | ||||
|     >&2 echo "Installing letter (font)" | ||||
|     git clone --depth 1 --progress https://github.com/tdpeuter/letter.git | ||||
|     cd letter | ||||
|     cp ttf/* /usr/local/share/fonts/letter/ | ||||
|     cp ttf-unhinted/* /usr/local/share/fonts/letter/ | ||||
|     cp woff2/* /usr/local/share/fonts/letter/ | ||||
|     cd | ||||
| } | ||||
| 
 | ||||
| do_stow() { | ||||
|     >&2 echo "Moving to dotfile directory" | ||||
|     cd /usr/share/tdpeuter/arch-pkgs/  | ||||
| 
 | ||||
|     >&2 echo "Pulling stow git repository" | ||||
|     git pull | ||||
| 
 | ||||
|     user=$(who | cut -f1 -d' ') | ||||
|     packages=$(ls ./stow) | ||||
|      | ||||
|     >&2 echo "Stowing all packages" | ||||
|     stow -d ./stow -t "/home/${user}" ${packages} | ||||
| } | ||||
| 
 | ||||
							
								
								
									
										755
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-base/.BUILDINFO
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										755
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-base/.BUILDINFO
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,755 @@ | |||
| format = 2 | ||||
| pkgname = tdpeuter-base | ||||
| pkgbase = tdpeuter | ||||
| pkgver = 0.1.6-1 | ||||
| pkgarch = any | ||||
| pkgbuild_sha256sum = ee8683179f60c20e680fe804ef258257c27af94e35b47554dc3a252379cdd10a | ||||
| packager = Unknown Packager | ||||
| builddate = 1667142191 | ||||
| builddir = /home/tdpeuter/projects/arch-pkgs/pkg/tdpeuter | ||||
| startdir = /home/tdpeuter/projects/arch-pkgs/pkg/tdpeuter | ||||
| buildtool = makepkg | ||||
| buildtoolver = 6.0.1 | ||||
| buildenv = !distcc | ||||
| buildenv = color | ||||
| buildenv = !ccache | ||||
| buildenv = check | ||||
| buildenv = !sign | ||||
| options = strip | ||||
| options = docs | ||||
| options = !libtool | ||||
| options = !staticlibs | ||||
| options = emptydirs | ||||
| options = zipman | ||||
| options = purge | ||||
| options = !debug | ||||
| options = !lto | ||||
| installed = acl-2.3.1-2-x86_64 | ||||
| installed = adobe-source-code-pro-fonts-2.038ro+1.058it+1.018var-1-any | ||||
| installed = adwaita-icon-theme-42.0+r1+gc144c3d75-1-any | ||||
| installed = alacritty-0.11.0-1-x86_64 | ||||
| installed = alsa-lib-1.2.7.2-1-x86_64 | ||||
| installed = alsa-topology-conf-1.2.5.1-1-any | ||||
| installed = alsa-ucm-conf-1.2.7.2-1-any | ||||
| installed = aom-3.5.0-1-x86_64 | ||||
| installed = archlinux-keyring-20220927-1-any | ||||
| installed = argon2-20190702-4-x86_64 | ||||
| installed = at-spi2-core-2.46.0-2-x86_64 | ||||
| installed = atkmm-2.28.3-1-x86_64 | ||||
| installed = attr-2.5.1-2-x86_64 | ||||
| installed = audit-3.0.8-1-x86_64 | ||||
| installed = autoconf-2.71-1-any | ||||
| installed = automake-1.16.5-1-any | ||||
| installed = avahi-0.8+22+gfd482a7-3-x86_64 | ||||
| installed = awesome-terminal-fonts-1.1.0-4-any | ||||
| installed = base-3-1-any | ||||
| installed = bash-5.1.016-1-x86_64 | ||||
| installed = bcg729-1.1.1-1-x86_64 | ||||
| installed = betterbird-bin-102.4.0-1-x86_64 | ||||
| installed = binutils-2.39-3-x86_64 | ||||
| installed = bison-3.8.2-4-x86_64 | ||||
| installed = blas-3.10.1-1-x86_64 | ||||
| installed = bluez-5.65-3-x86_64 | ||||
| installed = bluez-libs-5.65-3-x86_64 | ||||
| installed = bluez-utils-5.65-3-x86_64 | ||||
| installed = boost-1.80.0-3-x86_64 | ||||
| installed = boost-libs-1.80.0-3-x86_64 | ||||
| installed = brightnessctl-0.5.1-2-x86_64 | ||||
| installed = brotli-1.0.9-8-x86_64 | ||||
| installed = bzip2-1.0.8-4-x86_64 | ||||
| installed = c-ares-1.18.1-1-x86_64 | ||||
| installed = ca-certificates-20220905-1-any | ||||
| installed = ca-certificates-mozilla-3.84-1-x86_64 | ||||
| installed = ca-certificates-utils-20220905-1-any | ||||
| installed = cairo-1.17.6-2-x86_64 | ||||
| installed = cairomm-1.14.4-1-x86_64 | ||||
| installed = cantarell-fonts-1:0.303.1-1-any | ||||
| installed = cdparanoia-10.2-8-x86_64 | ||||
| installed = chrono-date-3.0.1-3-x86_64 | ||||
| installed = clang-14.0.6-3-x86_64 | ||||
| installed = cmake-3.24.2-1-x86_64 | ||||
| installed = compiler-rt-14.0.6-1-x86_64 | ||||
| installed = coreutils-9.1-1-x86_64 | ||||
| installed = cryptsetup-2.5.0-1-x86_64 | ||||
| installed = curl-7.86.0-1-x86_64 | ||||
| installed = cython-0.29.32-2-x86_64 | ||||
| installed = dav1d-1.0.0-1-x86_64 | ||||
| installed = db-5.3.28-5-x86_64 | ||||
| installed = dbus-1.14.4-1-x86_64 | ||||
| installed = dbus-glib-0.112-2-x86_64 | ||||
| installed = dconf-0.40.0-1-x86_64 | ||||
| installed = debugedit-5.0-4-x86_64 | ||||
| installed = desktop-file-utils-0.26-2-x86_64 | ||||
| installed = device-mapper-2.03.16-2-x86_64 | ||||
| installed = diffutils-3.8-1-x86_64 | ||||
| installed = dnssec-anchors-20190629-3-any | ||||
| installed = double-conversion-3.2.1-1-x86_64 | ||||
| installed = duktape-2.7.0-4-x86_64 | ||||
| installed = dunst-1.9.0-1-x86_64 | ||||
| installed = e2fsprogs-1.46.5-4-x86_64 | ||||
| installed = efibootmgr-18-1-x86_64 | ||||
| installed = efivar-38-2-x86_64 | ||||
| installed = electron18-18.3.9-3-x86_64 | ||||
| installed = electron19-19.0.13-3-x86_64 | ||||
| installed = expat-2.5.0-1-x86_64 | ||||
| installed = fakeroot-1.29-1-x86_64 | ||||
| installed = ffmpeg-2:5.1.2-1-x86_64 | ||||
| installed = fftw-3.3.10-3-x86_64 | ||||
| installed = file-5.43-1-x86_64 | ||||
| installed = filesystem-2022.10.18-1-x86_64 | ||||
| installed = findutils-4.9.0-1-x86_64 | ||||
| installed = firefox-106.0.1-1-x86_64 | ||||
| installed = flac-1.4.2-1-x86_64 | ||||
| installed = flex-2.6.4-3-x86_64 | ||||
| installed = fmt-9.1.0-1-x86_64 | ||||
| installed = fontconfig-2:2.14.1-2-x86_64 | ||||
| installed = freetype2-2.12.1-1-x86_64 | ||||
| installed = fribidi-1.0.12-1-x86_64 | ||||
| installed = fuse-common-3.12.0-1-x86_64 | ||||
| installed = fuse2-2.9.9-4-x86_64 | ||||
| installed = fzf-0.34.0-1-x86_64 | ||||
| installed = gawk-5.2.0-3-x86_64 | ||||
| installed = gc-8.2.2-1-x86_64 | ||||
| installed = gcc-12.2.0-1-x86_64 | ||||
| installed = gcc-libs-12.2.0-1-x86_64 | ||||
| installed = gcr-3.41.1-2-x86_64 | ||||
| installed = gdb-12.1-1-x86_64 | ||||
| installed = gdb-common-12.1-1-x86_64 | ||||
| installed = gdbm-1.23-1-x86_64 | ||||
| installed = gdk-pixbuf2-2.42.10-1-x86_64 | ||||
| installed = gettext-0.21.1-1-x86_64 | ||||
| installed = ghc-libs-9.0.2-1-x86_64 | ||||
| installed = giflib-5.2.1-2-x86_64 | ||||
| installed = girara-0.3.7-1-x86_64 | ||||
| installed = git-2.38.1-1-x86_64 | ||||
| installed = glew-2.2.0-5-x86_64 | ||||
| installed = glib-networking-1:2.74.0-1-x86_64 | ||||
| installed = glib2-2.74.0-2-x86_64 | ||||
| installed = glibc-2.36-6-x86_64 | ||||
| installed = glibmm-2.66.5-1-x86_64 | ||||
| installed = glslang-11.11.0-1-x86_64 | ||||
| installed = glu-9.0.2-3-x86_64 | ||||
| installed = gmp-6.2.1-2-x86_64 | ||||
| installed = gnu-free-fonts-20120503-8-any | ||||
| installed = gnupg-2.2.40-1-x86_64 | ||||
| installed = gnutls-3.7.8-1-x86_64 | ||||
| installed = go-2:1.19.2-1-x86_64 | ||||
| installed = google-chrome-107.0.5304.87-1-x86_64 | ||||
| installed = gperftools-2.10-1-x86_64 | ||||
| installed = gpgme-1.18.0-1-x86_64 | ||||
| installed = gpm-1.20.7.r38.ge82d1a6-4-x86_64 | ||||
| installed = graphene-1.10.8-1-x86_64 | ||||
| installed = graphite-1:1.3.14-2-x86_64 | ||||
| installed = grep-3.8-2-x86_64 | ||||
| installed = groff-1.22.4-7-x86_64 | ||||
| installed = grub-2:2.06.r334.g340377470-1-x86_64 | ||||
| installed = gsettings-desktop-schemas-42.0-1-any | ||||
| installed = gsm-1.0.22-1-x86_64 | ||||
| installed = gst-plugins-base-1.20.4-1-x86_64 | ||||
| installed = gst-plugins-base-libs-1.20.4-1-x86_64 | ||||
| installed = gstreamer-1.20.4-1-x86_64 | ||||
| installed = gtk-layer-shell-0.8.0-1-x86_64 | ||||
| installed = gtk-update-icon-cache-1:4.8.2-1-x86_64 | ||||
| installed = gtk3-1:3.24.34+r156+g812b3930d0-1-x86_64 | ||||
| installed = gtkmm3-3.24.7-1-x86_64 | ||||
| installed = guile-2.2.7-2-x86_64 | ||||
| installed = gumbo-parser-0.10.1-2-x86_64 | ||||
| installed = gzip-1.12-1-x86_64 | ||||
| installed = hamsket-bin-0.6.3-2-x86_64 | ||||
| installed = harfbuzz-5.3.1-3-x86_64 | ||||
| installed = haskell-aeson-2.1.0.0-3-x86_64 | ||||
| installed = haskell-annotated-wl-pprint-0.7.0-25-x86_64 | ||||
| installed = haskell-ansi-terminal-0.11.3-33-x86_64 | ||||
| installed = haskell-ansi-wl-pprint-0.6.9-350-x86_64 | ||||
| installed = haskell-appar-0.1.8-13-x86_64 | ||||
| installed = haskell-asn1-encoding-0.9.6-194-x86_64 | ||||
| installed = haskell-asn1-parse-0.9.5-194-x86_64 | ||||
| installed = haskell-asn1-types-0.3.4-173-x86_64 | ||||
| installed = haskell-assoc-1.0.2-166-x86_64 | ||||
| installed = haskell-async-2.2.4-122-x86_64 | ||||
| installed = haskell-attoparsec-0.14.4-40-x86_64 | ||||
| installed = haskell-attoparsec-iso8601-1.1.0.0-16-x86_64 | ||||
| installed = haskell-auto-update-0.1.6-281-x86_64 | ||||
| installed = haskell-base-compat-0.12.2-1-x86_64 | ||||
| installed = haskell-base-compat-batteries-0.12.2-18-x86_64 | ||||
| installed = haskell-base-orphans-0.8.7-25-x86_64 | ||||
| installed = haskell-base16-bytestring-1.0.2.0-46-x86_64 | ||||
| installed = haskell-base64-bytestring-1.2.1.0-68-x86_64 | ||||
| installed = haskell-basement-0.0.15-1-x86_64 | ||||
| installed = haskell-bifunctors-5.5.13-8-x86_64 | ||||
| installed = haskell-bitvec-1.1.3.0-17-x86_64 | ||||
| installed = haskell-blaze-builder-0.4.2.2-2-x86_64 | ||||
| installed = haskell-blaze-html-0.9.1.2-190-x86_64 | ||||
| installed = haskell-blaze-markup-0.8.2.8-96-x86_64 | ||||
| installed = haskell-byteable-0.1.1-25-x86_64 | ||||
| installed = haskell-byteorder-1.0.4-24-x86_64 | ||||
| installed = haskell-casa-client-0.0.1-524-x86_64 | ||||
| installed = haskell-casa-types-0.0.2-305-x86_64 | ||||
| installed = haskell-case-insensitive-1.2.1.0-169-x86_64 | ||||
| installed = haskell-cereal-0.5.8.3-1-x86_64 | ||||
| installed = haskell-clock-0.8.3-69-x86_64 | ||||
| installed = haskell-cmdargs-0.10.21-4-x86_64 | ||||
| installed = haskell-colour-2.3.6-142-x86_64 | ||||
| installed = haskell-comonad-5.0.8-168-x86_64 | ||||
| installed = haskell-conduit-1.3.4.3-6-x86_64 | ||||
| installed = haskell-conduit-extra-1.3.6-38-x86_64 | ||||
| installed = haskell-connection-0.3.1-222-x86_64 | ||||
| installed = haskell-constraints-0.13.4-15-x86_64 | ||||
| installed = haskell-contravariant-1.5.5-3-x86_64 | ||||
| installed = haskell-cookie-0.4.5-12-x86_64 | ||||
| installed = haskell-cryptohash-sha256-0.11.102.1-57-x86_64 | ||||
| installed = haskell-cryptonite-0.30-37-x86_64 | ||||
| installed = haskell-cryptonite-conduit-0.2.2-533-x86_64 | ||||
| installed = haskell-data-default-class-0.1.2.0-24-x86_64 | ||||
| installed = haskell-data-fix-0.3.2-68-x86_64 | ||||
| installed = haskell-digest-0.0.1.3-2-x86_64 | ||||
| installed = haskell-distributive-0.6.2.1-171-x86_64 | ||||
| installed = haskell-dlist-1.0-191-x86_64 | ||||
| installed = haskell-easy-file-0.2.2-19-x86_64 | ||||
| installed = haskell-echo-0.1.4-4-x86_64 | ||||
| installed = haskell-ed25519-0.0.5.0-24-x86_64 | ||||
| installed = haskell-enclosed-exceptions-1.0.3-219-x86_64 | ||||
| installed = haskell-erf-2.0.0.0-24-x86_64 | ||||
| installed = haskell-extra-1.7.12-13-x86_64 | ||||
| installed = haskell-fast-logger-3.1.1-59-x86_64 | ||||
| installed = haskell-file-embed-0.0.15.0-1-x86_64 | ||||
| installed = haskell-filelock-0.1.1.5-158-x86_64 | ||||
| installed = haskell-fsnotify-0.3.0.1-323-x86_64 | ||||
| installed = haskell-generic-deriving-1.14.2-9-x86_64 | ||||
| installed = haskell-generically-0.1-1-x86_64 | ||||
| installed = haskell-ghc-bignum-orphans-0.1.1-1-x86_64 | ||||
| installed = haskell-githash-0.1.6.3-2-x86_64 | ||||
| installed = haskell-glob-0.10.2-56-x86_64 | ||||
| installed = haskell-hackage-security-0.6.2.2-14-x86_64 | ||||
| installed = haskell-hashable-1.4.1.0-29-x86_64 | ||||
| installed = haskell-hi-file-parser-0.1.3.0-18-x86_64 | ||||
| installed = haskell-hinotify-0.4.1-137-x86_64 | ||||
| installed = haskell-hourglass-0.2.12-212-x86_64 | ||||
| installed = haskell-hpack-0.35.0-15-x86_64 | ||||
| installed = haskell-http-api-data-0.5-5-x86_64 | ||||
| installed = haskell-http-client-0.7.13.1-20-x86_64 | ||||
| installed = haskell-http-client-tls-0.3.6.1-64-x86_64 | ||||
| installed = haskell-http-conduit-2.3.8-254-x86_64 | ||||
| installed = haskell-http-download-0.2.0.0-518-x86_64 | ||||
| installed = haskell-http-types-0.12.3-273-x86_64 | ||||
| installed = haskell-indexed-traversable-0.1.2-2-x86_64 | ||||
| installed = haskell-indexed-traversable-instances-0.1.1.1-19-x86_64 | ||||
| installed = haskell-infer-license-0.2.0-215-x86_64 | ||||
| installed = haskell-integer-logarithms-1.0.3.1-6-x86_64 | ||||
| installed = haskell-iproute-1.7.12-44-x86_64 | ||||
| installed = haskell-libyaml-0.1.2-260-x86_64 | ||||
| installed = haskell-lift-type-0.1.0.1-4-x86_64 | ||||
| installed = haskell-lifted-async-0.10.2.3-27-x86_64 | ||||
| installed = haskell-lifted-base-0.2.3.12-233-x86_64 | ||||
| installed = haskell-lukko-0.1.1.3-130-x86_64 | ||||
| installed = haskell-megaparsec-9.2.2-8-x86_64 | ||||
| installed = haskell-memory-0.17.0-33-x86_64 | ||||
| installed = haskell-microlens-0.4.13.0-1-x86_64 | ||||
| installed = haskell-microlens-mtl-0.2.0.2-1-x86_64 | ||||
| installed = haskell-microlens-th-0.4.3.10-8-x86_64 | ||||
| installed = haskell-mime-types-0.1.1.0-1-x86_64 | ||||
| installed = haskell-mintty-0.1.4-1-x86_64 | ||||
| installed = haskell-monad-control-1.0.3.1-68-x86_64 | ||||
| installed = haskell-monad-logger-0.3.37-24-x86_64 | ||||
| installed = haskell-monad-loops-0.4.3-25-x86_64 | ||||
| installed = haskell-mono-traversable-1.0.15.3-92-x86_64 | ||||
| installed = haskell-mustache-2.4.1-89-x86_64 | ||||
| installed = haskell-neat-interpolation-0.5.1.3-94-x86_64 | ||||
| installed = haskell-network-3.1.2.7-44-x86_64 | ||||
| installed = haskell-network-uri-2.6.4.1-102-x86_64 | ||||
| installed = haskell-old-locale-1.0.0.7-30-x86_64 | ||||
| installed = haskell-old-time-1.1.0.3-30-x86_64 | ||||
| installed = haskell-onetuple-0.3.1-41-x86_64 | ||||
| installed = haskell-only-0.1-22-x86_64 | ||||
| installed = haskell-open-browser-0.2.1.0-28-x86_64 | ||||
| installed = haskell-optparse-applicative-0.17.0.0-14-x86_64 | ||||
| installed = haskell-optparse-generic-1.4.8-9-x86_64 | ||||
| installed = haskell-optparse-simple-0.1.1.4-193-x86_64 | ||||
| installed = haskell-pantry-0.5.7-25-x86_64 | ||||
| installed = haskell-parser-combinators-1.3.0-4-x86_64 | ||||
| installed = haskell-path-0.9.2-85-x86_64 | ||||
| installed = haskell-path-io-1.7.0-61-x86_64 | ||||
| installed = haskell-path-pieces-0.2.1-30-x86_64 | ||||
| installed = haskell-pem-0.2.4-250-x86_64 | ||||
| installed = haskell-persistent-2.13.3.5-4-x86_64 | ||||
| installed = haskell-persistent-sqlite-2.13.1.0-11-x86_64 | ||||
| installed = haskell-primitive-0.7.4.0-43-x86_64 | ||||
| installed = haskell-project-template-0.2.1.0-253-x86_64 | ||||
| installed = haskell-quickcheck-2.14.2-371-x86_64 | ||||
| installed = haskell-random-1.2.1.1-69-x86_64 | ||||
| installed = haskell-resource-pool-0.2.3.2-262-x86_64 | ||||
| installed = haskell-resourcet-1.2.6-16-x86_64 | ||||
| installed = haskell-retry-0.9.3.0-14-x86_64 | ||||
| installed = haskell-rio-0.1.22.0-44-x86_64 | ||||
| installed = haskell-rio-orphans-0.1.2.0-191-x86_64 | ||||
| installed = haskell-rio-prettyprint-0.1.1.0-258-x86_64 | ||||
| installed = haskell-safe-0.3.19-8-x86_64 | ||||
| installed = haskell-safe-exceptions-0.1.7.3-24-x86_64 | ||||
| installed = haskell-scientific-0.3.7.0-79-x86_64 | ||||
| installed = haskell-semialign-1.2.0.1-86-x86_64 | ||||
| installed = haskell-semigroupoids-5.3.7-70-x86_64 | ||||
| installed = haskell-shelly-1.10.0-53-x86_64 | ||||
| installed = haskell-silently-1.2.5.3-1-x86_64 | ||||
| installed = haskell-socks-0.6.1-198-x86_64 | ||||
| installed = haskell-split-0.2.3.5-12-x86_64 | ||||
| installed = haskell-splitmix-0.1.0.4-108-x86_64 | ||||
| installed = haskell-statevar-1.2.2-2-x86_64 | ||||
| installed = haskell-stm-chans-3.0.0.6-2-x86_64 | ||||
| installed = haskell-streaming-commons-0.2.2.5-2-x86_64 | ||||
| installed = haskell-strict-0.4.0.1-140-x86_64 | ||||
| installed = haskell-syb-0.7.2.2-10-x86_64 | ||||
| installed = haskell-system-filepath-0.4.14-214-x86_64 | ||||
| installed = haskell-tagged-0.8.6.1-5-x86_64 | ||||
| installed = haskell-tar-0.5.1.1-138-x86_64 | ||||
| installed = haskell-tar-conduit-0.3.2-343-x86_64 | ||||
| installed = haskell-temporary-1.3-480-x86_64 | ||||
| installed = haskell-text-metrics-0.3.2-48-x86_64 | ||||
| installed = haskell-text-short-0.1.5-45-x86_64 | ||||
| installed = haskell-th-abstraction-0.4.5.0-1-x86_64 | ||||
| installed = haskell-th-compat-0.1.4-9-x86_64 | ||||
| installed = haskell-th-expand-syns-0.4.10.0-16-x86_64 | ||||
| installed = haskell-th-lift-0.8.2-13-x86_64 | ||||
| installed = haskell-th-lift-instances-0.1.20-11-x86_64 | ||||
| installed = haskell-th-reify-many-0.1.10-69-x86_64 | ||||
| installed = haskell-these-1.1.1.1-167-x86_64 | ||||
| installed = haskell-time-compat-1.9.6.1-63-x86_64 | ||||
| installed = haskell-tls-1.6.0-20-x86_64 | ||||
| installed = haskell-transformers-base-0.4.6-68-x86_64 | ||||
| installed = haskell-transformers-compat-0.7.2-1-x86_64 | ||||
| installed = haskell-type-equality-1-12-x86_64 | ||||
| installed = haskell-typed-process-0.2.10.1-20-x86_64 | ||||
| installed = haskell-unicode-data-0.4.0-3-x86_64 | ||||
| installed = haskell-unicode-transforms-0.4.0.1-35-x86_64 | ||||
| installed = haskell-unix-compat-0.6-36-x86_64 | ||||
| installed = haskell-unix-time-0.4.8-8-x86_64 | ||||
| installed = haskell-unliftio-0.2.22.0-26-x86_64 | ||||
| installed = haskell-unliftio-core-0.2.0.1-9-x86_64 | ||||
| installed = haskell-unordered-containers-0.2.19.1-43-x86_64 | ||||
| installed = haskell-uuid-types-1.0.5-83-x86_64 | ||||
| installed = haskell-vault-0.3.1.5-122-x86_64 | ||||
| installed = haskell-vector-0.13.0.0-9-x86_64 | ||||
| installed = haskell-vector-algorithms-0.9.0.1-17-x86_64 | ||||
| installed = haskell-vector-stream-0.1.0.0-1-x86_64 | ||||
| installed = haskell-void-0.7.3-169-x86_64 | ||||
| installed = haskell-witherable-0.4.2-27-x86_64 | ||||
| installed = haskell-x509-1.7.7-23-x86_64 | ||||
| installed = haskell-x509-store-1.6.9-48-x86_64 | ||||
| installed = haskell-x509-system-1.6.7-51-x86_64 | ||||
| installed = haskell-x509-validation-1.6.12-53-x86_64 | ||||
| installed = haskell-yaml-0.11.8.0-68-x86_64 | ||||
| installed = haskell-zip-archive-0.4.2.2-6-x86_64 | ||||
| installed = haskell-zlib-0.6.3.0-26-x86_64 | ||||
| installed = hicolor-icon-theme-0.17-2-any | ||||
| installed = hidapi-0.12.0-1-x86_64 | ||||
| installed = highway-1.0.1-1-x86_64 | ||||
| installed = hwdata-0.363-1-any | ||||
| installed = hwloc-2.8.0-1-x86_64 | ||||
| installed = iana-etc-20221025-1-any | ||||
| installed = icu-72.1-1-x86_64 | ||||
| installed = imath-3.1.5-3-x86_64 | ||||
| installed = imlib2-1.9.1-2-x86_64 | ||||
| installed = intellij-idea-ultimate-edition-2022.2.3-1-x86_64 | ||||
| installed = intellij-idea-ultimate-edition-jre-2022.2.3-1-x86_64 | ||||
| installed = iproute2-6.0.0-1-x86_64 | ||||
| installed = iptables-1:1.8.8-2-x86_64 | ||||
| installed = iputils-20211215-1-x86_64 | ||||
| installed = iso-codes-4.11.0-2-any | ||||
| installed = jack2-1.9.21-1-x86_64 | ||||
| installed = jansson-2.14-2-x86_64 | ||||
| installed = jbig2dec-0.19-1-x86_64 | ||||
| installed = jetbrains-fleet-1.9.237-1-x86_64 | ||||
| installed = jq-1.6-4-x86_64 | ||||
| installed = json-c-0.16-1-x86_64 | ||||
| installed = json-glib-1.6.6-2-x86_64 | ||||
| installed = jsoncpp-1.9.5-2-x86_64 | ||||
| installed = kbd-2.5.1-1-x86_64 | ||||
| installed = keychain-2.8.5-2-any | ||||
| installed = keyutils-1.6.3-1-x86_64 | ||||
| installed = kmod-30-1-x86_64 | ||||
| installed = krb5-1.20-1-x86_64 | ||||
| installed = l-smash-2.14.5-2-x86_64 | ||||
| installed = lame-3.100-4-x86_64 | ||||
| installed = lapack-3.10.1-1-x86_64 | ||||
| installed = lcms2-2.13.1-1-x86_64 | ||||
| installed = ldns-1.8.3-1-x86_64 | ||||
| installed = less-1:608-1-x86_64 | ||||
| installed = libaio-0.3.113-1-x86_64 | ||||
| installed = libappindicator-gtk3-12.10.0.r296-2-x86_64 | ||||
| installed = libarchive-3.6.1-2-x86_64 | ||||
| installed = libass-0.16.0-1-x86_64 | ||||
| installed = libassuan-2.5.5-1-x86_64 | ||||
| installed = libasyncns-1:0.8+r3+g68cd5af-1-x86_64 | ||||
| installed = libavc1394-0.5.4-4-x86_64 | ||||
| installed = libavif-0.10.1-2-x86_64 | ||||
| installed = libbluray-1.3.3-1-x86_64 | ||||
| installed = libbpf-1.0.1-1-x86_64 | ||||
| installed = libbs2b-3.1.0-8-x86_64 | ||||
| installed = libbsd-0.11.7-1-x86_64 | ||||
| installed = libcap-2.66-1-x86_64 | ||||
| installed = libcap-ng-0.8.3-1-x86_64 | ||||
| installed = libcloudproviders-0.3.1-2-x86_64 | ||||
| installed = libcolord-1.4.6-1-x86_64 | ||||
| installed = libcups-1:2.4.2-3-x86_64 | ||||
| installed = libcurl-gnutls-7.86.0-1-x86_64 | ||||
| installed = libdaemon-0.14-5-x86_64 | ||||
| installed = libdatrie-0.2.13-1-x86_64 | ||||
| installed = libdbusmenu-glib-16.04.0-5-x86_64 | ||||
| installed = libdbusmenu-gtk3-16.04.0-5-x86_64 | ||||
| installed = libdrm-2.4.113-3-x86_64 | ||||
| installed = libedit-20210910_3.1-1-x86_64 | ||||
| installed = libelf-0.187-2-x86_64 | ||||
| installed = libepoxy-1.5.10-1-x86_64 | ||||
| installed = libevdev-1.13.0-1-x86_64 | ||||
| installed = libevent-2.1.12-2-x86_64 | ||||
| installed = libexif-0.6.24-1-x86_64 | ||||
| installed = libffi-3.4.3-1-x86_64 | ||||
| installed = libfontenc-1.1.6-1-x86_64 | ||||
| installed = libgcrypt-1.10.1-1-x86_64 | ||||
| installed = libglvnd-1.5.0-1-x86_64 | ||||
| installed = libgpg-error-1.46-1-x86_64 | ||||
| installed = libgudev-237-2-x86_64 | ||||
| installed = libical-3.0.16-2-x86_64 | ||||
| installed = libice-1.0.10-4-x86_64 | ||||
| installed = libidn2-2.3.3-1-x86_64 | ||||
| installed = libiec61883-1.2.0-6-x86_64 | ||||
| installed = libimobiledevice-1.3.0-5-x86_64 | ||||
| installed = libindicator-gtk3-12.10.1-10-x86_64 | ||||
| installed = libinput-1.21.0-1-x86_64 | ||||
| installed = libisl-0.25-1-x86_64 | ||||
| installed = libjpeg-turbo-2.1.4-2-x86_64 | ||||
| installed = libjxl-0.7.0-3-x86_64 | ||||
| installed = libksba-1.6.2-1-x86_64 | ||||
| installed = libldap-2.6.3-1-x86_64 | ||||
| installed = libmaxminddb-1.7.1-1-x86_64 | ||||
| installed = libmd-1.0.4-1-x86_64 | ||||
| installed = libmfx-22.4.4-1-x86_64 | ||||
| installed = libmm-glib-1.18.12-1-x86_64 | ||||
| installed = libmnl-1.0.5-1-x86_64 | ||||
| installed = libmodplug-0.8.9.0-3-x86_64 | ||||
| installed = libmpc-1.2.1-2-x86_64 | ||||
| installed = libmpdclient-2.20-2-x86_64 | ||||
| installed = libndp-1.8-1-x86_64 | ||||
| installed = libnetfilter_conntrack-1.0.9-1-x86_64 | ||||
| installed = libnewt-0.52.21-8-x86_64 | ||||
| installed = libnfnetlink-1.0.2-1-x86_64 | ||||
| installed = libnftnl-1.2.3-1-x86_64 | ||||
| installed = libnghttp2-1.50.0-1-x86_64 | ||||
| installed = libnl-3.7.0-1-x86_64 | ||||
| installed = libnm-1.40.2-1-x86_64 | ||||
| installed = libnma-1.10.2-1-x86_64 | ||||
| installed = libnma-common-1.10.2-1-x86_64 | ||||
| installed = libnotify-0.8.1-1-x86_64 | ||||
| installed = libnsl-2.0.0-2-x86_64 | ||||
| installed = libogg-1.3.5-1-x86_64 | ||||
| installed = libomxil-bellagio-0.9.3-3-x86_64 | ||||
| installed = libp11-kit-0.24.1-1-x86_64 | ||||
| installed = libpcap-1.10.1-2-x86_64 | ||||
| installed = libpciaccess-0.17-1-x86_64 | ||||
| installed = libpgm-5.3.128-2-x86_64 | ||||
| installed = libpipeline-1.5.6-1-x86_64 | ||||
| installed = libplist-2.2.0-5-x86_64 | ||||
| installed = libpng-1.6.38-1-x86_64 | ||||
| installed = libproxy-0.4.18-1-x86_64 | ||||
| installed = libpsl-0.21.1-1-x86_64 | ||||
| installed = libpulse-16.1-1-x86_64 | ||||
| installed = libraw1394-2.1.2-3-x86_64 | ||||
| installed = librsvg-2:2.55.1-1-x86_64 | ||||
| installed = libsamplerate-0.2.2-1-x86_64 | ||||
| installed = libsasl-2.1.28-1-x86_64 | ||||
| installed = libseccomp-2.5.4-1-x86_64 | ||||
| installed = libsecret-0.20.5-2-x86_64 | ||||
| installed = libsigc++-2.10.8-1-x86_64 | ||||
| installed = libsm-1.2.3-3-x86_64 | ||||
| installed = libsndfile-1.1.0-3-x86_64 | ||||
| installed = libsodium-1.0.18-2-x86_64 | ||||
| installed = libsoup3-3.2.1-1-x86_64 | ||||
| installed = libsoxr-0.1.3-2-x86_64 | ||||
| installed = libssh-0.10.4-1-x86_64 | ||||
| installed = libssh2-1.10.0-1-x86_64 | ||||
| installed = libstemmer-2.2.0-2-x86_64 | ||||
| installed = libsynctex-2022.62885-2-x86_64 | ||||
| installed = libsysprof-capture-3.44.0-2-x86_64 | ||||
| installed = libtasn1-4.19.0-1-x86_64 | ||||
| installed = libteam-1.31-5-x86_64 | ||||
| installed = libthai-0.1.29-1-x86_64 | ||||
| installed = libtheora-1.1.1-5-x86_64 | ||||
| installed = libtiff-4.4.0-4-x86_64 | ||||
| installed = libtirpc-1.3.3-1-x86_64 | ||||
| installed = libtool-2.4.7-5-x86_64 | ||||
| installed = libunistring-1.0-1-x86_64 | ||||
| installed = libunwind-1.6.2-1-x86_64 | ||||
| installed = libusb-1.0.26-1-x86_64 | ||||
| installed = libusbmuxd-2.0.2-1-x86_64 | ||||
| installed = libuv-1.44.2-1-x86_64 | ||||
| installed = libva-2.16.0-1-x86_64 | ||||
| installed = libvdpau-1.5-1-x86_64 | ||||
| installed = libverto-0.3.2-4-x86_64 | ||||
| installed = libvisual-0.4.0-8-x86_64 | ||||
| installed = libvorbis-1.3.7-3-x86_64 | ||||
| installed = libvpx-1.12.0-1-x86_64 | ||||
| installed = libwacom-2.5.0-1-x86_64 | ||||
| installed = libwebp-1.2.4-1-x86_64 | ||||
| installed = libx11-1.8.1-3-x86_64 | ||||
| installed = libxau-1.0.10-1-x86_64 | ||||
| installed = libxcb-1.15-1-x86_64 | ||||
| installed = libxcomposite-0.4.5-4-x86_64 | ||||
| installed = libxcrypt-4.4.28-2-x86_64 | ||||
| installed = libxcursor-1.2.1-1-x86_64 | ||||
| installed = libxcvt-0.1.2-1-x86_64 | ||||
| installed = libxdamage-1.1.5-4-x86_64 | ||||
| installed = libxdmcp-1.1.3-4-x86_64 | ||||
| installed = libxext-1.3.4-4-x86_64 | ||||
| installed = libxfixes-6.0.0-1-x86_64 | ||||
| installed = libxfont2-2.0.6-1-x86_64 | ||||
| installed = libxft-2.3.6-1-x86_64 | ||||
| installed = libxi-1.8-1-x86_64 | ||||
| installed = libxinerama-1.1.4-4-x86_64 | ||||
| installed = libxkbcommon-1.4.1-1-x86_64 | ||||
| installed = libxkbcommon-x11-1.4.1-1-x86_64 | ||||
| installed = libxkbfile-1.1.1-1-x86_64 | ||||
| installed = libxml2-2.10.3-2-x86_64 | ||||
| installed = libxmu-1.1.4-1-x86_64 | ||||
| installed = libxrandr-1.5.2-4-x86_64 | ||||
| installed = libxrender-0.9.11-1-x86_64 | ||||
| installed = libxshmfence-1.3.1-1-x86_64 | ||||
| installed = libxslt-1.1.37-2-x86_64 | ||||
| installed = libxss-1.2.3-4-x86_64 | ||||
| installed = libxt-1.2.1-1-x86_64 | ||||
| installed = libxtst-1.2.4-1-x86_64 | ||||
| installed = libxv-1.0.11-5-x86_64 | ||||
| installed = libxxf86vm-1.1.5-1-x86_64 | ||||
| installed = libyaml-0.2.5-1-x86_64 | ||||
| installed = libyuv-r2322+3aebf69d-1-x86_64 | ||||
| installed = licenses-20220125-1-any | ||||
| installed = linux-6.0.2.arch1-1-x86_64 | ||||
| installed = linux-api-headers-5.18.15-1-any | ||||
| installed = linux-firmware-20220913.f09bebf-1-any | ||||
| installed = linux-firmware-whence-20220913.f09bebf-1-any | ||||
| installed = llvm-14.0.6-3-x86_64 | ||||
| installed = llvm-libs-14.0.6-3-x86_64 | ||||
| installed = lm_sensors-1:3.6.0.r41.g31d1f125-1-x86_64 | ||||
| installed = lsof-4.96.4-1-x86_64 | ||||
| installed = lua52-5.2.4-5-x86_64 | ||||
| installed = lvm2-2.03.16-2-x86_64 | ||||
| installed = lz4-1:1.9.4-1-x86_64 | ||||
| installed = lzo-2.10-3-x86_64 | ||||
| installed = m4-1.4.19-1-x86_64 | ||||
| installed = mailcap-2.1.53-1-any | ||||
| installed = make-4.3-3-x86_64 | ||||
| installed = man-db-2.11.0-1-x86_64 | ||||
| installed = md4c-0.4.8-1-x86_64 | ||||
| installed = mesa-22.2.1-1-x86_64 | ||||
| installed = meson-0.63.3-1-any | ||||
| installed = minizip-1:1.2.13-1-x86_64 | ||||
| installed = mkinitcpio-32-2-any | ||||
| installed = mkinitcpio-busybox-1.35.0-1-x86_64 | ||||
| installed = mobile-broadband-provider-info-20220725-1-any | ||||
| installed = mpfr-4.1.0.p13-3-x86_64 | ||||
| installed = mtdev-1.1.6-2-x86_64 | ||||
| installed = ncurses-6.3-3-x86_64 | ||||
| installed = neofetch-7.1.0-2-any | ||||
| installed = nettle-3.8.1-1-x86_64 | ||||
| installed = network-manager-applet-1.28.0-1-x86_64 | ||||
| installed = networkmanager-1.40.2-1-x86_64 | ||||
| installed = nextcloud-client-2:3.6.1-1-x86_64 | ||||
| installed = ninja-1.11.1-1-x86_64 | ||||
| installed = nm-connection-editor-1.28.0-1-x86_64 | ||||
| installed = noto-fonts-20220810-1-any | ||||
| installed = noto-fonts-cjk-20220126-1-any | ||||
| installed = noto-fonts-emoji-20220920-1-any | ||||
| installed = npth-1.6-3-x86_64 | ||||
| installed = nspr-4.35-1-x86_64 | ||||
| installed = nss-3.84-1-x86_64 | ||||
| installed = numactl-2.0.16-1-x86_64 | ||||
| installed = obsidian-1.0.3-1-x86_64 | ||||
| installed = ocl-icd-2.3.1-1-x86_64 | ||||
| installed = oniguruma-6.9.8-1-x86_64 | ||||
| installed = openal-1.22.2-1-x86_64 | ||||
| installed = opencore-amr-0.1.6-1-x86_64 | ||||
| installed = openexr-3.1.5-1-x86_64 | ||||
| installed = openjpeg2-2.5.0-1-x86_64 | ||||
| installed = openmpi-4.1.4-4-x86_64 | ||||
| installed = openpmix-4.2.1-1-x86_64 | ||||
| installed = openssh-9.1p1-1-x86_64 | ||||
| installed = openssl-1.1.1.q-1-x86_64 | ||||
| installed = opus-1.3.1-3-x86_64 | ||||
| installed = orc-0.4.32-2-x86_64 | ||||
| installed = p11-kit-0.24.1-1-x86_64 | ||||
| installed = pacman-6.0.1-8-x86_64 | ||||
| installed = pacman-mirrorlist-20221016-1-any | ||||
| installed = pam-1.5.2-1-x86_64 | ||||
| installed = pambase-20221020-1-any | ||||
| installed = pamixer-1.6-2-x86_64 | ||||
| installed = pango-1:1.50.11-1-x86_64 | ||||
| installed = pangomm-2.46.3-1-x86_64 | ||||
| installed = patch-2.7.6-8-x86_64 | ||||
| installed = pciutils-3.8.0-2-x86_64 | ||||
| installed = pcre-8.45-3-x86_64 | ||||
| installed = pcre2-10.40-3-x86_64 | ||||
| installed = perl-5.36.0-1-x86_64 | ||||
| installed = perl-error-0.17029-4-any | ||||
| installed = perl-mailtools-2.21-6-any | ||||
| installed = perl-timedate-2.33-4-any | ||||
| installed = pinentry-1.2.1-1-x86_64 | ||||
| installed = pixman-0.42.0-1-x86_64 | ||||
| installed = pkgconf-1.8.0-1-x86_64 | ||||
| installed = playerctl-2.4.1-2-x86_64 | ||||
| installed = polkit-121-1-x86_64 | ||||
| installed = popt-1.18-3-x86_64 | ||||
| installed = postgresql-libs-14.5-2-x86_64 | ||||
| installed = procps-ng-3.3.17-1-x86_64 | ||||
| installed = psmisc-23.5-1-x86_64 | ||||
| installed = pulseaudio-16.1-1-x86_64 | ||||
| installed = pulseaudio-bluetooth-16.1-1-x86_64 | ||||
| installed = pycharm-professional-2022.2.3-1-x86_64 | ||||
| installed = python-3.10.8-2-x86_64 | ||||
| installed = python-appdirs-1.4.4-7-any | ||||
| installed = python-autocommand-2.2.1-1-any | ||||
| installed = python-inflect-6.0.2-1-any | ||||
| installed = python-jaraco.context-4.1.2-1-any | ||||
| installed = python-jaraco.functools-3.5.2-1-any | ||||
| installed = python-jaraco.text-3.10.0-1-any | ||||
| installed = python-jinja-1:3.1.2-2-any | ||||
| installed = python-markupsafe-2.1.1-1-x86_64 | ||||
| installed = python-more-itertools-9.0.0-1-any | ||||
| installed = python-ordered-set-4.1.0-1-any | ||||
| installed = python-packaging-21.3-1-any | ||||
| installed = python-pydantic-1.10.2-1-x86_64 | ||||
| installed = python-pyparsing-3.0.9-1-any | ||||
| installed = python-pyqt5-5.15.7-2-x86_64 | ||||
| installed = python-pyqt5-sip-12.11.0-1-x86_64 | ||||
| installed = python-pyqt5-webengine-5.15.6-1-x86_64 | ||||
| installed = python-setuptools-1:63.4.3-1-any | ||||
| installed = python-tomli-2.0.1-1-any | ||||
| installed = python-trove-classifiers-2022.10.19-1-any | ||||
| installed = python-typing_extensions-4.4.0-1-any | ||||
| installed = python-validate-pyproject-0.10.1-1-any | ||||
| installed = python-yaml-6.0-1-x86_64 | ||||
| installed = qt5-base-5.15.6+kde+r181-1-x86_64 | ||||
| installed = qt5-declarative-5.15.6+kde+r20-1-x86_64 | ||||
| installed = qt5-graphicaleffects-5.15.6+kde+r0-1-x86_64 | ||||
| installed = qt5-location-5.15.6+kde+r3-1-x86_64 | ||||
| installed = qt5-multimedia-5.15.6+kde+r1-1-x86_64 | ||||
| installed = qt5-quickcontrols-5.15.6+kde+r0-1-x86_64 | ||||
| installed = qt5-quickcontrols2-5.15.6+kde+r5-1-x86_64 | ||||
| installed = qt5-svg-5.15.6+kde+r9-1-x86_64 | ||||
| installed = qt5-translations-5.15.6+kde+r2-1-any | ||||
| installed = qt5-webchannel-5.15.6+kde+r3-1-x86_64 | ||||
| installed = qt5-webengine-5.15.11-1-x86_64 | ||||
| installed = qt5-websockets-5.15.6+kde+r2-1-x86_64 | ||||
| installed = qtkeychain-qt5-0.13.2-1-x86_64 | ||||
| installed = qutebrowser-2.5.2-1-any | ||||
| installed = r-4.2.1-3-x86_64 | ||||
| installed = rav1e-0.5.1-2-x86_64 | ||||
| installed = re2-1:20220601-1-x86_64 | ||||
| installed = readline-8.1.002-1-x86_64 | ||||
| installed = rhash-1.4.2-1-x86_64 | ||||
| installed = ripgrep-13.0.0-2-x86_64 | ||||
| installed = rstudio-desktop-bin-2022.07.1.554-2-x86_64 | ||||
| installed = rtkit-0.13-2-x86_64 | ||||
| installed = rust-1:1.64.0-1-x86_64 | ||||
| installed = sbc-2.0-1-x86_64 | ||||
| installed = scdoc-1.11.2-4-x86_64 | ||||
| installed = sdl2-2.24.1-1-x86_64 | ||||
| installed = sdl2_image-2.6.2-2-x86_64 | ||||
| installed = seatd-0.7.0-2-x86_64 | ||||
| installed = sed-4.8-1-x86_64 | ||||
| installed = shadow-4.11.1-3-x86_64 | ||||
| installed = shared-mime-info-2.0+155+gf4e7cbc-1-x86_64 | ||||
| installed = slang-2.3.3-1-x86_64 | ||||
| installed = snappy-1.1.9-2-x86_64 | ||||
| installed = sndio-1.9.0-1-x86_64 | ||||
| installed = source-highlight-3.1.9-9-x86_64 | ||||
| installed = spandsp-0.0.6-3-x86_64 | ||||
| installed = spdlog-1.10.0-3-x86_64 | ||||
| installed = speex-1.2.1-1-x86_64 | ||||
| installed = speexdsp-1.2.1-1-x86_64 | ||||
| installed = spotify-1:1.1.84.716-2-x86_64 | ||||
| installed = sqlite-3.39.4-1-x86_64 | ||||
| installed = srt-1.5.1-1-x86_64 | ||||
| installed = stack-2.7.5-188-x86_64 | ||||
| installed = stow-2.3.1-3-any | ||||
| installed = sudo-1.9.12-1-x86_64 | ||||
| installed = svt-av1-1.3.0-1-x86_64 | ||||
| installed = sway-git-r6980.8aa89dc2-1-x86_64 | ||||
| installed = sway-git-debug-r6980.8aa89dc2-1-x86_64 | ||||
| installed = swaybg-git-r123.deed2ed-1-x86_64 | ||||
| installed = swayidle-1.7.1-3-x86_64 | ||||
| installed = swaylock-effects-git-r403.4b54b85-1-x86_64 | ||||
| installed = sxiv-26-1-x86_64 | ||||
| installed = sysfsutils-2.1.1-1-x86_64 | ||||
| installed = systemd-251.7-1-x86_64 | ||||
| installed = systemd-libs-251.7-1-x86_64 | ||||
| installed = systemd-sysvcompat-251.7-1-x86_64 | ||||
| installed = tar-1.34-1-x86_64 | ||||
| installed = tdb-1.4.7-1-x86_64 | ||||
| installed = tdpeuter-base-0.1.4-1-any | ||||
| installed = tdpeuter-desktop-0.1.4-1-any | ||||
| installed = tdpeuter-dev-0.1.4-1-any | ||||
| installed = termshark-2.4.0-1-x86_64 | ||||
| installed = texinfo-6.8-2-x86_64 | ||||
| installed = thin-provisioning-tools-0.9.0-1-x86_64 | ||||
| installed = tpm2-tss-3.2.0-1-x86_64 | ||||
| installed = traceroute-2.1.0-5-x86_64 | ||||
| installed = tracker3-3.4.1-1-x86_64 | ||||
| installed = tslib-1.22-1-x86_64 | ||||
| installed = ttf-liberation-2.1.5-1-any | ||||
| installed = tzdata-2022e-1-x86_64 | ||||
| installed = unzip-6.0-19-x86_64 | ||||
| installed = upower-1.90.0-1-x86_64 | ||||
| installed = usbmuxd-1.1.1-1-x86_64 | ||||
| installed = util-linux-2.38.1-1-x86_64 | ||||
| installed = util-linux-libs-2.38.1-1-x86_64 | ||||
| installed = v4l-utils-1.22.1-1-x86_64 | ||||
| installed = vid.stab-1.1-3-x86_64 | ||||
| installed = vifm-0.12.1-1-x86_64 | ||||
| installed = vim-9.0.0814-1-x86_64 | ||||
| installed = vim-runtime-9.0.0814-1-x86_64 | ||||
| installed = visual-studio-code-bin-1.72.2-1-x86_64 | ||||
| installed = vmaf-2.3.1-1-x86_64 | ||||
| installed = vulkan-headers-1:1.3.227-1-any | ||||
| installed = vulkan-icd-loader-1.3.226-1-x86_64 | ||||
| installed = vulkan-validation-layers-1.3.224.1-1-x86_64 | ||||
| installed = waybar-0.9.13-2-x86_64 | ||||
| installed = wayland-1.21.0-1-x86_64 | ||||
| installed = wayland-protocols-1.27-1-any | ||||
| installed = webrtc-audio-processing-0.3.1-3-x86_64 | ||||
| installed = which-2.21-5-x86_64 | ||||
| installed = wireshark-cli-4.0.1-1-x86_64 | ||||
| installed = wireshark-qt-4.0.1-1-x86_64 | ||||
| installed = wlroots-git-0.16.0.r5805.bc416ed7-1-x86_64 | ||||
| installed = wlroots-git-debug-0.16.0.r5805.bc416ed7-1-x86_64 | ||||
| installed = wpa_supplicant-2:2.10-5-x86_64 | ||||
| installed = x11-ssh-askpass-1.2.4.1-7-x86_64 | ||||
| installed = x264-3:0.164.r3095.baee400-4-x86_64 | ||||
| installed = x265-3.5-3-x86_64 | ||||
| installed = xcb-proto-1.15.2-1-any | ||||
| installed = xcb-util-0.4.0-4-x86_64 | ||||
| installed = xcb-util-errors-1.0.1-1-x86_64 | ||||
| installed = xcb-util-image-0.4.1-2-x86_64 | ||||
| installed = xcb-util-keysyms-0.4.1-4-x86_64 | ||||
| installed = xcb-util-renderutil-0.3.10-1-x86_64 | ||||
| installed = xcb-util-wm-0.4.2-1-x86_64 | ||||
| installed = xdg-utils-1.1.3+21+g1a58bc2-2-any | ||||
| installed = xkeyboard-config-2.37-1-any | ||||
| installed = xorg-fonts-encodings-1.0.6-1-any | ||||
| installed = xorg-server-common-21.1.4-1-x86_64 | ||||
| installed = xorg-setxkbmap-1.3.3-1-x86_64 | ||||
| installed = xorg-xkbcomp-1.4.5-1-x86_64 | ||||
| installed = xorg-xprop-1.2.5-1-x86_64 | ||||
| installed = xorg-xrandr-1.5.1-2-x86_64 | ||||
| installed = xorg-xset-1.2.4-3-x86_64 | ||||
| installed = xorg-xwayland-22.1.4-2-x86_64 | ||||
| installed = xorgproto-2022.2-1-any | ||||
| installed = xvidcore-1.3.7-2-x86_64 | ||||
| installed = xz-5.2.7-1-x86_64 | ||||
| installed = yay-11.3.0-1-x86_64 | ||||
| installed = zathura-0.5.1-1-x86_64 | ||||
| installed = zathura-pdf-mupdf-0.3.9-1-x86_64 | ||||
| installed = zellij-0.32.0-1-x86_64 | ||||
| installed = zenith-0.13.1-2-x86_64 | ||||
| installed = zeromq-4.3.4-2-x86_64 | ||||
| installed = zimg-3.0.4-1-x86_64 | ||||
| installed = zip-3.0-10-x86_64 | ||||
| installed = zlib-1:1.2.13-1-x86_64 | ||||
| installed = zstd-1.5.2-7-x86_64 | ||||
							
								
								
									
										14
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-base/.INSTALL
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-base/.INSTALL
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,14 @@ | |||
| post_install() { | ||||
|     >&2 echo "Enabling NetworkManager" | ||||
| 	systemctl enable --now NetworkManager.service | ||||
| 
 | ||||
|     >&2 echo "Disabling Bluetooth" | ||||
|     systemctl disable --now bluetooth.service | ||||
| 
 | ||||
|     >&2 echo "Disabling terminal bell" | ||||
|     echo "blacklist pcspkr" > /etc/modprobe.d/blacklist.conf | ||||
| 
 | ||||
|     >&2 echo "Fixing locale" | ||||
|     sed -i "s/^#\(en_GB.UTF-8 UTF-8\)$/\1/g" "/etc/locale.gen" | ||||
|     locale-gen | ||||
| } | ||||
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-base/.MTREE
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-base/.MTREE
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										24
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-base/.PKGINFO
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-base/.PKGINFO
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,24 @@ | |||
| # Generated by makepkg 6.0.1 | ||||
| # using fakeroot version 1.29 | ||||
| pkgname = tdpeuter-base | ||||
| pkgbase = tdpeuter | ||||
| pkgver = 0.1.6-1 | ||||
| pkgdesc = Sysconfig for my systems | ||||
| url = https://git.depeuter.tk/tdpeuter/arch-pkgs | ||||
| builddate = 1667142191 | ||||
| packager = Unknown Packager | ||||
| size = 0 | ||||
| arch = any | ||||
| license = GPL | ||||
| group = tdpeuter | ||||
| depend = base | ||||
| depend = linux | ||||
| depend = linux-firmware | ||||
| depend = vim | ||||
| depend = bluez | ||||
| depend = bluez-utils | ||||
| depend = networkmanager | ||||
| depend = pamixer | ||||
| depend = playerctl | ||||
| depend = pulseaudio-bluetooth | ||||
| depend = keychain | ||||
							
								
								
									
										755
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-desktop/.BUILDINFO
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										755
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-desktop/.BUILDINFO
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,755 @@ | |||
| format = 2 | ||||
| pkgname = tdpeuter-desktop | ||||
| pkgbase = tdpeuter | ||||
| pkgver = 0.1.6-1 | ||||
| pkgarch = any | ||||
| pkgbuild_sha256sum = ee8683179f60c20e680fe804ef258257c27af94e35b47554dc3a252379cdd10a | ||||
| packager = Unknown Packager | ||||
| builddate = 1667142191 | ||||
| builddir = /home/tdpeuter/projects/arch-pkgs/pkg/tdpeuter | ||||
| startdir = /home/tdpeuter/projects/arch-pkgs/pkg/tdpeuter | ||||
| buildtool = makepkg | ||||
| buildtoolver = 6.0.1 | ||||
| buildenv = !distcc | ||||
| buildenv = color | ||||
| buildenv = !ccache | ||||
| buildenv = check | ||||
| buildenv = !sign | ||||
| options = strip | ||||
| options = docs | ||||
| options = !libtool | ||||
| options = !staticlibs | ||||
| options = emptydirs | ||||
| options = zipman | ||||
| options = purge | ||||
| options = !debug | ||||
| options = !lto | ||||
| installed = acl-2.3.1-2-x86_64 | ||||
| installed = adobe-source-code-pro-fonts-2.038ro+1.058it+1.018var-1-any | ||||
| installed = adwaita-icon-theme-42.0+r1+gc144c3d75-1-any | ||||
| installed = alacritty-0.11.0-1-x86_64 | ||||
| installed = alsa-lib-1.2.7.2-1-x86_64 | ||||
| installed = alsa-topology-conf-1.2.5.1-1-any | ||||
| installed = alsa-ucm-conf-1.2.7.2-1-any | ||||
| installed = aom-3.5.0-1-x86_64 | ||||
| installed = archlinux-keyring-20220927-1-any | ||||
| installed = argon2-20190702-4-x86_64 | ||||
| installed = at-spi2-core-2.46.0-2-x86_64 | ||||
| installed = atkmm-2.28.3-1-x86_64 | ||||
| installed = attr-2.5.1-2-x86_64 | ||||
| installed = audit-3.0.8-1-x86_64 | ||||
| installed = autoconf-2.71-1-any | ||||
| installed = automake-1.16.5-1-any | ||||
| installed = avahi-0.8+22+gfd482a7-3-x86_64 | ||||
| installed = awesome-terminal-fonts-1.1.0-4-any | ||||
| installed = base-3-1-any | ||||
| installed = bash-5.1.016-1-x86_64 | ||||
| installed = bcg729-1.1.1-1-x86_64 | ||||
| installed = betterbird-bin-102.4.0-1-x86_64 | ||||
| installed = binutils-2.39-3-x86_64 | ||||
| installed = bison-3.8.2-4-x86_64 | ||||
| installed = blas-3.10.1-1-x86_64 | ||||
| installed = bluez-5.65-3-x86_64 | ||||
| installed = bluez-libs-5.65-3-x86_64 | ||||
| installed = bluez-utils-5.65-3-x86_64 | ||||
| installed = boost-1.80.0-3-x86_64 | ||||
| installed = boost-libs-1.80.0-3-x86_64 | ||||
| installed = brightnessctl-0.5.1-2-x86_64 | ||||
| installed = brotli-1.0.9-8-x86_64 | ||||
| installed = bzip2-1.0.8-4-x86_64 | ||||
| installed = c-ares-1.18.1-1-x86_64 | ||||
| installed = ca-certificates-20220905-1-any | ||||
| installed = ca-certificates-mozilla-3.84-1-x86_64 | ||||
| installed = ca-certificates-utils-20220905-1-any | ||||
| installed = cairo-1.17.6-2-x86_64 | ||||
| installed = cairomm-1.14.4-1-x86_64 | ||||
| installed = cantarell-fonts-1:0.303.1-1-any | ||||
| installed = cdparanoia-10.2-8-x86_64 | ||||
| installed = chrono-date-3.0.1-3-x86_64 | ||||
| installed = clang-14.0.6-3-x86_64 | ||||
| installed = cmake-3.24.2-1-x86_64 | ||||
| installed = compiler-rt-14.0.6-1-x86_64 | ||||
| installed = coreutils-9.1-1-x86_64 | ||||
| installed = cryptsetup-2.5.0-1-x86_64 | ||||
| installed = curl-7.86.0-1-x86_64 | ||||
| installed = cython-0.29.32-2-x86_64 | ||||
| installed = dav1d-1.0.0-1-x86_64 | ||||
| installed = db-5.3.28-5-x86_64 | ||||
| installed = dbus-1.14.4-1-x86_64 | ||||
| installed = dbus-glib-0.112-2-x86_64 | ||||
| installed = dconf-0.40.0-1-x86_64 | ||||
| installed = debugedit-5.0-4-x86_64 | ||||
| installed = desktop-file-utils-0.26-2-x86_64 | ||||
| installed = device-mapper-2.03.16-2-x86_64 | ||||
| installed = diffutils-3.8-1-x86_64 | ||||
| installed = dnssec-anchors-20190629-3-any | ||||
| installed = double-conversion-3.2.1-1-x86_64 | ||||
| installed = duktape-2.7.0-4-x86_64 | ||||
| installed = dunst-1.9.0-1-x86_64 | ||||
| installed = e2fsprogs-1.46.5-4-x86_64 | ||||
| installed = efibootmgr-18-1-x86_64 | ||||
| installed = efivar-38-2-x86_64 | ||||
| installed = electron18-18.3.9-3-x86_64 | ||||
| installed = electron19-19.0.13-3-x86_64 | ||||
| installed = expat-2.5.0-1-x86_64 | ||||
| installed = fakeroot-1.29-1-x86_64 | ||||
| installed = ffmpeg-2:5.1.2-1-x86_64 | ||||
| installed = fftw-3.3.10-3-x86_64 | ||||
| installed = file-5.43-1-x86_64 | ||||
| installed = filesystem-2022.10.18-1-x86_64 | ||||
| installed = findutils-4.9.0-1-x86_64 | ||||
| installed = firefox-106.0.1-1-x86_64 | ||||
| installed = flac-1.4.2-1-x86_64 | ||||
| installed = flex-2.6.4-3-x86_64 | ||||
| installed = fmt-9.1.0-1-x86_64 | ||||
| installed = fontconfig-2:2.14.1-2-x86_64 | ||||
| installed = freetype2-2.12.1-1-x86_64 | ||||
| installed = fribidi-1.0.12-1-x86_64 | ||||
| installed = fuse-common-3.12.0-1-x86_64 | ||||
| installed = fuse2-2.9.9-4-x86_64 | ||||
| installed = fzf-0.34.0-1-x86_64 | ||||
| installed = gawk-5.2.0-3-x86_64 | ||||
| installed = gc-8.2.2-1-x86_64 | ||||
| installed = gcc-12.2.0-1-x86_64 | ||||
| installed = gcc-libs-12.2.0-1-x86_64 | ||||
| installed = gcr-3.41.1-2-x86_64 | ||||
| installed = gdb-12.1-1-x86_64 | ||||
| installed = gdb-common-12.1-1-x86_64 | ||||
| installed = gdbm-1.23-1-x86_64 | ||||
| installed = gdk-pixbuf2-2.42.10-1-x86_64 | ||||
| installed = gettext-0.21.1-1-x86_64 | ||||
| installed = ghc-libs-9.0.2-1-x86_64 | ||||
| installed = giflib-5.2.1-2-x86_64 | ||||
| installed = girara-0.3.7-1-x86_64 | ||||
| installed = git-2.38.1-1-x86_64 | ||||
| installed = glew-2.2.0-5-x86_64 | ||||
| installed = glib-networking-1:2.74.0-1-x86_64 | ||||
| installed = glib2-2.74.0-2-x86_64 | ||||
| installed = glibc-2.36-6-x86_64 | ||||
| installed = glibmm-2.66.5-1-x86_64 | ||||
| installed = glslang-11.11.0-1-x86_64 | ||||
| installed = glu-9.0.2-3-x86_64 | ||||
| installed = gmp-6.2.1-2-x86_64 | ||||
| installed = gnu-free-fonts-20120503-8-any | ||||
| installed = gnupg-2.2.40-1-x86_64 | ||||
| installed = gnutls-3.7.8-1-x86_64 | ||||
| installed = go-2:1.19.2-1-x86_64 | ||||
| installed = google-chrome-107.0.5304.87-1-x86_64 | ||||
| installed = gperftools-2.10-1-x86_64 | ||||
| installed = gpgme-1.18.0-1-x86_64 | ||||
| installed = gpm-1.20.7.r38.ge82d1a6-4-x86_64 | ||||
| installed = graphene-1.10.8-1-x86_64 | ||||
| installed = graphite-1:1.3.14-2-x86_64 | ||||
| installed = grep-3.8-2-x86_64 | ||||
| installed = groff-1.22.4-7-x86_64 | ||||
| installed = grub-2:2.06.r334.g340377470-1-x86_64 | ||||
| installed = gsettings-desktop-schemas-42.0-1-any | ||||
| installed = gsm-1.0.22-1-x86_64 | ||||
| installed = gst-plugins-base-1.20.4-1-x86_64 | ||||
| installed = gst-plugins-base-libs-1.20.4-1-x86_64 | ||||
| installed = gstreamer-1.20.4-1-x86_64 | ||||
| installed = gtk-layer-shell-0.8.0-1-x86_64 | ||||
| installed = gtk-update-icon-cache-1:4.8.2-1-x86_64 | ||||
| installed = gtk3-1:3.24.34+r156+g812b3930d0-1-x86_64 | ||||
| installed = gtkmm3-3.24.7-1-x86_64 | ||||
| installed = guile-2.2.7-2-x86_64 | ||||
| installed = gumbo-parser-0.10.1-2-x86_64 | ||||
| installed = gzip-1.12-1-x86_64 | ||||
| installed = hamsket-bin-0.6.3-2-x86_64 | ||||
| installed = harfbuzz-5.3.1-3-x86_64 | ||||
| installed = haskell-aeson-2.1.0.0-3-x86_64 | ||||
| installed = haskell-annotated-wl-pprint-0.7.0-25-x86_64 | ||||
| installed = haskell-ansi-terminal-0.11.3-33-x86_64 | ||||
| installed = haskell-ansi-wl-pprint-0.6.9-350-x86_64 | ||||
| installed = haskell-appar-0.1.8-13-x86_64 | ||||
| installed = haskell-asn1-encoding-0.9.6-194-x86_64 | ||||
| installed = haskell-asn1-parse-0.9.5-194-x86_64 | ||||
| installed = haskell-asn1-types-0.3.4-173-x86_64 | ||||
| installed = haskell-assoc-1.0.2-166-x86_64 | ||||
| installed = haskell-async-2.2.4-122-x86_64 | ||||
| installed = haskell-attoparsec-0.14.4-40-x86_64 | ||||
| installed = haskell-attoparsec-iso8601-1.1.0.0-16-x86_64 | ||||
| installed = haskell-auto-update-0.1.6-281-x86_64 | ||||
| installed = haskell-base-compat-0.12.2-1-x86_64 | ||||
| installed = haskell-base-compat-batteries-0.12.2-18-x86_64 | ||||
| installed = haskell-base-orphans-0.8.7-25-x86_64 | ||||
| installed = haskell-base16-bytestring-1.0.2.0-46-x86_64 | ||||
| installed = haskell-base64-bytestring-1.2.1.0-68-x86_64 | ||||
| installed = haskell-basement-0.0.15-1-x86_64 | ||||
| installed = haskell-bifunctors-5.5.13-8-x86_64 | ||||
| installed = haskell-bitvec-1.1.3.0-17-x86_64 | ||||
| installed = haskell-blaze-builder-0.4.2.2-2-x86_64 | ||||
| installed = haskell-blaze-html-0.9.1.2-190-x86_64 | ||||
| installed = haskell-blaze-markup-0.8.2.8-96-x86_64 | ||||
| installed = haskell-byteable-0.1.1-25-x86_64 | ||||
| installed = haskell-byteorder-1.0.4-24-x86_64 | ||||
| installed = haskell-casa-client-0.0.1-524-x86_64 | ||||
| installed = haskell-casa-types-0.0.2-305-x86_64 | ||||
| installed = haskell-case-insensitive-1.2.1.0-169-x86_64 | ||||
| installed = haskell-cereal-0.5.8.3-1-x86_64 | ||||
| installed = haskell-clock-0.8.3-69-x86_64 | ||||
| installed = haskell-cmdargs-0.10.21-4-x86_64 | ||||
| installed = haskell-colour-2.3.6-142-x86_64 | ||||
| installed = haskell-comonad-5.0.8-168-x86_64 | ||||
| installed = haskell-conduit-1.3.4.3-6-x86_64 | ||||
| installed = haskell-conduit-extra-1.3.6-38-x86_64 | ||||
| installed = haskell-connection-0.3.1-222-x86_64 | ||||
| installed = haskell-constraints-0.13.4-15-x86_64 | ||||
| installed = haskell-contravariant-1.5.5-3-x86_64 | ||||
| installed = haskell-cookie-0.4.5-12-x86_64 | ||||
| installed = haskell-cryptohash-sha256-0.11.102.1-57-x86_64 | ||||
| installed = haskell-cryptonite-0.30-37-x86_64 | ||||
| installed = haskell-cryptonite-conduit-0.2.2-533-x86_64 | ||||
| installed = haskell-data-default-class-0.1.2.0-24-x86_64 | ||||
| installed = haskell-data-fix-0.3.2-68-x86_64 | ||||
| installed = haskell-digest-0.0.1.3-2-x86_64 | ||||
| installed = haskell-distributive-0.6.2.1-171-x86_64 | ||||
| installed = haskell-dlist-1.0-191-x86_64 | ||||
| installed = haskell-easy-file-0.2.2-19-x86_64 | ||||
| installed = haskell-echo-0.1.4-4-x86_64 | ||||
| installed = haskell-ed25519-0.0.5.0-24-x86_64 | ||||
| installed = haskell-enclosed-exceptions-1.0.3-219-x86_64 | ||||
| installed = haskell-erf-2.0.0.0-24-x86_64 | ||||
| installed = haskell-extra-1.7.12-13-x86_64 | ||||
| installed = haskell-fast-logger-3.1.1-59-x86_64 | ||||
| installed = haskell-file-embed-0.0.15.0-1-x86_64 | ||||
| installed = haskell-filelock-0.1.1.5-158-x86_64 | ||||
| installed = haskell-fsnotify-0.3.0.1-323-x86_64 | ||||
| installed = haskell-generic-deriving-1.14.2-9-x86_64 | ||||
| installed = haskell-generically-0.1-1-x86_64 | ||||
| installed = haskell-ghc-bignum-orphans-0.1.1-1-x86_64 | ||||
| installed = haskell-githash-0.1.6.3-2-x86_64 | ||||
| installed = haskell-glob-0.10.2-56-x86_64 | ||||
| installed = haskell-hackage-security-0.6.2.2-14-x86_64 | ||||
| installed = haskell-hashable-1.4.1.0-29-x86_64 | ||||
| installed = haskell-hi-file-parser-0.1.3.0-18-x86_64 | ||||
| installed = haskell-hinotify-0.4.1-137-x86_64 | ||||
| installed = haskell-hourglass-0.2.12-212-x86_64 | ||||
| installed = haskell-hpack-0.35.0-15-x86_64 | ||||
| installed = haskell-http-api-data-0.5-5-x86_64 | ||||
| installed = haskell-http-client-0.7.13.1-20-x86_64 | ||||
| installed = haskell-http-client-tls-0.3.6.1-64-x86_64 | ||||
| installed = haskell-http-conduit-2.3.8-254-x86_64 | ||||
| installed = haskell-http-download-0.2.0.0-518-x86_64 | ||||
| installed = haskell-http-types-0.12.3-273-x86_64 | ||||
| installed = haskell-indexed-traversable-0.1.2-2-x86_64 | ||||
| installed = haskell-indexed-traversable-instances-0.1.1.1-19-x86_64 | ||||
| installed = haskell-infer-license-0.2.0-215-x86_64 | ||||
| installed = haskell-integer-logarithms-1.0.3.1-6-x86_64 | ||||
| installed = haskell-iproute-1.7.12-44-x86_64 | ||||
| installed = haskell-libyaml-0.1.2-260-x86_64 | ||||
| installed = haskell-lift-type-0.1.0.1-4-x86_64 | ||||
| installed = haskell-lifted-async-0.10.2.3-27-x86_64 | ||||
| installed = haskell-lifted-base-0.2.3.12-233-x86_64 | ||||
| installed = haskell-lukko-0.1.1.3-130-x86_64 | ||||
| installed = haskell-megaparsec-9.2.2-8-x86_64 | ||||
| installed = haskell-memory-0.17.0-33-x86_64 | ||||
| installed = haskell-microlens-0.4.13.0-1-x86_64 | ||||
| installed = haskell-microlens-mtl-0.2.0.2-1-x86_64 | ||||
| installed = haskell-microlens-th-0.4.3.10-8-x86_64 | ||||
| installed = haskell-mime-types-0.1.1.0-1-x86_64 | ||||
| installed = haskell-mintty-0.1.4-1-x86_64 | ||||
| installed = haskell-monad-control-1.0.3.1-68-x86_64 | ||||
| installed = haskell-monad-logger-0.3.37-24-x86_64 | ||||
| installed = haskell-monad-loops-0.4.3-25-x86_64 | ||||
| installed = haskell-mono-traversable-1.0.15.3-92-x86_64 | ||||
| installed = haskell-mustache-2.4.1-89-x86_64 | ||||
| installed = haskell-neat-interpolation-0.5.1.3-94-x86_64 | ||||
| installed = haskell-network-3.1.2.7-44-x86_64 | ||||
| installed = haskell-network-uri-2.6.4.1-102-x86_64 | ||||
| installed = haskell-old-locale-1.0.0.7-30-x86_64 | ||||
| installed = haskell-old-time-1.1.0.3-30-x86_64 | ||||
| installed = haskell-onetuple-0.3.1-41-x86_64 | ||||
| installed = haskell-only-0.1-22-x86_64 | ||||
| installed = haskell-open-browser-0.2.1.0-28-x86_64 | ||||
| installed = haskell-optparse-applicative-0.17.0.0-14-x86_64 | ||||
| installed = haskell-optparse-generic-1.4.8-9-x86_64 | ||||
| installed = haskell-optparse-simple-0.1.1.4-193-x86_64 | ||||
| installed = haskell-pantry-0.5.7-25-x86_64 | ||||
| installed = haskell-parser-combinators-1.3.0-4-x86_64 | ||||
| installed = haskell-path-0.9.2-85-x86_64 | ||||
| installed = haskell-path-io-1.7.0-61-x86_64 | ||||
| installed = haskell-path-pieces-0.2.1-30-x86_64 | ||||
| installed = haskell-pem-0.2.4-250-x86_64 | ||||
| installed = haskell-persistent-2.13.3.5-4-x86_64 | ||||
| installed = haskell-persistent-sqlite-2.13.1.0-11-x86_64 | ||||
| installed = haskell-primitive-0.7.4.0-43-x86_64 | ||||
| installed = haskell-project-template-0.2.1.0-253-x86_64 | ||||
| installed = haskell-quickcheck-2.14.2-371-x86_64 | ||||
| installed = haskell-random-1.2.1.1-69-x86_64 | ||||
| installed = haskell-resource-pool-0.2.3.2-262-x86_64 | ||||
| installed = haskell-resourcet-1.2.6-16-x86_64 | ||||
| installed = haskell-retry-0.9.3.0-14-x86_64 | ||||
| installed = haskell-rio-0.1.22.0-44-x86_64 | ||||
| installed = haskell-rio-orphans-0.1.2.0-191-x86_64 | ||||
| installed = haskell-rio-prettyprint-0.1.1.0-258-x86_64 | ||||
| installed = haskell-safe-0.3.19-8-x86_64 | ||||
| installed = haskell-safe-exceptions-0.1.7.3-24-x86_64 | ||||
| installed = haskell-scientific-0.3.7.0-79-x86_64 | ||||
| installed = haskell-semialign-1.2.0.1-86-x86_64 | ||||
| installed = haskell-semigroupoids-5.3.7-70-x86_64 | ||||
| installed = haskell-shelly-1.10.0-53-x86_64 | ||||
| installed = haskell-silently-1.2.5.3-1-x86_64 | ||||
| installed = haskell-socks-0.6.1-198-x86_64 | ||||
| installed = haskell-split-0.2.3.5-12-x86_64 | ||||
| installed = haskell-splitmix-0.1.0.4-108-x86_64 | ||||
| installed = haskell-statevar-1.2.2-2-x86_64 | ||||
| installed = haskell-stm-chans-3.0.0.6-2-x86_64 | ||||
| installed = haskell-streaming-commons-0.2.2.5-2-x86_64 | ||||
| installed = haskell-strict-0.4.0.1-140-x86_64 | ||||
| installed = haskell-syb-0.7.2.2-10-x86_64 | ||||
| installed = haskell-system-filepath-0.4.14-214-x86_64 | ||||
| installed = haskell-tagged-0.8.6.1-5-x86_64 | ||||
| installed = haskell-tar-0.5.1.1-138-x86_64 | ||||
| installed = haskell-tar-conduit-0.3.2-343-x86_64 | ||||
| installed = haskell-temporary-1.3-480-x86_64 | ||||
| installed = haskell-text-metrics-0.3.2-48-x86_64 | ||||
| installed = haskell-text-short-0.1.5-45-x86_64 | ||||
| installed = haskell-th-abstraction-0.4.5.0-1-x86_64 | ||||
| installed = haskell-th-compat-0.1.4-9-x86_64 | ||||
| installed = haskell-th-expand-syns-0.4.10.0-16-x86_64 | ||||
| installed = haskell-th-lift-0.8.2-13-x86_64 | ||||
| installed = haskell-th-lift-instances-0.1.20-11-x86_64 | ||||
| installed = haskell-th-reify-many-0.1.10-69-x86_64 | ||||
| installed = haskell-these-1.1.1.1-167-x86_64 | ||||
| installed = haskell-time-compat-1.9.6.1-63-x86_64 | ||||
| installed = haskell-tls-1.6.0-20-x86_64 | ||||
| installed = haskell-transformers-base-0.4.6-68-x86_64 | ||||
| installed = haskell-transformers-compat-0.7.2-1-x86_64 | ||||
| installed = haskell-type-equality-1-12-x86_64 | ||||
| installed = haskell-typed-process-0.2.10.1-20-x86_64 | ||||
| installed = haskell-unicode-data-0.4.0-3-x86_64 | ||||
| installed = haskell-unicode-transforms-0.4.0.1-35-x86_64 | ||||
| installed = haskell-unix-compat-0.6-36-x86_64 | ||||
| installed = haskell-unix-time-0.4.8-8-x86_64 | ||||
| installed = haskell-unliftio-0.2.22.0-26-x86_64 | ||||
| installed = haskell-unliftio-core-0.2.0.1-9-x86_64 | ||||
| installed = haskell-unordered-containers-0.2.19.1-43-x86_64 | ||||
| installed = haskell-uuid-types-1.0.5-83-x86_64 | ||||
| installed = haskell-vault-0.3.1.5-122-x86_64 | ||||
| installed = haskell-vector-0.13.0.0-9-x86_64 | ||||
| installed = haskell-vector-algorithms-0.9.0.1-17-x86_64 | ||||
| installed = haskell-vector-stream-0.1.0.0-1-x86_64 | ||||
| installed = haskell-void-0.7.3-169-x86_64 | ||||
| installed = haskell-witherable-0.4.2-27-x86_64 | ||||
| installed = haskell-x509-1.7.7-23-x86_64 | ||||
| installed = haskell-x509-store-1.6.9-48-x86_64 | ||||
| installed = haskell-x509-system-1.6.7-51-x86_64 | ||||
| installed = haskell-x509-validation-1.6.12-53-x86_64 | ||||
| installed = haskell-yaml-0.11.8.0-68-x86_64 | ||||
| installed = haskell-zip-archive-0.4.2.2-6-x86_64 | ||||
| installed = haskell-zlib-0.6.3.0-26-x86_64 | ||||
| installed = hicolor-icon-theme-0.17-2-any | ||||
| installed = hidapi-0.12.0-1-x86_64 | ||||
| installed = highway-1.0.1-1-x86_64 | ||||
| installed = hwdata-0.363-1-any | ||||
| installed = hwloc-2.8.0-1-x86_64 | ||||
| installed = iana-etc-20221025-1-any | ||||
| installed = icu-72.1-1-x86_64 | ||||
| installed = imath-3.1.5-3-x86_64 | ||||
| installed = imlib2-1.9.1-2-x86_64 | ||||
| installed = intellij-idea-ultimate-edition-2022.2.3-1-x86_64 | ||||
| installed = intellij-idea-ultimate-edition-jre-2022.2.3-1-x86_64 | ||||
| installed = iproute2-6.0.0-1-x86_64 | ||||
| installed = iptables-1:1.8.8-2-x86_64 | ||||
| installed = iputils-20211215-1-x86_64 | ||||
| installed = iso-codes-4.11.0-2-any | ||||
| installed = jack2-1.9.21-1-x86_64 | ||||
| installed = jansson-2.14-2-x86_64 | ||||
| installed = jbig2dec-0.19-1-x86_64 | ||||
| installed = jetbrains-fleet-1.9.237-1-x86_64 | ||||
| installed = jq-1.6-4-x86_64 | ||||
| installed = json-c-0.16-1-x86_64 | ||||
| installed = json-glib-1.6.6-2-x86_64 | ||||
| installed = jsoncpp-1.9.5-2-x86_64 | ||||
| installed = kbd-2.5.1-1-x86_64 | ||||
| installed = keychain-2.8.5-2-any | ||||
| installed = keyutils-1.6.3-1-x86_64 | ||||
| installed = kmod-30-1-x86_64 | ||||
| installed = krb5-1.20-1-x86_64 | ||||
| installed = l-smash-2.14.5-2-x86_64 | ||||
| installed = lame-3.100-4-x86_64 | ||||
| installed = lapack-3.10.1-1-x86_64 | ||||
| installed = lcms2-2.13.1-1-x86_64 | ||||
| installed = ldns-1.8.3-1-x86_64 | ||||
| installed = less-1:608-1-x86_64 | ||||
| installed = libaio-0.3.113-1-x86_64 | ||||
| installed = libappindicator-gtk3-12.10.0.r296-2-x86_64 | ||||
| installed = libarchive-3.6.1-2-x86_64 | ||||
| installed = libass-0.16.0-1-x86_64 | ||||
| installed = libassuan-2.5.5-1-x86_64 | ||||
| installed = libasyncns-1:0.8+r3+g68cd5af-1-x86_64 | ||||
| installed = libavc1394-0.5.4-4-x86_64 | ||||
| installed = libavif-0.10.1-2-x86_64 | ||||
| installed = libbluray-1.3.3-1-x86_64 | ||||
| installed = libbpf-1.0.1-1-x86_64 | ||||
| installed = libbs2b-3.1.0-8-x86_64 | ||||
| installed = libbsd-0.11.7-1-x86_64 | ||||
| installed = libcap-2.66-1-x86_64 | ||||
| installed = libcap-ng-0.8.3-1-x86_64 | ||||
| installed = libcloudproviders-0.3.1-2-x86_64 | ||||
| installed = libcolord-1.4.6-1-x86_64 | ||||
| installed = libcups-1:2.4.2-3-x86_64 | ||||
| installed = libcurl-gnutls-7.86.0-1-x86_64 | ||||
| installed = libdaemon-0.14-5-x86_64 | ||||
| installed = libdatrie-0.2.13-1-x86_64 | ||||
| installed = libdbusmenu-glib-16.04.0-5-x86_64 | ||||
| installed = libdbusmenu-gtk3-16.04.0-5-x86_64 | ||||
| installed = libdrm-2.4.113-3-x86_64 | ||||
| installed = libedit-20210910_3.1-1-x86_64 | ||||
| installed = libelf-0.187-2-x86_64 | ||||
| installed = libepoxy-1.5.10-1-x86_64 | ||||
| installed = libevdev-1.13.0-1-x86_64 | ||||
| installed = libevent-2.1.12-2-x86_64 | ||||
| installed = libexif-0.6.24-1-x86_64 | ||||
| installed = libffi-3.4.3-1-x86_64 | ||||
| installed = libfontenc-1.1.6-1-x86_64 | ||||
| installed = libgcrypt-1.10.1-1-x86_64 | ||||
| installed = libglvnd-1.5.0-1-x86_64 | ||||
| installed = libgpg-error-1.46-1-x86_64 | ||||
| installed = libgudev-237-2-x86_64 | ||||
| installed = libical-3.0.16-2-x86_64 | ||||
| installed = libice-1.0.10-4-x86_64 | ||||
| installed = libidn2-2.3.3-1-x86_64 | ||||
| installed = libiec61883-1.2.0-6-x86_64 | ||||
| installed = libimobiledevice-1.3.0-5-x86_64 | ||||
| installed = libindicator-gtk3-12.10.1-10-x86_64 | ||||
| installed = libinput-1.21.0-1-x86_64 | ||||
| installed = libisl-0.25-1-x86_64 | ||||
| installed = libjpeg-turbo-2.1.4-2-x86_64 | ||||
| installed = libjxl-0.7.0-3-x86_64 | ||||
| installed = libksba-1.6.2-1-x86_64 | ||||
| installed = libldap-2.6.3-1-x86_64 | ||||
| installed = libmaxminddb-1.7.1-1-x86_64 | ||||
| installed = libmd-1.0.4-1-x86_64 | ||||
| installed = libmfx-22.4.4-1-x86_64 | ||||
| installed = libmm-glib-1.18.12-1-x86_64 | ||||
| installed = libmnl-1.0.5-1-x86_64 | ||||
| installed = libmodplug-0.8.9.0-3-x86_64 | ||||
| installed = libmpc-1.2.1-2-x86_64 | ||||
| installed = libmpdclient-2.20-2-x86_64 | ||||
| installed = libndp-1.8-1-x86_64 | ||||
| installed = libnetfilter_conntrack-1.0.9-1-x86_64 | ||||
| installed = libnewt-0.52.21-8-x86_64 | ||||
| installed = libnfnetlink-1.0.2-1-x86_64 | ||||
| installed = libnftnl-1.2.3-1-x86_64 | ||||
| installed = libnghttp2-1.50.0-1-x86_64 | ||||
| installed = libnl-3.7.0-1-x86_64 | ||||
| installed = libnm-1.40.2-1-x86_64 | ||||
| installed = libnma-1.10.2-1-x86_64 | ||||
| installed = libnma-common-1.10.2-1-x86_64 | ||||
| installed = libnotify-0.8.1-1-x86_64 | ||||
| installed = libnsl-2.0.0-2-x86_64 | ||||
| installed = libogg-1.3.5-1-x86_64 | ||||
| installed = libomxil-bellagio-0.9.3-3-x86_64 | ||||
| installed = libp11-kit-0.24.1-1-x86_64 | ||||
| installed = libpcap-1.10.1-2-x86_64 | ||||
| installed = libpciaccess-0.17-1-x86_64 | ||||
| installed = libpgm-5.3.128-2-x86_64 | ||||
| installed = libpipeline-1.5.6-1-x86_64 | ||||
| installed = libplist-2.2.0-5-x86_64 | ||||
| installed = libpng-1.6.38-1-x86_64 | ||||
| installed = libproxy-0.4.18-1-x86_64 | ||||
| installed = libpsl-0.21.1-1-x86_64 | ||||
| installed = libpulse-16.1-1-x86_64 | ||||
| installed = libraw1394-2.1.2-3-x86_64 | ||||
| installed = librsvg-2:2.55.1-1-x86_64 | ||||
| installed = libsamplerate-0.2.2-1-x86_64 | ||||
| installed = libsasl-2.1.28-1-x86_64 | ||||
| installed = libseccomp-2.5.4-1-x86_64 | ||||
| installed = libsecret-0.20.5-2-x86_64 | ||||
| installed = libsigc++-2.10.8-1-x86_64 | ||||
| installed = libsm-1.2.3-3-x86_64 | ||||
| installed = libsndfile-1.1.0-3-x86_64 | ||||
| installed = libsodium-1.0.18-2-x86_64 | ||||
| installed = libsoup3-3.2.1-1-x86_64 | ||||
| installed = libsoxr-0.1.3-2-x86_64 | ||||
| installed = libssh-0.10.4-1-x86_64 | ||||
| installed = libssh2-1.10.0-1-x86_64 | ||||
| installed = libstemmer-2.2.0-2-x86_64 | ||||
| installed = libsynctex-2022.62885-2-x86_64 | ||||
| installed = libsysprof-capture-3.44.0-2-x86_64 | ||||
| installed = libtasn1-4.19.0-1-x86_64 | ||||
| installed = libteam-1.31-5-x86_64 | ||||
| installed = libthai-0.1.29-1-x86_64 | ||||
| installed = libtheora-1.1.1-5-x86_64 | ||||
| installed = libtiff-4.4.0-4-x86_64 | ||||
| installed = libtirpc-1.3.3-1-x86_64 | ||||
| installed = libtool-2.4.7-5-x86_64 | ||||
| installed = libunistring-1.0-1-x86_64 | ||||
| installed = libunwind-1.6.2-1-x86_64 | ||||
| installed = libusb-1.0.26-1-x86_64 | ||||
| installed = libusbmuxd-2.0.2-1-x86_64 | ||||
| installed = libuv-1.44.2-1-x86_64 | ||||
| installed = libva-2.16.0-1-x86_64 | ||||
| installed = libvdpau-1.5-1-x86_64 | ||||
| installed = libverto-0.3.2-4-x86_64 | ||||
| installed = libvisual-0.4.0-8-x86_64 | ||||
| installed = libvorbis-1.3.7-3-x86_64 | ||||
| installed = libvpx-1.12.0-1-x86_64 | ||||
| installed = libwacom-2.5.0-1-x86_64 | ||||
| installed = libwebp-1.2.4-1-x86_64 | ||||
| installed = libx11-1.8.1-3-x86_64 | ||||
| installed = libxau-1.0.10-1-x86_64 | ||||
| installed = libxcb-1.15-1-x86_64 | ||||
| installed = libxcomposite-0.4.5-4-x86_64 | ||||
| installed = libxcrypt-4.4.28-2-x86_64 | ||||
| installed = libxcursor-1.2.1-1-x86_64 | ||||
| installed = libxcvt-0.1.2-1-x86_64 | ||||
| installed = libxdamage-1.1.5-4-x86_64 | ||||
| installed = libxdmcp-1.1.3-4-x86_64 | ||||
| installed = libxext-1.3.4-4-x86_64 | ||||
| installed = libxfixes-6.0.0-1-x86_64 | ||||
| installed = libxfont2-2.0.6-1-x86_64 | ||||
| installed = libxft-2.3.6-1-x86_64 | ||||
| installed = libxi-1.8-1-x86_64 | ||||
| installed = libxinerama-1.1.4-4-x86_64 | ||||
| installed = libxkbcommon-1.4.1-1-x86_64 | ||||
| installed = libxkbcommon-x11-1.4.1-1-x86_64 | ||||
| installed = libxkbfile-1.1.1-1-x86_64 | ||||
| installed = libxml2-2.10.3-2-x86_64 | ||||
| installed = libxmu-1.1.4-1-x86_64 | ||||
| installed = libxrandr-1.5.2-4-x86_64 | ||||
| installed = libxrender-0.9.11-1-x86_64 | ||||
| installed = libxshmfence-1.3.1-1-x86_64 | ||||
| installed = libxslt-1.1.37-2-x86_64 | ||||
| installed = libxss-1.2.3-4-x86_64 | ||||
| installed = libxt-1.2.1-1-x86_64 | ||||
| installed = libxtst-1.2.4-1-x86_64 | ||||
| installed = libxv-1.0.11-5-x86_64 | ||||
| installed = libxxf86vm-1.1.5-1-x86_64 | ||||
| installed = libyaml-0.2.5-1-x86_64 | ||||
| installed = libyuv-r2322+3aebf69d-1-x86_64 | ||||
| installed = licenses-20220125-1-any | ||||
| installed = linux-6.0.2.arch1-1-x86_64 | ||||
| installed = linux-api-headers-5.18.15-1-any | ||||
| installed = linux-firmware-20220913.f09bebf-1-any | ||||
| installed = linux-firmware-whence-20220913.f09bebf-1-any | ||||
| installed = llvm-14.0.6-3-x86_64 | ||||
| installed = llvm-libs-14.0.6-3-x86_64 | ||||
| installed = lm_sensors-1:3.6.0.r41.g31d1f125-1-x86_64 | ||||
| installed = lsof-4.96.4-1-x86_64 | ||||
| installed = lua52-5.2.4-5-x86_64 | ||||
| installed = lvm2-2.03.16-2-x86_64 | ||||
| installed = lz4-1:1.9.4-1-x86_64 | ||||
| installed = lzo-2.10-3-x86_64 | ||||
| installed = m4-1.4.19-1-x86_64 | ||||
| installed = mailcap-2.1.53-1-any | ||||
| installed = make-4.3-3-x86_64 | ||||
| installed = man-db-2.11.0-1-x86_64 | ||||
| installed = md4c-0.4.8-1-x86_64 | ||||
| installed = mesa-22.2.1-1-x86_64 | ||||
| installed = meson-0.63.3-1-any | ||||
| installed = minizip-1:1.2.13-1-x86_64 | ||||
| installed = mkinitcpio-32-2-any | ||||
| installed = mkinitcpio-busybox-1.35.0-1-x86_64 | ||||
| installed = mobile-broadband-provider-info-20220725-1-any | ||||
| installed = mpfr-4.1.0.p13-3-x86_64 | ||||
| installed = mtdev-1.1.6-2-x86_64 | ||||
| installed = ncurses-6.3-3-x86_64 | ||||
| installed = neofetch-7.1.0-2-any | ||||
| installed = nettle-3.8.1-1-x86_64 | ||||
| installed = network-manager-applet-1.28.0-1-x86_64 | ||||
| installed = networkmanager-1.40.2-1-x86_64 | ||||
| installed = nextcloud-client-2:3.6.1-1-x86_64 | ||||
| installed = ninja-1.11.1-1-x86_64 | ||||
| installed = nm-connection-editor-1.28.0-1-x86_64 | ||||
| installed = noto-fonts-20220810-1-any | ||||
| installed = noto-fonts-cjk-20220126-1-any | ||||
| installed = noto-fonts-emoji-20220920-1-any | ||||
| installed = npth-1.6-3-x86_64 | ||||
| installed = nspr-4.35-1-x86_64 | ||||
| installed = nss-3.84-1-x86_64 | ||||
| installed = numactl-2.0.16-1-x86_64 | ||||
| installed = obsidian-1.0.3-1-x86_64 | ||||
| installed = ocl-icd-2.3.1-1-x86_64 | ||||
| installed = oniguruma-6.9.8-1-x86_64 | ||||
| installed = openal-1.22.2-1-x86_64 | ||||
| installed = opencore-amr-0.1.6-1-x86_64 | ||||
| installed = openexr-3.1.5-1-x86_64 | ||||
| installed = openjpeg2-2.5.0-1-x86_64 | ||||
| installed = openmpi-4.1.4-4-x86_64 | ||||
| installed = openpmix-4.2.1-1-x86_64 | ||||
| installed = openssh-9.1p1-1-x86_64 | ||||
| installed = openssl-1.1.1.q-1-x86_64 | ||||
| installed = opus-1.3.1-3-x86_64 | ||||
| installed = orc-0.4.32-2-x86_64 | ||||
| installed = p11-kit-0.24.1-1-x86_64 | ||||
| installed = pacman-6.0.1-8-x86_64 | ||||
| installed = pacman-mirrorlist-20221016-1-any | ||||
| installed = pam-1.5.2-1-x86_64 | ||||
| installed = pambase-20221020-1-any | ||||
| installed = pamixer-1.6-2-x86_64 | ||||
| installed = pango-1:1.50.11-1-x86_64 | ||||
| installed = pangomm-2.46.3-1-x86_64 | ||||
| installed = patch-2.7.6-8-x86_64 | ||||
| installed = pciutils-3.8.0-2-x86_64 | ||||
| installed = pcre-8.45-3-x86_64 | ||||
| installed = pcre2-10.40-3-x86_64 | ||||
| installed = perl-5.36.0-1-x86_64 | ||||
| installed = perl-error-0.17029-4-any | ||||
| installed = perl-mailtools-2.21-6-any | ||||
| installed = perl-timedate-2.33-4-any | ||||
| installed = pinentry-1.2.1-1-x86_64 | ||||
| installed = pixman-0.42.0-1-x86_64 | ||||
| installed = pkgconf-1.8.0-1-x86_64 | ||||
| installed = playerctl-2.4.1-2-x86_64 | ||||
| installed = polkit-121-1-x86_64 | ||||
| installed = popt-1.18-3-x86_64 | ||||
| installed = postgresql-libs-14.5-2-x86_64 | ||||
| installed = procps-ng-3.3.17-1-x86_64 | ||||
| installed = psmisc-23.5-1-x86_64 | ||||
| installed = pulseaudio-16.1-1-x86_64 | ||||
| installed = pulseaudio-bluetooth-16.1-1-x86_64 | ||||
| installed = pycharm-professional-2022.2.3-1-x86_64 | ||||
| installed = python-3.10.8-2-x86_64 | ||||
| installed = python-appdirs-1.4.4-7-any | ||||
| installed = python-autocommand-2.2.1-1-any | ||||
| installed = python-inflect-6.0.2-1-any | ||||
| installed = python-jaraco.context-4.1.2-1-any | ||||
| installed = python-jaraco.functools-3.5.2-1-any | ||||
| installed = python-jaraco.text-3.10.0-1-any | ||||
| installed = python-jinja-1:3.1.2-2-any | ||||
| installed = python-markupsafe-2.1.1-1-x86_64 | ||||
| installed = python-more-itertools-9.0.0-1-any | ||||
| installed = python-ordered-set-4.1.0-1-any | ||||
| installed = python-packaging-21.3-1-any | ||||
| installed = python-pydantic-1.10.2-1-x86_64 | ||||
| installed = python-pyparsing-3.0.9-1-any | ||||
| installed = python-pyqt5-5.15.7-2-x86_64 | ||||
| installed = python-pyqt5-sip-12.11.0-1-x86_64 | ||||
| installed = python-pyqt5-webengine-5.15.6-1-x86_64 | ||||
| installed = python-setuptools-1:63.4.3-1-any | ||||
| installed = python-tomli-2.0.1-1-any | ||||
| installed = python-trove-classifiers-2022.10.19-1-any | ||||
| installed = python-typing_extensions-4.4.0-1-any | ||||
| installed = python-validate-pyproject-0.10.1-1-any | ||||
| installed = python-yaml-6.0-1-x86_64 | ||||
| installed = qt5-base-5.15.6+kde+r181-1-x86_64 | ||||
| installed = qt5-declarative-5.15.6+kde+r20-1-x86_64 | ||||
| installed = qt5-graphicaleffects-5.15.6+kde+r0-1-x86_64 | ||||
| installed = qt5-location-5.15.6+kde+r3-1-x86_64 | ||||
| installed = qt5-multimedia-5.15.6+kde+r1-1-x86_64 | ||||
| installed = qt5-quickcontrols-5.15.6+kde+r0-1-x86_64 | ||||
| installed = qt5-quickcontrols2-5.15.6+kde+r5-1-x86_64 | ||||
| installed = qt5-svg-5.15.6+kde+r9-1-x86_64 | ||||
| installed = qt5-translations-5.15.6+kde+r2-1-any | ||||
| installed = qt5-webchannel-5.15.6+kde+r3-1-x86_64 | ||||
| installed = qt5-webengine-5.15.11-1-x86_64 | ||||
| installed = qt5-websockets-5.15.6+kde+r2-1-x86_64 | ||||
| installed = qtkeychain-qt5-0.13.2-1-x86_64 | ||||
| installed = qutebrowser-2.5.2-1-any | ||||
| installed = r-4.2.1-3-x86_64 | ||||
| installed = rav1e-0.5.1-2-x86_64 | ||||
| installed = re2-1:20220601-1-x86_64 | ||||
| installed = readline-8.1.002-1-x86_64 | ||||
| installed = rhash-1.4.2-1-x86_64 | ||||
| installed = ripgrep-13.0.0-2-x86_64 | ||||
| installed = rstudio-desktop-bin-2022.07.1.554-2-x86_64 | ||||
| installed = rtkit-0.13-2-x86_64 | ||||
| installed = rust-1:1.64.0-1-x86_64 | ||||
| installed = sbc-2.0-1-x86_64 | ||||
| installed = scdoc-1.11.2-4-x86_64 | ||||
| installed = sdl2-2.24.1-1-x86_64 | ||||
| installed = sdl2_image-2.6.2-2-x86_64 | ||||
| installed = seatd-0.7.0-2-x86_64 | ||||
| installed = sed-4.8-1-x86_64 | ||||
| installed = shadow-4.11.1-3-x86_64 | ||||
| installed = shared-mime-info-2.0+155+gf4e7cbc-1-x86_64 | ||||
| installed = slang-2.3.3-1-x86_64 | ||||
| installed = snappy-1.1.9-2-x86_64 | ||||
| installed = sndio-1.9.0-1-x86_64 | ||||
| installed = source-highlight-3.1.9-9-x86_64 | ||||
| installed = spandsp-0.0.6-3-x86_64 | ||||
| installed = spdlog-1.10.0-3-x86_64 | ||||
| installed = speex-1.2.1-1-x86_64 | ||||
| installed = speexdsp-1.2.1-1-x86_64 | ||||
| installed = spotify-1:1.1.84.716-2-x86_64 | ||||
| installed = sqlite-3.39.4-1-x86_64 | ||||
| installed = srt-1.5.1-1-x86_64 | ||||
| installed = stack-2.7.5-188-x86_64 | ||||
| installed = stow-2.3.1-3-any | ||||
| installed = sudo-1.9.12-1-x86_64 | ||||
| installed = svt-av1-1.3.0-1-x86_64 | ||||
| installed = sway-git-r6980.8aa89dc2-1-x86_64 | ||||
| installed = sway-git-debug-r6980.8aa89dc2-1-x86_64 | ||||
| installed = swaybg-git-r123.deed2ed-1-x86_64 | ||||
| installed = swayidle-1.7.1-3-x86_64 | ||||
| installed = swaylock-effects-git-r403.4b54b85-1-x86_64 | ||||
| installed = sxiv-26-1-x86_64 | ||||
| installed = sysfsutils-2.1.1-1-x86_64 | ||||
| installed = systemd-251.7-1-x86_64 | ||||
| installed = systemd-libs-251.7-1-x86_64 | ||||
| installed = systemd-sysvcompat-251.7-1-x86_64 | ||||
| installed = tar-1.34-1-x86_64 | ||||
| installed = tdb-1.4.7-1-x86_64 | ||||
| installed = tdpeuter-base-0.1.4-1-any | ||||
| installed = tdpeuter-desktop-0.1.4-1-any | ||||
| installed = tdpeuter-dev-0.1.4-1-any | ||||
| installed = termshark-2.4.0-1-x86_64 | ||||
| installed = texinfo-6.8-2-x86_64 | ||||
| installed = thin-provisioning-tools-0.9.0-1-x86_64 | ||||
| installed = tpm2-tss-3.2.0-1-x86_64 | ||||
| installed = traceroute-2.1.0-5-x86_64 | ||||
| installed = tracker3-3.4.1-1-x86_64 | ||||
| installed = tslib-1.22-1-x86_64 | ||||
| installed = ttf-liberation-2.1.5-1-any | ||||
| installed = tzdata-2022e-1-x86_64 | ||||
| installed = unzip-6.0-19-x86_64 | ||||
| installed = upower-1.90.0-1-x86_64 | ||||
| installed = usbmuxd-1.1.1-1-x86_64 | ||||
| installed = util-linux-2.38.1-1-x86_64 | ||||
| installed = util-linux-libs-2.38.1-1-x86_64 | ||||
| installed = v4l-utils-1.22.1-1-x86_64 | ||||
| installed = vid.stab-1.1-3-x86_64 | ||||
| installed = vifm-0.12.1-1-x86_64 | ||||
| installed = vim-9.0.0814-1-x86_64 | ||||
| installed = vim-runtime-9.0.0814-1-x86_64 | ||||
| installed = visual-studio-code-bin-1.72.2-1-x86_64 | ||||
| installed = vmaf-2.3.1-1-x86_64 | ||||
| installed = vulkan-headers-1:1.3.227-1-any | ||||
| installed = vulkan-icd-loader-1.3.226-1-x86_64 | ||||
| installed = vulkan-validation-layers-1.3.224.1-1-x86_64 | ||||
| installed = waybar-0.9.13-2-x86_64 | ||||
| installed = wayland-1.21.0-1-x86_64 | ||||
| installed = wayland-protocols-1.27-1-any | ||||
| installed = webrtc-audio-processing-0.3.1-3-x86_64 | ||||
| installed = which-2.21-5-x86_64 | ||||
| installed = wireshark-cli-4.0.1-1-x86_64 | ||||
| installed = wireshark-qt-4.0.1-1-x86_64 | ||||
| installed = wlroots-git-0.16.0.r5805.bc416ed7-1-x86_64 | ||||
| installed = wlroots-git-debug-0.16.0.r5805.bc416ed7-1-x86_64 | ||||
| installed = wpa_supplicant-2:2.10-5-x86_64 | ||||
| installed = x11-ssh-askpass-1.2.4.1-7-x86_64 | ||||
| installed = x264-3:0.164.r3095.baee400-4-x86_64 | ||||
| installed = x265-3.5-3-x86_64 | ||||
| installed = xcb-proto-1.15.2-1-any | ||||
| installed = xcb-util-0.4.0-4-x86_64 | ||||
| installed = xcb-util-errors-1.0.1-1-x86_64 | ||||
| installed = xcb-util-image-0.4.1-2-x86_64 | ||||
| installed = xcb-util-keysyms-0.4.1-4-x86_64 | ||||
| installed = xcb-util-renderutil-0.3.10-1-x86_64 | ||||
| installed = xcb-util-wm-0.4.2-1-x86_64 | ||||
| installed = xdg-utils-1.1.3+21+g1a58bc2-2-any | ||||
| installed = xkeyboard-config-2.37-1-any | ||||
| installed = xorg-fonts-encodings-1.0.6-1-any | ||||
| installed = xorg-server-common-21.1.4-1-x86_64 | ||||
| installed = xorg-setxkbmap-1.3.3-1-x86_64 | ||||
| installed = xorg-xkbcomp-1.4.5-1-x86_64 | ||||
| installed = xorg-xprop-1.2.5-1-x86_64 | ||||
| installed = xorg-xrandr-1.5.1-2-x86_64 | ||||
| installed = xorg-xset-1.2.4-3-x86_64 | ||||
| installed = xorg-xwayland-22.1.4-2-x86_64 | ||||
| installed = xorgproto-2022.2-1-any | ||||
| installed = xvidcore-1.3.7-2-x86_64 | ||||
| installed = xz-5.2.7-1-x86_64 | ||||
| installed = yay-11.3.0-1-x86_64 | ||||
| installed = zathura-0.5.1-1-x86_64 | ||||
| installed = zathura-pdf-mupdf-0.3.9-1-x86_64 | ||||
| installed = zellij-0.32.0-1-x86_64 | ||||
| installed = zenith-0.13.1-2-x86_64 | ||||
| installed = zeromq-4.3.4-2-x86_64 | ||||
| installed = zimg-3.0.4-1-x86_64 | ||||
| installed = zip-3.0-10-x86_64 | ||||
| installed = zlib-1:1.2.13-1-x86_64 | ||||
| installed = zstd-1.5.2-7-x86_64 | ||||
							
								
								
									
										80
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-desktop/.INSTALL
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										80
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-desktop/.INSTALL
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,80 @@ | |||
| post_install() { | ||||
|     # Initiate the stow repo | ||||
|     >&2 echo "Cloning stow git repository" | ||||
|     git clone --depth 1 --progress https://git.depeuter.tk/tdpeuter/arch-pkgs /usr/share/tdpeuter/arch-pkgs | ||||
| 
 | ||||
|     # Installing yay | ||||
|     >&2 echo "Installing yay" | ||||
|     pacman -S --needed git base-devel | ||||
|     git clone https://aur.archlinux.org/yay.git | ||||
|     cd yay | ||||
|     su -c "makepkg -si --asdeps --noconfirm" - tdpeuter | ||||
|     | ||||
|     post_upgrade | ||||
| } | ||||
| 
 | ||||
| post_upgrade() { | ||||
|     install_apps | ||||
|      | ||||
|     code --install-extension ms-vscode.cpptools | ||||
|      | ||||
|     install_fonts | ||||
|     do_stow | ||||
| } | ||||
| 
 | ||||
| pre_remove() { | ||||
|     rm -rf /usr/share/tdpeuter/arch-pkgs | ||||
| } | ||||
| 
 | ||||
| install_apps() { | ||||
|     rm /var/lib/pacman/db.lck | ||||
| 
 | ||||
|     # Desktop | ||||
|     pkgs=" sway-git swaylock-effects-git " | ||||
| 
 | ||||
|     # Socials & entertainment | ||||
|     pkgs+=" betterbird-bin hamsket-bin jellyfin-media-player spotify " | ||||
|     pkgs+=" zoom " | ||||
| 
 | ||||
|     # Coding | ||||
|     pkgs+=" intellij-idea-ultimate-edition intellij-idea-ultimate-edition-jre " | ||||
|     pkgs+=" jetbrains-fleet pycharm-professional rstudio-desktop-bin " | ||||
|     pkgs+=" visual-studio-code-bin " | ||||
| 
 | ||||
|     # Tools | ||||
|     pkgs+=" google-chrome zenith " | ||||
| 
 | ||||
|     # Skip these | ||||
|     options="--sudoflags -A --answerclean None --answerdiff None " | ||||
|     # Do not wait | ||||
|     options+="--noconfirm " | ||||
| 
 | ||||
|     su -c "export SUDO_ASKPASS=/usr/lib/ssh/x11-ssh-askpass && yay ${options} -S ${pkgs}" - tdpeuter | ||||
| } | ||||
| 
 | ||||
| install_fonts() { | ||||
|     mkdir -p /usr/local/share/fonts/letter | ||||
| 
 | ||||
|     >&2 echo "Installing letter (font)" | ||||
|     git clone --depth 1 --progress https://github.com/tdpeuter/letter.git | ||||
|     cd letter | ||||
|     cp ttf/* /usr/local/share/fonts/letter/ | ||||
|     cp ttf-unhinted/* /usr/local/share/fonts/letter/ | ||||
|     cp woff2/* /usr/local/share/fonts/letter/ | ||||
|     cd | ||||
| } | ||||
| 
 | ||||
| do_stow() { | ||||
|     >&2 echo "Moving to dotfile directory" | ||||
|     cd /usr/share/tdpeuter/arch-pkgs/  | ||||
| 
 | ||||
|     >&2 echo "Pulling stow git repository" | ||||
|     git pull | ||||
| 
 | ||||
|     user=$(who | cut -f1 -d' ') | ||||
|     packages=$(ls ./stow) | ||||
|      | ||||
|     >&2 echo "Stowing all packages" | ||||
|     stow -d ./stow -t "/home/${user}" ${packages} | ||||
| } | ||||
| 
 | ||||
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-desktop/.MTREE
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-desktop/.MTREE
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										41
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-desktop/.PKGINFO
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-desktop/.PKGINFO
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,41 @@ | |||
| # Generated by makepkg 6.0.1 | ||||
| # using fakeroot version 1.29 | ||||
| pkgname = tdpeuter-desktop | ||||
| pkgbase = tdpeuter | ||||
| pkgver = 0.1.6-1 | ||||
| pkgdesc = Sysconfig for my systems | ||||
| url = https://git.depeuter.tk/tdpeuter/arch-pkgs | ||||
| builddate = 1667142191 | ||||
| packager = Unknown Packager | ||||
| size = 0 | ||||
| arch = any | ||||
| license = GPL | ||||
| group = tdpeuter | ||||
| depend = tdpeuter-base | ||||
| depend = fzf | ||||
| depend = jq | ||||
| depend = stow | ||||
| depend = x11-ssh-askpass | ||||
| depend = brightnessctl | ||||
| depend = dunst | ||||
| depend = libnotify | ||||
| depend = swayidle | ||||
| depend = waybar | ||||
| depend = xorg-xwayland | ||||
| depend = network-manager-applet | ||||
| depend = alacritty | ||||
| depend = firefox | ||||
| depend = qutebrowser | ||||
| depend = nextcloud-client | ||||
| depend = obsidian | ||||
| depend = noto-fonts | ||||
| depend = noto-fonts-cjk | ||||
| depend = noto-fonts-emoji | ||||
| depend = otf-font-awesome | ||||
| depend = duf | ||||
| depend = neofetch | ||||
| depend = vifm | ||||
| depend = wget | ||||
| depend = zathura | ||||
| depend = zathura-pdf-mupdf | ||||
| depend = zellij | ||||
							
								
								
									
										755
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-dev/.BUILDINFO
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										755
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-dev/.BUILDINFO
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,755 @@ | |||
| format = 2 | ||||
| pkgname = tdpeuter-dev | ||||
| pkgbase = tdpeuter | ||||
| pkgver = 0.1.6-1 | ||||
| pkgarch = any | ||||
| pkgbuild_sha256sum = ee8683179f60c20e680fe804ef258257c27af94e35b47554dc3a252379cdd10a | ||||
| packager = Unknown Packager | ||||
| builddate = 1667142191 | ||||
| builddir = /home/tdpeuter/projects/arch-pkgs/pkg/tdpeuter | ||||
| startdir = /home/tdpeuter/projects/arch-pkgs/pkg/tdpeuter | ||||
| buildtool = makepkg | ||||
| buildtoolver = 6.0.1 | ||||
| buildenv = !distcc | ||||
| buildenv = color | ||||
| buildenv = !ccache | ||||
| buildenv = check | ||||
| buildenv = !sign | ||||
| options = strip | ||||
| options = docs | ||||
| options = !libtool | ||||
| options = !staticlibs | ||||
| options = emptydirs | ||||
| options = zipman | ||||
| options = purge | ||||
| options = !debug | ||||
| options = !lto | ||||
| installed = acl-2.3.1-2-x86_64 | ||||
| installed = adobe-source-code-pro-fonts-2.038ro+1.058it+1.018var-1-any | ||||
| installed = adwaita-icon-theme-42.0+r1+gc144c3d75-1-any | ||||
| installed = alacritty-0.11.0-1-x86_64 | ||||
| installed = alsa-lib-1.2.7.2-1-x86_64 | ||||
| installed = alsa-topology-conf-1.2.5.1-1-any | ||||
| installed = alsa-ucm-conf-1.2.7.2-1-any | ||||
| installed = aom-3.5.0-1-x86_64 | ||||
| installed = archlinux-keyring-20220927-1-any | ||||
| installed = argon2-20190702-4-x86_64 | ||||
| installed = at-spi2-core-2.46.0-2-x86_64 | ||||
| installed = atkmm-2.28.3-1-x86_64 | ||||
| installed = attr-2.5.1-2-x86_64 | ||||
| installed = audit-3.0.8-1-x86_64 | ||||
| installed = autoconf-2.71-1-any | ||||
| installed = automake-1.16.5-1-any | ||||
| installed = avahi-0.8+22+gfd482a7-3-x86_64 | ||||
| installed = awesome-terminal-fonts-1.1.0-4-any | ||||
| installed = base-3-1-any | ||||
| installed = bash-5.1.016-1-x86_64 | ||||
| installed = bcg729-1.1.1-1-x86_64 | ||||
| installed = betterbird-bin-102.4.0-1-x86_64 | ||||
| installed = binutils-2.39-3-x86_64 | ||||
| installed = bison-3.8.2-4-x86_64 | ||||
| installed = blas-3.10.1-1-x86_64 | ||||
| installed = bluez-5.65-3-x86_64 | ||||
| installed = bluez-libs-5.65-3-x86_64 | ||||
| installed = bluez-utils-5.65-3-x86_64 | ||||
| installed = boost-1.80.0-3-x86_64 | ||||
| installed = boost-libs-1.80.0-3-x86_64 | ||||
| installed = brightnessctl-0.5.1-2-x86_64 | ||||
| installed = brotli-1.0.9-8-x86_64 | ||||
| installed = bzip2-1.0.8-4-x86_64 | ||||
| installed = c-ares-1.18.1-1-x86_64 | ||||
| installed = ca-certificates-20220905-1-any | ||||
| installed = ca-certificates-mozilla-3.84-1-x86_64 | ||||
| installed = ca-certificates-utils-20220905-1-any | ||||
| installed = cairo-1.17.6-2-x86_64 | ||||
| installed = cairomm-1.14.4-1-x86_64 | ||||
| installed = cantarell-fonts-1:0.303.1-1-any | ||||
| installed = cdparanoia-10.2-8-x86_64 | ||||
| installed = chrono-date-3.0.1-3-x86_64 | ||||
| installed = clang-14.0.6-3-x86_64 | ||||
| installed = cmake-3.24.2-1-x86_64 | ||||
| installed = compiler-rt-14.0.6-1-x86_64 | ||||
| installed = coreutils-9.1-1-x86_64 | ||||
| installed = cryptsetup-2.5.0-1-x86_64 | ||||
| installed = curl-7.86.0-1-x86_64 | ||||
| installed = cython-0.29.32-2-x86_64 | ||||
| installed = dav1d-1.0.0-1-x86_64 | ||||
| installed = db-5.3.28-5-x86_64 | ||||
| installed = dbus-1.14.4-1-x86_64 | ||||
| installed = dbus-glib-0.112-2-x86_64 | ||||
| installed = dconf-0.40.0-1-x86_64 | ||||
| installed = debugedit-5.0-4-x86_64 | ||||
| installed = desktop-file-utils-0.26-2-x86_64 | ||||
| installed = device-mapper-2.03.16-2-x86_64 | ||||
| installed = diffutils-3.8-1-x86_64 | ||||
| installed = dnssec-anchors-20190629-3-any | ||||
| installed = double-conversion-3.2.1-1-x86_64 | ||||
| installed = duktape-2.7.0-4-x86_64 | ||||
| installed = dunst-1.9.0-1-x86_64 | ||||
| installed = e2fsprogs-1.46.5-4-x86_64 | ||||
| installed = efibootmgr-18-1-x86_64 | ||||
| installed = efivar-38-2-x86_64 | ||||
| installed = electron18-18.3.9-3-x86_64 | ||||
| installed = electron19-19.0.13-3-x86_64 | ||||
| installed = expat-2.5.0-1-x86_64 | ||||
| installed = fakeroot-1.29-1-x86_64 | ||||
| installed = ffmpeg-2:5.1.2-1-x86_64 | ||||
| installed = fftw-3.3.10-3-x86_64 | ||||
| installed = file-5.43-1-x86_64 | ||||
| installed = filesystem-2022.10.18-1-x86_64 | ||||
| installed = findutils-4.9.0-1-x86_64 | ||||
| installed = firefox-106.0.1-1-x86_64 | ||||
| installed = flac-1.4.2-1-x86_64 | ||||
| installed = flex-2.6.4-3-x86_64 | ||||
| installed = fmt-9.1.0-1-x86_64 | ||||
| installed = fontconfig-2:2.14.1-2-x86_64 | ||||
| installed = freetype2-2.12.1-1-x86_64 | ||||
| installed = fribidi-1.0.12-1-x86_64 | ||||
| installed = fuse-common-3.12.0-1-x86_64 | ||||
| installed = fuse2-2.9.9-4-x86_64 | ||||
| installed = fzf-0.34.0-1-x86_64 | ||||
| installed = gawk-5.2.0-3-x86_64 | ||||
| installed = gc-8.2.2-1-x86_64 | ||||
| installed = gcc-12.2.0-1-x86_64 | ||||
| installed = gcc-libs-12.2.0-1-x86_64 | ||||
| installed = gcr-3.41.1-2-x86_64 | ||||
| installed = gdb-12.1-1-x86_64 | ||||
| installed = gdb-common-12.1-1-x86_64 | ||||
| installed = gdbm-1.23-1-x86_64 | ||||
| installed = gdk-pixbuf2-2.42.10-1-x86_64 | ||||
| installed = gettext-0.21.1-1-x86_64 | ||||
| installed = ghc-libs-9.0.2-1-x86_64 | ||||
| installed = giflib-5.2.1-2-x86_64 | ||||
| installed = girara-0.3.7-1-x86_64 | ||||
| installed = git-2.38.1-1-x86_64 | ||||
| installed = glew-2.2.0-5-x86_64 | ||||
| installed = glib-networking-1:2.74.0-1-x86_64 | ||||
| installed = glib2-2.74.0-2-x86_64 | ||||
| installed = glibc-2.36-6-x86_64 | ||||
| installed = glibmm-2.66.5-1-x86_64 | ||||
| installed = glslang-11.11.0-1-x86_64 | ||||
| installed = glu-9.0.2-3-x86_64 | ||||
| installed = gmp-6.2.1-2-x86_64 | ||||
| installed = gnu-free-fonts-20120503-8-any | ||||
| installed = gnupg-2.2.40-1-x86_64 | ||||
| installed = gnutls-3.7.8-1-x86_64 | ||||
| installed = go-2:1.19.2-1-x86_64 | ||||
| installed = google-chrome-107.0.5304.87-1-x86_64 | ||||
| installed = gperftools-2.10-1-x86_64 | ||||
| installed = gpgme-1.18.0-1-x86_64 | ||||
| installed = gpm-1.20.7.r38.ge82d1a6-4-x86_64 | ||||
| installed = graphene-1.10.8-1-x86_64 | ||||
| installed = graphite-1:1.3.14-2-x86_64 | ||||
| installed = grep-3.8-2-x86_64 | ||||
| installed = groff-1.22.4-7-x86_64 | ||||
| installed = grub-2:2.06.r334.g340377470-1-x86_64 | ||||
| installed = gsettings-desktop-schemas-42.0-1-any | ||||
| installed = gsm-1.0.22-1-x86_64 | ||||
| installed = gst-plugins-base-1.20.4-1-x86_64 | ||||
| installed = gst-plugins-base-libs-1.20.4-1-x86_64 | ||||
| installed = gstreamer-1.20.4-1-x86_64 | ||||
| installed = gtk-layer-shell-0.8.0-1-x86_64 | ||||
| installed = gtk-update-icon-cache-1:4.8.2-1-x86_64 | ||||
| installed = gtk3-1:3.24.34+r156+g812b3930d0-1-x86_64 | ||||
| installed = gtkmm3-3.24.7-1-x86_64 | ||||
| installed = guile-2.2.7-2-x86_64 | ||||
| installed = gumbo-parser-0.10.1-2-x86_64 | ||||
| installed = gzip-1.12-1-x86_64 | ||||
| installed = hamsket-bin-0.6.3-2-x86_64 | ||||
| installed = harfbuzz-5.3.1-3-x86_64 | ||||
| installed = haskell-aeson-2.1.0.0-3-x86_64 | ||||
| installed = haskell-annotated-wl-pprint-0.7.0-25-x86_64 | ||||
| installed = haskell-ansi-terminal-0.11.3-33-x86_64 | ||||
| installed = haskell-ansi-wl-pprint-0.6.9-350-x86_64 | ||||
| installed = haskell-appar-0.1.8-13-x86_64 | ||||
| installed = haskell-asn1-encoding-0.9.6-194-x86_64 | ||||
| installed = haskell-asn1-parse-0.9.5-194-x86_64 | ||||
| installed = haskell-asn1-types-0.3.4-173-x86_64 | ||||
| installed = haskell-assoc-1.0.2-166-x86_64 | ||||
| installed = haskell-async-2.2.4-122-x86_64 | ||||
| installed = haskell-attoparsec-0.14.4-40-x86_64 | ||||
| installed = haskell-attoparsec-iso8601-1.1.0.0-16-x86_64 | ||||
| installed = haskell-auto-update-0.1.6-281-x86_64 | ||||
| installed = haskell-base-compat-0.12.2-1-x86_64 | ||||
| installed = haskell-base-compat-batteries-0.12.2-18-x86_64 | ||||
| installed = haskell-base-orphans-0.8.7-25-x86_64 | ||||
| installed = haskell-base16-bytestring-1.0.2.0-46-x86_64 | ||||
| installed = haskell-base64-bytestring-1.2.1.0-68-x86_64 | ||||
| installed = haskell-basement-0.0.15-1-x86_64 | ||||
| installed = haskell-bifunctors-5.5.13-8-x86_64 | ||||
| installed = haskell-bitvec-1.1.3.0-17-x86_64 | ||||
| installed = haskell-blaze-builder-0.4.2.2-2-x86_64 | ||||
| installed = haskell-blaze-html-0.9.1.2-190-x86_64 | ||||
| installed = haskell-blaze-markup-0.8.2.8-96-x86_64 | ||||
| installed = haskell-byteable-0.1.1-25-x86_64 | ||||
| installed = haskell-byteorder-1.0.4-24-x86_64 | ||||
| installed = haskell-casa-client-0.0.1-524-x86_64 | ||||
| installed = haskell-casa-types-0.0.2-305-x86_64 | ||||
| installed = haskell-case-insensitive-1.2.1.0-169-x86_64 | ||||
| installed = haskell-cereal-0.5.8.3-1-x86_64 | ||||
| installed = haskell-clock-0.8.3-69-x86_64 | ||||
| installed = haskell-cmdargs-0.10.21-4-x86_64 | ||||
| installed = haskell-colour-2.3.6-142-x86_64 | ||||
| installed = haskell-comonad-5.0.8-168-x86_64 | ||||
| installed = haskell-conduit-1.3.4.3-6-x86_64 | ||||
| installed = haskell-conduit-extra-1.3.6-38-x86_64 | ||||
| installed = haskell-connection-0.3.1-222-x86_64 | ||||
| installed = haskell-constraints-0.13.4-15-x86_64 | ||||
| installed = haskell-contravariant-1.5.5-3-x86_64 | ||||
| installed = haskell-cookie-0.4.5-12-x86_64 | ||||
| installed = haskell-cryptohash-sha256-0.11.102.1-57-x86_64 | ||||
| installed = haskell-cryptonite-0.30-37-x86_64 | ||||
| installed = haskell-cryptonite-conduit-0.2.2-533-x86_64 | ||||
| installed = haskell-data-default-class-0.1.2.0-24-x86_64 | ||||
| installed = haskell-data-fix-0.3.2-68-x86_64 | ||||
| installed = haskell-digest-0.0.1.3-2-x86_64 | ||||
| installed = haskell-distributive-0.6.2.1-171-x86_64 | ||||
| installed = haskell-dlist-1.0-191-x86_64 | ||||
| installed = haskell-easy-file-0.2.2-19-x86_64 | ||||
| installed = haskell-echo-0.1.4-4-x86_64 | ||||
| installed = haskell-ed25519-0.0.5.0-24-x86_64 | ||||
| installed = haskell-enclosed-exceptions-1.0.3-219-x86_64 | ||||
| installed = haskell-erf-2.0.0.0-24-x86_64 | ||||
| installed = haskell-extra-1.7.12-13-x86_64 | ||||
| installed = haskell-fast-logger-3.1.1-59-x86_64 | ||||
| installed = haskell-file-embed-0.0.15.0-1-x86_64 | ||||
| installed = haskell-filelock-0.1.1.5-158-x86_64 | ||||
| installed = haskell-fsnotify-0.3.0.1-323-x86_64 | ||||
| installed = haskell-generic-deriving-1.14.2-9-x86_64 | ||||
| installed = haskell-generically-0.1-1-x86_64 | ||||
| installed = haskell-ghc-bignum-orphans-0.1.1-1-x86_64 | ||||
| installed = haskell-githash-0.1.6.3-2-x86_64 | ||||
| installed = haskell-glob-0.10.2-56-x86_64 | ||||
| installed = haskell-hackage-security-0.6.2.2-14-x86_64 | ||||
| installed = haskell-hashable-1.4.1.0-29-x86_64 | ||||
| installed = haskell-hi-file-parser-0.1.3.0-18-x86_64 | ||||
| installed = haskell-hinotify-0.4.1-137-x86_64 | ||||
| installed = haskell-hourglass-0.2.12-212-x86_64 | ||||
| installed = haskell-hpack-0.35.0-15-x86_64 | ||||
| installed = haskell-http-api-data-0.5-5-x86_64 | ||||
| installed = haskell-http-client-0.7.13.1-20-x86_64 | ||||
| installed = haskell-http-client-tls-0.3.6.1-64-x86_64 | ||||
| installed = haskell-http-conduit-2.3.8-254-x86_64 | ||||
| installed = haskell-http-download-0.2.0.0-518-x86_64 | ||||
| installed = haskell-http-types-0.12.3-273-x86_64 | ||||
| installed = haskell-indexed-traversable-0.1.2-2-x86_64 | ||||
| installed = haskell-indexed-traversable-instances-0.1.1.1-19-x86_64 | ||||
| installed = haskell-infer-license-0.2.0-215-x86_64 | ||||
| installed = haskell-integer-logarithms-1.0.3.1-6-x86_64 | ||||
| installed = haskell-iproute-1.7.12-44-x86_64 | ||||
| installed = haskell-libyaml-0.1.2-260-x86_64 | ||||
| installed = haskell-lift-type-0.1.0.1-4-x86_64 | ||||
| installed = haskell-lifted-async-0.10.2.3-27-x86_64 | ||||
| installed = haskell-lifted-base-0.2.3.12-233-x86_64 | ||||
| installed = haskell-lukko-0.1.1.3-130-x86_64 | ||||
| installed = haskell-megaparsec-9.2.2-8-x86_64 | ||||
| installed = haskell-memory-0.17.0-33-x86_64 | ||||
| installed = haskell-microlens-0.4.13.0-1-x86_64 | ||||
| installed = haskell-microlens-mtl-0.2.0.2-1-x86_64 | ||||
| installed = haskell-microlens-th-0.4.3.10-8-x86_64 | ||||
| installed = haskell-mime-types-0.1.1.0-1-x86_64 | ||||
| installed = haskell-mintty-0.1.4-1-x86_64 | ||||
| installed = haskell-monad-control-1.0.3.1-68-x86_64 | ||||
| installed = haskell-monad-logger-0.3.37-24-x86_64 | ||||
| installed = haskell-monad-loops-0.4.3-25-x86_64 | ||||
| installed = haskell-mono-traversable-1.0.15.3-92-x86_64 | ||||
| installed = haskell-mustache-2.4.1-89-x86_64 | ||||
| installed = haskell-neat-interpolation-0.5.1.3-94-x86_64 | ||||
| installed = haskell-network-3.1.2.7-44-x86_64 | ||||
| installed = haskell-network-uri-2.6.4.1-102-x86_64 | ||||
| installed = haskell-old-locale-1.0.0.7-30-x86_64 | ||||
| installed = haskell-old-time-1.1.0.3-30-x86_64 | ||||
| installed = haskell-onetuple-0.3.1-41-x86_64 | ||||
| installed = haskell-only-0.1-22-x86_64 | ||||
| installed = haskell-open-browser-0.2.1.0-28-x86_64 | ||||
| installed = haskell-optparse-applicative-0.17.0.0-14-x86_64 | ||||
| installed = haskell-optparse-generic-1.4.8-9-x86_64 | ||||
| installed = haskell-optparse-simple-0.1.1.4-193-x86_64 | ||||
| installed = haskell-pantry-0.5.7-25-x86_64 | ||||
| installed = haskell-parser-combinators-1.3.0-4-x86_64 | ||||
| installed = haskell-path-0.9.2-85-x86_64 | ||||
| installed = haskell-path-io-1.7.0-61-x86_64 | ||||
| installed = haskell-path-pieces-0.2.1-30-x86_64 | ||||
| installed = haskell-pem-0.2.4-250-x86_64 | ||||
| installed = haskell-persistent-2.13.3.5-4-x86_64 | ||||
| installed = haskell-persistent-sqlite-2.13.1.0-11-x86_64 | ||||
| installed = haskell-primitive-0.7.4.0-43-x86_64 | ||||
| installed = haskell-project-template-0.2.1.0-253-x86_64 | ||||
| installed = haskell-quickcheck-2.14.2-371-x86_64 | ||||
| installed = haskell-random-1.2.1.1-69-x86_64 | ||||
| installed = haskell-resource-pool-0.2.3.2-262-x86_64 | ||||
| installed = haskell-resourcet-1.2.6-16-x86_64 | ||||
| installed = haskell-retry-0.9.3.0-14-x86_64 | ||||
| installed = haskell-rio-0.1.22.0-44-x86_64 | ||||
| installed = haskell-rio-orphans-0.1.2.0-191-x86_64 | ||||
| installed = haskell-rio-prettyprint-0.1.1.0-258-x86_64 | ||||
| installed = haskell-safe-0.3.19-8-x86_64 | ||||
| installed = haskell-safe-exceptions-0.1.7.3-24-x86_64 | ||||
| installed = haskell-scientific-0.3.7.0-79-x86_64 | ||||
| installed = haskell-semialign-1.2.0.1-86-x86_64 | ||||
| installed = haskell-semigroupoids-5.3.7-70-x86_64 | ||||
| installed = haskell-shelly-1.10.0-53-x86_64 | ||||
| installed = haskell-silently-1.2.5.3-1-x86_64 | ||||
| installed = haskell-socks-0.6.1-198-x86_64 | ||||
| installed = haskell-split-0.2.3.5-12-x86_64 | ||||
| installed = haskell-splitmix-0.1.0.4-108-x86_64 | ||||
| installed = haskell-statevar-1.2.2-2-x86_64 | ||||
| installed = haskell-stm-chans-3.0.0.6-2-x86_64 | ||||
| installed = haskell-streaming-commons-0.2.2.5-2-x86_64 | ||||
| installed = haskell-strict-0.4.0.1-140-x86_64 | ||||
| installed = haskell-syb-0.7.2.2-10-x86_64 | ||||
| installed = haskell-system-filepath-0.4.14-214-x86_64 | ||||
| installed = haskell-tagged-0.8.6.1-5-x86_64 | ||||
| installed = haskell-tar-0.5.1.1-138-x86_64 | ||||
| installed = haskell-tar-conduit-0.3.2-343-x86_64 | ||||
| installed = haskell-temporary-1.3-480-x86_64 | ||||
| installed = haskell-text-metrics-0.3.2-48-x86_64 | ||||
| installed = haskell-text-short-0.1.5-45-x86_64 | ||||
| installed = haskell-th-abstraction-0.4.5.0-1-x86_64 | ||||
| installed = haskell-th-compat-0.1.4-9-x86_64 | ||||
| installed = haskell-th-expand-syns-0.4.10.0-16-x86_64 | ||||
| installed = haskell-th-lift-0.8.2-13-x86_64 | ||||
| installed = haskell-th-lift-instances-0.1.20-11-x86_64 | ||||
| installed = haskell-th-reify-many-0.1.10-69-x86_64 | ||||
| installed = haskell-these-1.1.1.1-167-x86_64 | ||||
| installed = haskell-time-compat-1.9.6.1-63-x86_64 | ||||
| installed = haskell-tls-1.6.0-20-x86_64 | ||||
| installed = haskell-transformers-base-0.4.6-68-x86_64 | ||||
| installed = haskell-transformers-compat-0.7.2-1-x86_64 | ||||
| installed = haskell-type-equality-1-12-x86_64 | ||||
| installed = haskell-typed-process-0.2.10.1-20-x86_64 | ||||
| installed = haskell-unicode-data-0.4.0-3-x86_64 | ||||
| installed = haskell-unicode-transforms-0.4.0.1-35-x86_64 | ||||
| installed = haskell-unix-compat-0.6-36-x86_64 | ||||
| installed = haskell-unix-time-0.4.8-8-x86_64 | ||||
| installed = haskell-unliftio-0.2.22.0-26-x86_64 | ||||
| installed = haskell-unliftio-core-0.2.0.1-9-x86_64 | ||||
| installed = haskell-unordered-containers-0.2.19.1-43-x86_64 | ||||
| installed = haskell-uuid-types-1.0.5-83-x86_64 | ||||
| installed = haskell-vault-0.3.1.5-122-x86_64 | ||||
| installed = haskell-vector-0.13.0.0-9-x86_64 | ||||
| installed = haskell-vector-algorithms-0.9.0.1-17-x86_64 | ||||
| installed = haskell-vector-stream-0.1.0.0-1-x86_64 | ||||
| installed = haskell-void-0.7.3-169-x86_64 | ||||
| installed = haskell-witherable-0.4.2-27-x86_64 | ||||
| installed = haskell-x509-1.7.7-23-x86_64 | ||||
| installed = haskell-x509-store-1.6.9-48-x86_64 | ||||
| installed = haskell-x509-system-1.6.7-51-x86_64 | ||||
| installed = haskell-x509-validation-1.6.12-53-x86_64 | ||||
| installed = haskell-yaml-0.11.8.0-68-x86_64 | ||||
| installed = haskell-zip-archive-0.4.2.2-6-x86_64 | ||||
| installed = haskell-zlib-0.6.3.0-26-x86_64 | ||||
| installed = hicolor-icon-theme-0.17-2-any | ||||
| installed = hidapi-0.12.0-1-x86_64 | ||||
| installed = highway-1.0.1-1-x86_64 | ||||
| installed = hwdata-0.363-1-any | ||||
| installed = hwloc-2.8.0-1-x86_64 | ||||
| installed = iana-etc-20221025-1-any | ||||
| installed = icu-72.1-1-x86_64 | ||||
| installed = imath-3.1.5-3-x86_64 | ||||
| installed = imlib2-1.9.1-2-x86_64 | ||||
| installed = intellij-idea-ultimate-edition-2022.2.3-1-x86_64 | ||||
| installed = intellij-idea-ultimate-edition-jre-2022.2.3-1-x86_64 | ||||
| installed = iproute2-6.0.0-1-x86_64 | ||||
| installed = iptables-1:1.8.8-2-x86_64 | ||||
| installed = iputils-20211215-1-x86_64 | ||||
| installed = iso-codes-4.11.0-2-any | ||||
| installed = jack2-1.9.21-1-x86_64 | ||||
| installed = jansson-2.14-2-x86_64 | ||||
| installed = jbig2dec-0.19-1-x86_64 | ||||
| installed = jetbrains-fleet-1.9.237-1-x86_64 | ||||
| installed = jq-1.6-4-x86_64 | ||||
| installed = json-c-0.16-1-x86_64 | ||||
| installed = json-glib-1.6.6-2-x86_64 | ||||
| installed = jsoncpp-1.9.5-2-x86_64 | ||||
| installed = kbd-2.5.1-1-x86_64 | ||||
| installed = keychain-2.8.5-2-any | ||||
| installed = keyutils-1.6.3-1-x86_64 | ||||
| installed = kmod-30-1-x86_64 | ||||
| installed = krb5-1.20-1-x86_64 | ||||
| installed = l-smash-2.14.5-2-x86_64 | ||||
| installed = lame-3.100-4-x86_64 | ||||
| installed = lapack-3.10.1-1-x86_64 | ||||
| installed = lcms2-2.13.1-1-x86_64 | ||||
| installed = ldns-1.8.3-1-x86_64 | ||||
| installed = less-1:608-1-x86_64 | ||||
| installed = libaio-0.3.113-1-x86_64 | ||||
| installed = libappindicator-gtk3-12.10.0.r296-2-x86_64 | ||||
| installed = libarchive-3.6.1-2-x86_64 | ||||
| installed = libass-0.16.0-1-x86_64 | ||||
| installed = libassuan-2.5.5-1-x86_64 | ||||
| installed = libasyncns-1:0.8+r3+g68cd5af-1-x86_64 | ||||
| installed = libavc1394-0.5.4-4-x86_64 | ||||
| installed = libavif-0.10.1-2-x86_64 | ||||
| installed = libbluray-1.3.3-1-x86_64 | ||||
| installed = libbpf-1.0.1-1-x86_64 | ||||
| installed = libbs2b-3.1.0-8-x86_64 | ||||
| installed = libbsd-0.11.7-1-x86_64 | ||||
| installed = libcap-2.66-1-x86_64 | ||||
| installed = libcap-ng-0.8.3-1-x86_64 | ||||
| installed = libcloudproviders-0.3.1-2-x86_64 | ||||
| installed = libcolord-1.4.6-1-x86_64 | ||||
| installed = libcups-1:2.4.2-3-x86_64 | ||||
| installed = libcurl-gnutls-7.86.0-1-x86_64 | ||||
| installed = libdaemon-0.14-5-x86_64 | ||||
| installed = libdatrie-0.2.13-1-x86_64 | ||||
| installed = libdbusmenu-glib-16.04.0-5-x86_64 | ||||
| installed = libdbusmenu-gtk3-16.04.0-5-x86_64 | ||||
| installed = libdrm-2.4.113-3-x86_64 | ||||
| installed = libedit-20210910_3.1-1-x86_64 | ||||
| installed = libelf-0.187-2-x86_64 | ||||
| installed = libepoxy-1.5.10-1-x86_64 | ||||
| installed = libevdev-1.13.0-1-x86_64 | ||||
| installed = libevent-2.1.12-2-x86_64 | ||||
| installed = libexif-0.6.24-1-x86_64 | ||||
| installed = libffi-3.4.3-1-x86_64 | ||||
| installed = libfontenc-1.1.6-1-x86_64 | ||||
| installed = libgcrypt-1.10.1-1-x86_64 | ||||
| installed = libglvnd-1.5.0-1-x86_64 | ||||
| installed = libgpg-error-1.46-1-x86_64 | ||||
| installed = libgudev-237-2-x86_64 | ||||
| installed = libical-3.0.16-2-x86_64 | ||||
| installed = libice-1.0.10-4-x86_64 | ||||
| installed = libidn2-2.3.3-1-x86_64 | ||||
| installed = libiec61883-1.2.0-6-x86_64 | ||||
| installed = libimobiledevice-1.3.0-5-x86_64 | ||||
| installed = libindicator-gtk3-12.10.1-10-x86_64 | ||||
| installed = libinput-1.21.0-1-x86_64 | ||||
| installed = libisl-0.25-1-x86_64 | ||||
| installed = libjpeg-turbo-2.1.4-2-x86_64 | ||||
| installed = libjxl-0.7.0-3-x86_64 | ||||
| installed = libksba-1.6.2-1-x86_64 | ||||
| installed = libldap-2.6.3-1-x86_64 | ||||
| installed = libmaxminddb-1.7.1-1-x86_64 | ||||
| installed = libmd-1.0.4-1-x86_64 | ||||
| installed = libmfx-22.4.4-1-x86_64 | ||||
| installed = libmm-glib-1.18.12-1-x86_64 | ||||
| installed = libmnl-1.0.5-1-x86_64 | ||||
| installed = libmodplug-0.8.9.0-3-x86_64 | ||||
| installed = libmpc-1.2.1-2-x86_64 | ||||
| installed = libmpdclient-2.20-2-x86_64 | ||||
| installed = libndp-1.8-1-x86_64 | ||||
| installed = libnetfilter_conntrack-1.0.9-1-x86_64 | ||||
| installed = libnewt-0.52.21-8-x86_64 | ||||
| installed = libnfnetlink-1.0.2-1-x86_64 | ||||
| installed = libnftnl-1.2.3-1-x86_64 | ||||
| installed = libnghttp2-1.50.0-1-x86_64 | ||||
| installed = libnl-3.7.0-1-x86_64 | ||||
| installed = libnm-1.40.2-1-x86_64 | ||||
| installed = libnma-1.10.2-1-x86_64 | ||||
| installed = libnma-common-1.10.2-1-x86_64 | ||||
| installed = libnotify-0.8.1-1-x86_64 | ||||
| installed = libnsl-2.0.0-2-x86_64 | ||||
| installed = libogg-1.3.5-1-x86_64 | ||||
| installed = libomxil-bellagio-0.9.3-3-x86_64 | ||||
| installed = libp11-kit-0.24.1-1-x86_64 | ||||
| installed = libpcap-1.10.1-2-x86_64 | ||||
| installed = libpciaccess-0.17-1-x86_64 | ||||
| installed = libpgm-5.3.128-2-x86_64 | ||||
| installed = libpipeline-1.5.6-1-x86_64 | ||||
| installed = libplist-2.2.0-5-x86_64 | ||||
| installed = libpng-1.6.38-1-x86_64 | ||||
| installed = libproxy-0.4.18-1-x86_64 | ||||
| installed = libpsl-0.21.1-1-x86_64 | ||||
| installed = libpulse-16.1-1-x86_64 | ||||
| installed = libraw1394-2.1.2-3-x86_64 | ||||
| installed = librsvg-2:2.55.1-1-x86_64 | ||||
| installed = libsamplerate-0.2.2-1-x86_64 | ||||
| installed = libsasl-2.1.28-1-x86_64 | ||||
| installed = libseccomp-2.5.4-1-x86_64 | ||||
| installed = libsecret-0.20.5-2-x86_64 | ||||
| installed = libsigc++-2.10.8-1-x86_64 | ||||
| installed = libsm-1.2.3-3-x86_64 | ||||
| installed = libsndfile-1.1.0-3-x86_64 | ||||
| installed = libsodium-1.0.18-2-x86_64 | ||||
| installed = libsoup3-3.2.1-1-x86_64 | ||||
| installed = libsoxr-0.1.3-2-x86_64 | ||||
| installed = libssh-0.10.4-1-x86_64 | ||||
| installed = libssh2-1.10.0-1-x86_64 | ||||
| installed = libstemmer-2.2.0-2-x86_64 | ||||
| installed = libsynctex-2022.62885-2-x86_64 | ||||
| installed = libsysprof-capture-3.44.0-2-x86_64 | ||||
| installed = libtasn1-4.19.0-1-x86_64 | ||||
| installed = libteam-1.31-5-x86_64 | ||||
| installed = libthai-0.1.29-1-x86_64 | ||||
| installed = libtheora-1.1.1-5-x86_64 | ||||
| installed = libtiff-4.4.0-4-x86_64 | ||||
| installed = libtirpc-1.3.3-1-x86_64 | ||||
| installed = libtool-2.4.7-5-x86_64 | ||||
| installed = libunistring-1.0-1-x86_64 | ||||
| installed = libunwind-1.6.2-1-x86_64 | ||||
| installed = libusb-1.0.26-1-x86_64 | ||||
| installed = libusbmuxd-2.0.2-1-x86_64 | ||||
| installed = libuv-1.44.2-1-x86_64 | ||||
| installed = libva-2.16.0-1-x86_64 | ||||
| installed = libvdpau-1.5-1-x86_64 | ||||
| installed = libverto-0.3.2-4-x86_64 | ||||
| installed = libvisual-0.4.0-8-x86_64 | ||||
| installed = libvorbis-1.3.7-3-x86_64 | ||||
| installed = libvpx-1.12.0-1-x86_64 | ||||
| installed = libwacom-2.5.0-1-x86_64 | ||||
| installed = libwebp-1.2.4-1-x86_64 | ||||
| installed = libx11-1.8.1-3-x86_64 | ||||
| installed = libxau-1.0.10-1-x86_64 | ||||
| installed = libxcb-1.15-1-x86_64 | ||||
| installed = libxcomposite-0.4.5-4-x86_64 | ||||
| installed = libxcrypt-4.4.28-2-x86_64 | ||||
| installed = libxcursor-1.2.1-1-x86_64 | ||||
| installed = libxcvt-0.1.2-1-x86_64 | ||||
| installed = libxdamage-1.1.5-4-x86_64 | ||||
| installed = libxdmcp-1.1.3-4-x86_64 | ||||
| installed = libxext-1.3.4-4-x86_64 | ||||
| installed = libxfixes-6.0.0-1-x86_64 | ||||
| installed = libxfont2-2.0.6-1-x86_64 | ||||
| installed = libxft-2.3.6-1-x86_64 | ||||
| installed = libxi-1.8-1-x86_64 | ||||
| installed = libxinerama-1.1.4-4-x86_64 | ||||
| installed = libxkbcommon-1.4.1-1-x86_64 | ||||
| installed = libxkbcommon-x11-1.4.1-1-x86_64 | ||||
| installed = libxkbfile-1.1.1-1-x86_64 | ||||
| installed = libxml2-2.10.3-2-x86_64 | ||||
| installed = libxmu-1.1.4-1-x86_64 | ||||
| installed = libxrandr-1.5.2-4-x86_64 | ||||
| installed = libxrender-0.9.11-1-x86_64 | ||||
| installed = libxshmfence-1.3.1-1-x86_64 | ||||
| installed = libxslt-1.1.37-2-x86_64 | ||||
| installed = libxss-1.2.3-4-x86_64 | ||||
| installed = libxt-1.2.1-1-x86_64 | ||||
| installed = libxtst-1.2.4-1-x86_64 | ||||
| installed = libxv-1.0.11-5-x86_64 | ||||
| installed = libxxf86vm-1.1.5-1-x86_64 | ||||
| installed = libyaml-0.2.5-1-x86_64 | ||||
| installed = libyuv-r2322+3aebf69d-1-x86_64 | ||||
| installed = licenses-20220125-1-any | ||||
| installed = linux-6.0.2.arch1-1-x86_64 | ||||
| installed = linux-api-headers-5.18.15-1-any | ||||
| installed = linux-firmware-20220913.f09bebf-1-any | ||||
| installed = linux-firmware-whence-20220913.f09bebf-1-any | ||||
| installed = llvm-14.0.6-3-x86_64 | ||||
| installed = llvm-libs-14.0.6-3-x86_64 | ||||
| installed = lm_sensors-1:3.6.0.r41.g31d1f125-1-x86_64 | ||||
| installed = lsof-4.96.4-1-x86_64 | ||||
| installed = lua52-5.2.4-5-x86_64 | ||||
| installed = lvm2-2.03.16-2-x86_64 | ||||
| installed = lz4-1:1.9.4-1-x86_64 | ||||
| installed = lzo-2.10-3-x86_64 | ||||
| installed = m4-1.4.19-1-x86_64 | ||||
| installed = mailcap-2.1.53-1-any | ||||
| installed = make-4.3-3-x86_64 | ||||
| installed = man-db-2.11.0-1-x86_64 | ||||
| installed = md4c-0.4.8-1-x86_64 | ||||
| installed = mesa-22.2.1-1-x86_64 | ||||
| installed = meson-0.63.3-1-any | ||||
| installed = minizip-1:1.2.13-1-x86_64 | ||||
| installed = mkinitcpio-32-2-any | ||||
| installed = mkinitcpio-busybox-1.35.0-1-x86_64 | ||||
| installed = mobile-broadband-provider-info-20220725-1-any | ||||
| installed = mpfr-4.1.0.p13-3-x86_64 | ||||
| installed = mtdev-1.1.6-2-x86_64 | ||||
| installed = ncurses-6.3-3-x86_64 | ||||
| installed = neofetch-7.1.0-2-any | ||||
| installed = nettle-3.8.1-1-x86_64 | ||||
| installed = network-manager-applet-1.28.0-1-x86_64 | ||||
| installed = networkmanager-1.40.2-1-x86_64 | ||||
| installed = nextcloud-client-2:3.6.1-1-x86_64 | ||||
| installed = ninja-1.11.1-1-x86_64 | ||||
| installed = nm-connection-editor-1.28.0-1-x86_64 | ||||
| installed = noto-fonts-20220810-1-any | ||||
| installed = noto-fonts-cjk-20220126-1-any | ||||
| installed = noto-fonts-emoji-20220920-1-any | ||||
| installed = npth-1.6-3-x86_64 | ||||
| installed = nspr-4.35-1-x86_64 | ||||
| installed = nss-3.84-1-x86_64 | ||||
| installed = numactl-2.0.16-1-x86_64 | ||||
| installed = obsidian-1.0.3-1-x86_64 | ||||
| installed = ocl-icd-2.3.1-1-x86_64 | ||||
| installed = oniguruma-6.9.8-1-x86_64 | ||||
| installed = openal-1.22.2-1-x86_64 | ||||
| installed = opencore-amr-0.1.6-1-x86_64 | ||||
| installed = openexr-3.1.5-1-x86_64 | ||||
| installed = openjpeg2-2.5.0-1-x86_64 | ||||
| installed = openmpi-4.1.4-4-x86_64 | ||||
| installed = openpmix-4.2.1-1-x86_64 | ||||
| installed = openssh-9.1p1-1-x86_64 | ||||
| installed = openssl-1.1.1.q-1-x86_64 | ||||
| installed = opus-1.3.1-3-x86_64 | ||||
| installed = orc-0.4.32-2-x86_64 | ||||
| installed = p11-kit-0.24.1-1-x86_64 | ||||
| installed = pacman-6.0.1-8-x86_64 | ||||
| installed = pacman-mirrorlist-20221016-1-any | ||||
| installed = pam-1.5.2-1-x86_64 | ||||
| installed = pambase-20221020-1-any | ||||
| installed = pamixer-1.6-2-x86_64 | ||||
| installed = pango-1:1.50.11-1-x86_64 | ||||
| installed = pangomm-2.46.3-1-x86_64 | ||||
| installed = patch-2.7.6-8-x86_64 | ||||
| installed = pciutils-3.8.0-2-x86_64 | ||||
| installed = pcre-8.45-3-x86_64 | ||||
| installed = pcre2-10.40-3-x86_64 | ||||
| installed = perl-5.36.0-1-x86_64 | ||||
| installed = perl-error-0.17029-4-any | ||||
| installed = perl-mailtools-2.21-6-any | ||||
| installed = perl-timedate-2.33-4-any | ||||
| installed = pinentry-1.2.1-1-x86_64 | ||||
| installed = pixman-0.42.0-1-x86_64 | ||||
| installed = pkgconf-1.8.0-1-x86_64 | ||||
| installed = playerctl-2.4.1-2-x86_64 | ||||
| installed = polkit-121-1-x86_64 | ||||
| installed = popt-1.18-3-x86_64 | ||||
| installed = postgresql-libs-14.5-2-x86_64 | ||||
| installed = procps-ng-3.3.17-1-x86_64 | ||||
| installed = psmisc-23.5-1-x86_64 | ||||
| installed = pulseaudio-16.1-1-x86_64 | ||||
| installed = pulseaudio-bluetooth-16.1-1-x86_64 | ||||
| installed = pycharm-professional-2022.2.3-1-x86_64 | ||||
| installed = python-3.10.8-2-x86_64 | ||||
| installed = python-appdirs-1.4.4-7-any | ||||
| installed = python-autocommand-2.2.1-1-any | ||||
| installed = python-inflect-6.0.2-1-any | ||||
| installed = python-jaraco.context-4.1.2-1-any | ||||
| installed = python-jaraco.functools-3.5.2-1-any | ||||
| installed = python-jaraco.text-3.10.0-1-any | ||||
| installed = python-jinja-1:3.1.2-2-any | ||||
| installed = python-markupsafe-2.1.1-1-x86_64 | ||||
| installed = python-more-itertools-9.0.0-1-any | ||||
| installed = python-ordered-set-4.1.0-1-any | ||||
| installed = python-packaging-21.3-1-any | ||||
| installed = python-pydantic-1.10.2-1-x86_64 | ||||
| installed = python-pyparsing-3.0.9-1-any | ||||
| installed = python-pyqt5-5.15.7-2-x86_64 | ||||
| installed = python-pyqt5-sip-12.11.0-1-x86_64 | ||||
| installed = python-pyqt5-webengine-5.15.6-1-x86_64 | ||||
| installed = python-setuptools-1:63.4.3-1-any | ||||
| installed = python-tomli-2.0.1-1-any | ||||
| installed = python-trove-classifiers-2022.10.19-1-any | ||||
| installed = python-typing_extensions-4.4.0-1-any | ||||
| installed = python-validate-pyproject-0.10.1-1-any | ||||
| installed = python-yaml-6.0-1-x86_64 | ||||
| installed = qt5-base-5.15.6+kde+r181-1-x86_64 | ||||
| installed = qt5-declarative-5.15.6+kde+r20-1-x86_64 | ||||
| installed = qt5-graphicaleffects-5.15.6+kde+r0-1-x86_64 | ||||
| installed = qt5-location-5.15.6+kde+r3-1-x86_64 | ||||
| installed = qt5-multimedia-5.15.6+kde+r1-1-x86_64 | ||||
| installed = qt5-quickcontrols-5.15.6+kde+r0-1-x86_64 | ||||
| installed = qt5-quickcontrols2-5.15.6+kde+r5-1-x86_64 | ||||
| installed = qt5-svg-5.15.6+kde+r9-1-x86_64 | ||||
| installed = qt5-translations-5.15.6+kde+r2-1-any | ||||
| installed = qt5-webchannel-5.15.6+kde+r3-1-x86_64 | ||||
| installed = qt5-webengine-5.15.11-1-x86_64 | ||||
| installed = qt5-websockets-5.15.6+kde+r2-1-x86_64 | ||||
| installed = qtkeychain-qt5-0.13.2-1-x86_64 | ||||
| installed = qutebrowser-2.5.2-1-any | ||||
| installed = r-4.2.1-3-x86_64 | ||||
| installed = rav1e-0.5.1-2-x86_64 | ||||
| installed = re2-1:20220601-1-x86_64 | ||||
| installed = readline-8.1.002-1-x86_64 | ||||
| installed = rhash-1.4.2-1-x86_64 | ||||
| installed = ripgrep-13.0.0-2-x86_64 | ||||
| installed = rstudio-desktop-bin-2022.07.1.554-2-x86_64 | ||||
| installed = rtkit-0.13-2-x86_64 | ||||
| installed = rust-1:1.64.0-1-x86_64 | ||||
| installed = sbc-2.0-1-x86_64 | ||||
| installed = scdoc-1.11.2-4-x86_64 | ||||
| installed = sdl2-2.24.1-1-x86_64 | ||||
| installed = sdl2_image-2.6.2-2-x86_64 | ||||
| installed = seatd-0.7.0-2-x86_64 | ||||
| installed = sed-4.8-1-x86_64 | ||||
| installed = shadow-4.11.1-3-x86_64 | ||||
| installed = shared-mime-info-2.0+155+gf4e7cbc-1-x86_64 | ||||
| installed = slang-2.3.3-1-x86_64 | ||||
| installed = snappy-1.1.9-2-x86_64 | ||||
| installed = sndio-1.9.0-1-x86_64 | ||||
| installed = source-highlight-3.1.9-9-x86_64 | ||||
| installed = spandsp-0.0.6-3-x86_64 | ||||
| installed = spdlog-1.10.0-3-x86_64 | ||||
| installed = speex-1.2.1-1-x86_64 | ||||
| installed = speexdsp-1.2.1-1-x86_64 | ||||
| installed = spotify-1:1.1.84.716-2-x86_64 | ||||
| installed = sqlite-3.39.4-1-x86_64 | ||||
| installed = srt-1.5.1-1-x86_64 | ||||
| installed = stack-2.7.5-188-x86_64 | ||||
| installed = stow-2.3.1-3-any | ||||
| installed = sudo-1.9.12-1-x86_64 | ||||
| installed = svt-av1-1.3.0-1-x86_64 | ||||
| installed = sway-git-r6980.8aa89dc2-1-x86_64 | ||||
| installed = sway-git-debug-r6980.8aa89dc2-1-x86_64 | ||||
| installed = swaybg-git-r123.deed2ed-1-x86_64 | ||||
| installed = swayidle-1.7.1-3-x86_64 | ||||
| installed = swaylock-effects-git-r403.4b54b85-1-x86_64 | ||||
| installed = sxiv-26-1-x86_64 | ||||
| installed = sysfsutils-2.1.1-1-x86_64 | ||||
| installed = systemd-251.7-1-x86_64 | ||||
| installed = systemd-libs-251.7-1-x86_64 | ||||
| installed = systemd-sysvcompat-251.7-1-x86_64 | ||||
| installed = tar-1.34-1-x86_64 | ||||
| installed = tdb-1.4.7-1-x86_64 | ||||
| installed = tdpeuter-base-0.1.4-1-any | ||||
| installed = tdpeuter-desktop-0.1.4-1-any | ||||
| installed = tdpeuter-dev-0.1.4-1-any | ||||
| installed = termshark-2.4.0-1-x86_64 | ||||
| installed = texinfo-6.8-2-x86_64 | ||||
| installed = thin-provisioning-tools-0.9.0-1-x86_64 | ||||
| installed = tpm2-tss-3.2.0-1-x86_64 | ||||
| installed = traceroute-2.1.0-5-x86_64 | ||||
| installed = tracker3-3.4.1-1-x86_64 | ||||
| installed = tslib-1.22-1-x86_64 | ||||
| installed = ttf-liberation-2.1.5-1-any | ||||
| installed = tzdata-2022e-1-x86_64 | ||||
| installed = unzip-6.0-19-x86_64 | ||||
| installed = upower-1.90.0-1-x86_64 | ||||
| installed = usbmuxd-1.1.1-1-x86_64 | ||||
| installed = util-linux-2.38.1-1-x86_64 | ||||
| installed = util-linux-libs-2.38.1-1-x86_64 | ||||
| installed = v4l-utils-1.22.1-1-x86_64 | ||||
| installed = vid.stab-1.1-3-x86_64 | ||||
| installed = vifm-0.12.1-1-x86_64 | ||||
| installed = vim-9.0.0814-1-x86_64 | ||||
| installed = vim-runtime-9.0.0814-1-x86_64 | ||||
| installed = visual-studio-code-bin-1.72.2-1-x86_64 | ||||
| installed = vmaf-2.3.1-1-x86_64 | ||||
| installed = vulkan-headers-1:1.3.227-1-any | ||||
| installed = vulkan-icd-loader-1.3.226-1-x86_64 | ||||
| installed = vulkan-validation-layers-1.3.224.1-1-x86_64 | ||||
| installed = waybar-0.9.13-2-x86_64 | ||||
| installed = wayland-1.21.0-1-x86_64 | ||||
| installed = wayland-protocols-1.27-1-any | ||||
| installed = webrtc-audio-processing-0.3.1-3-x86_64 | ||||
| installed = which-2.21-5-x86_64 | ||||
| installed = wireshark-cli-4.0.1-1-x86_64 | ||||
| installed = wireshark-qt-4.0.1-1-x86_64 | ||||
| installed = wlroots-git-0.16.0.r5805.bc416ed7-1-x86_64 | ||||
| installed = wlroots-git-debug-0.16.0.r5805.bc416ed7-1-x86_64 | ||||
| installed = wpa_supplicant-2:2.10-5-x86_64 | ||||
| installed = x11-ssh-askpass-1.2.4.1-7-x86_64 | ||||
| installed = x264-3:0.164.r3095.baee400-4-x86_64 | ||||
| installed = x265-3.5-3-x86_64 | ||||
| installed = xcb-proto-1.15.2-1-any | ||||
| installed = xcb-util-0.4.0-4-x86_64 | ||||
| installed = xcb-util-errors-1.0.1-1-x86_64 | ||||
| installed = xcb-util-image-0.4.1-2-x86_64 | ||||
| installed = xcb-util-keysyms-0.4.1-4-x86_64 | ||||
| installed = xcb-util-renderutil-0.3.10-1-x86_64 | ||||
| installed = xcb-util-wm-0.4.2-1-x86_64 | ||||
| installed = xdg-utils-1.1.3+21+g1a58bc2-2-any | ||||
| installed = xkeyboard-config-2.37-1-any | ||||
| installed = xorg-fonts-encodings-1.0.6-1-any | ||||
| installed = xorg-server-common-21.1.4-1-x86_64 | ||||
| installed = xorg-setxkbmap-1.3.3-1-x86_64 | ||||
| installed = xorg-xkbcomp-1.4.5-1-x86_64 | ||||
| installed = xorg-xprop-1.2.5-1-x86_64 | ||||
| installed = xorg-xrandr-1.5.1-2-x86_64 | ||||
| installed = xorg-xset-1.2.4-3-x86_64 | ||||
| installed = xorg-xwayland-22.1.4-2-x86_64 | ||||
| installed = xorgproto-2022.2-1-any | ||||
| installed = xvidcore-1.3.7-2-x86_64 | ||||
| installed = xz-5.2.7-1-x86_64 | ||||
| installed = yay-11.3.0-1-x86_64 | ||||
| installed = zathura-0.5.1-1-x86_64 | ||||
| installed = zathura-pdf-mupdf-0.3.9-1-x86_64 | ||||
| installed = zellij-0.32.0-1-x86_64 | ||||
| installed = zenith-0.13.1-2-x86_64 | ||||
| installed = zeromq-4.3.4-2-x86_64 | ||||
| installed = zimg-3.0.4-1-x86_64 | ||||
| installed = zip-3.0-10-x86_64 | ||||
| installed = zlib-1:1.2.13-1-x86_64 | ||||
| installed = zstd-1.5.2-7-x86_64 | ||||
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-dev/.MTREE
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-dev/.MTREE
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										55
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-dev/.PKGINFO
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								arch/pkg/tdpeuter/pkg/tdpeuter-dev/.PKGINFO
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,55 @@ | |||
| # Generated by makepkg 6.0.1 | ||||
| # using fakeroot version 1.29 | ||||
| pkgname = tdpeuter-dev | ||||
| pkgbase = tdpeuter | ||||
| pkgver = 0.1.6-1 | ||||
| pkgdesc = Sysconfig for my systems | ||||
| url = https://git.depeuter.tk/tdpeuter/arch-pkgs | ||||
| builddate = 1667142191 | ||||
| packager = Unknown Packager | ||||
| size = 0 | ||||
| arch = any | ||||
| license = GPL | ||||
| group = tdpeuter | ||||
| depend = tdpeuter-base | ||||
| depend = archlinux-keyring | ||||
| depend = autoconf | ||||
| depend = automake | ||||
| depend = binutils | ||||
| depend = bison | ||||
| depend = debugedit | ||||
| depend = fakeroot | ||||
| depend = file | ||||
| depend = findutils | ||||
| depend = flex | ||||
| depend = gawk | ||||
| depend = gcc | ||||
| depend = gettext | ||||
| depend = git | ||||
| depend = grep | ||||
| depend = groff | ||||
| depend = gzip | ||||
| depend = libtool | ||||
| depend = m4 | ||||
| depend = make | ||||
| depend = man | ||||
| depend = pacman | ||||
| depend = patch | ||||
| depend = pkgconf | ||||
| depend = sed | ||||
| depend = sudo | ||||
| depend = texinfo | ||||
| depend = which | ||||
| depend = boost | ||||
| depend = boost-libs | ||||
| depend = cmake | ||||
| depend = gcc | ||||
| depend = gdb | ||||
| depend = glew | ||||
| depend = pkg-config | ||||
| depend = sdl2 | ||||
| depend = sdl2_image | ||||
| depend = stack | ||||
| depend = termshark | ||||
| depend = traceroute | ||||
| depend = wireshark-qt | ||||
							
								
								
									
										1
									
								
								arch/pkg/tdpeuter/src/install.sh
									
										
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								arch/pkg/tdpeuter/src/install.sh
									
										
									
									
									
										Symbolic link
									
								
							|  | @ -0,0 +1 @@ | |||
| /mnt/MyFiles/.hidden/arch-pkgs/pkg/tdpeuter/install.sh | ||||
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-base-0.1.4-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-base-0.1.4-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-base-0.1.5-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-base-0.1.5-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-base-0.1.6-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-base-0.1.6-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-desktop-0.1.4-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-desktop-0.1.4-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-desktop-0.1.5-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-desktop-0.1.5-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-desktop-0.1.6-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-desktop-0.1.6-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-dev-0.1.4-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-dev-0.1.4-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-dev-0.1.5-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-dev-0.1.5-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-dev-0.1.6-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter-dev-0.1.6-1-any.pkg.tar.zst
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.db
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.db
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.db.tar.gz
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.db.tar.gz
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.db.tar.gz.old
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.db.tar.gz.old
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.files
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.files
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.files.tar.gz
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.files.tar.gz
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.files.tar.gz.old
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								arch/pkg/tdpeuter/tdpeuter.files.tar.gz.old
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue