Version, and Release bump, fixed dependency issues
This commit is contained in:
21
PKGBUILD
21
PKGBUILD
@@ -1,14 +1,25 @@
|
||||
# PKGBUILD
|
||||
pkgname=comp
|
||||
pkgver=1.0
|
||||
pkgrel=1
|
||||
pkgver=1.2
|
||||
pkgrel=5
|
||||
pkgdesc="Simple folder compression with pv and pigz"
|
||||
arch=('any')
|
||||
license=('MIT')
|
||||
deps=('tar' 'pv' 'pigz')
|
||||
source=('comp.sh')
|
||||
md5sums=('SKIP')
|
||||
deps=('tar>0.0.0' 'pv>0.0.0' 'pigz>0.0.0')
|
||||
source=('comp.sh' 'comp.bash' '_comp')
|
||||
sha256sums=('18752ab3436748a777b2b384fdd8b5dc1fd69d81fe73c7f0482d8d633e1509e5'
|
||||
'e90c5e24ad932296b932a8dd0cfcc42051209a755828408229d73c2dc6321e83'
|
||||
'8ed621a9435b3f6d066abde2fb7eae964dda82ab90824b7fc07d167834863633')
|
||||
|
||||
|
||||
prepare() {
|
||||
sed -i "s/__VERSION__/$pkgver/" "$srcdir/comp.sh"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -Dm755 "$srcdir/comp.sh" "$pkgdir/usr/bin/comp"
|
||||
|
||||
install -Dm644 "$srcdir/comp.bash" "$pkgdir/usr/share/bash-completion/completions/comp"
|
||||
|
||||
install -Dm644 "$srcdir/_comp" "$pkgdir/usr/share/zsh/site-functions/_comp"
|
||||
}
|
||||
|
||||
19
_comp
Normal file
19
_comp
Normal file
@@ -0,0 +1,19 @@
|
||||
#compdef comp
|
||||
|
||||
_comp() {
|
||||
_arguments \
|
||||
'-h[Prints help message]' \
|
||||
'--help[Prints help message]' \
|
||||
'-v[Print version]' \
|
||||
'--version[Print version]' \
|
||||
'1:file or folder to compress:_files_or_dirs' \
|
||||
'2:output file:_files'
|
||||
|
||||
# Custom function to complete both files and directories
|
||||
_files_or_dirs() {
|
||||
_alternative \
|
||||
'directories:: _directories' \
|
||||
'files:: _files'
|
||||
}
|
||||
|
||||
}
|
||||
BIN
comp-1.0-1-any.pkg.tar.zst
Normal file
BIN
comp-1.0-1-any.pkg.tar.zst
Normal file
Binary file not shown.
BIN
comp-1.1-1-any.pkg.tar.zst
Normal file
BIN
comp-1.1-1-any.pkg.tar.zst
Normal file
Binary file not shown.
BIN
comp-1.2-1-any.pkg.tar.zst
Normal file
BIN
comp-1.2-1-any.pkg.tar.zst
Normal file
Binary file not shown.
BIN
comp-1.2-2-any.pkg.tar.zst
Normal file
BIN
comp-1.2-2-any.pkg.tar.zst
Normal file
Binary file not shown.
BIN
comp-1.2-3-any.pkg.tar.zst
Normal file
BIN
comp-1.2-3-any.pkg.tar.zst
Normal file
Binary file not shown.
BIN
comp-1.2-4-any.pkg.tar.zst
Normal file
BIN
comp-1.2-4-any.pkg.tar.zst
Normal file
Binary file not shown.
23
comp.bash
Normal file
23
comp.bash
Normal file
@@ -0,0 +1,23 @@
|
||||
# completions/comp.bash
|
||||
_comp_completions()
|
||||
{
|
||||
local cur prev opts
|
||||
COMPREPLY=()
|
||||
cur = "${COMP_WORDS[COMP_CWORD]}"
|
||||
prev = "${COMP_WORDS[COMP_CWORD-1]}"
|
||||
opts = "-h --help -v --version"
|
||||
|
||||
if [[ "$cur" == -* ]]; then
|
||||
COMPREPLY = ( $(compgen -W "${opts}" -- "$cur"))
|
||||
return 0
|
||||
fi
|
||||
|
||||
if [[ $COMP_CWORD -eq 1 ]]; then
|
||||
COMPREPLY=( $(compgen -d -- "$cur") $(compgen -f -- "$cur"))
|
||||
return 0
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
complete -F _comp_completions comp
|
||||
24
comp.sh
Normal file → Executable file
24
comp.sh
Normal file → Executable file
@@ -3,8 +3,30 @@
|
||||
# Usage: comp <folder_to_compress> [output_fildename]
|
||||
|
||||
# Check if input folder is provided
|
||||
|
||||
VERSION="__VERSION__"
|
||||
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "Usage: comp <folder_to_compress> [output_filename]"
|
||||
echo "Usage: comp <folder_or_file_to_compress> [output_file]"
|
||||
echo "comp <options>"
|
||||
exit 1
|
||||
elif [[ "$1" == "-h" || "$1" == "--help" ]]; then
|
||||
echo "Usage:"
|
||||
echo " comp <folder_or_file_to_compress> [output_file]"
|
||||
echo " comp <option>"
|
||||
echo ""
|
||||
echo "Options:"
|
||||
echo " -h --help: Print's this message"
|
||||
echo " -v --version: Ptints the current version"
|
||||
exit 0
|
||||
elif [[ "$1" == "-v" || "$1" == "--version" ]]; then
|
||||
echo "comp version: $VERSION"
|
||||
exit 0
|
||||
elif [[ ! -d "$1" || ! -f "$1" ]]; then
|
||||
echo "Invalid argument '$1'"
|
||||
echo "Usage:"
|
||||
echo " comp <folder_to_compress> [output_file]"
|
||||
echo " comp <option>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
928
pkg/comp/.BUILDINFO
Normal file
928
pkg/comp/.BUILDINFO
Normal file
@@ -0,0 +1,928 @@
|
||||
format = 2
|
||||
pkgname = comp
|
||||
pkgbase = comp
|
||||
pkgver = 1.2-4
|
||||
pkgarch = any
|
||||
pkgbuild_sha256sum = 5662ebbf43f035b74885093ded66f12ba53944e02de5e71717907a88964f4a3b
|
||||
packager = Unknown Packager
|
||||
builddate = 1745168762
|
||||
builddir = /home/server/comp-script
|
||||
startdir = /home/server/comp-script
|
||||
buildtool = makepkg
|
||||
buildtoolver = 7.0.0
|
||||
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 = a52dec-0.8.0-2-x86_64
|
||||
installed = aalib-1.4rc5-18-x86_64
|
||||
installed = abseil-cpp-20250127.1-1-x86_64
|
||||
installed = accountsservice-23.13.9-2-x86_64
|
||||
installed = acl-2.3.2-1-x86_64
|
||||
installed = adobe-source-code-pro-fonts-2.042u+1.062i+1.026vf-2-any
|
||||
installed = adwaita-cursors-48.0-1-any
|
||||
installed = adwaita-fonts-48.2-1-any
|
||||
installed = adwaita-icon-theme-48.0-1-any
|
||||
installed = adwaita-icon-theme-legacy-46.2-3-any
|
||||
installed = alsa-card-profiles-1:1.4.1-1-x86_64
|
||||
installed = alsa-lib-1.2.13-1-x86_64
|
||||
installed = alsa-topology-conf-1.2.5.1-4-any
|
||||
installed = alsa-ucm-conf-1.2.13-2-any
|
||||
installed = amd-ucode-20250408.c1a774f3-1-any
|
||||
installed = aom-3.12.0-1-x86_64
|
||||
installed = appstream-1.0.4-1-x86_64
|
||||
installed = appstream-qt-1.0.4-1-x86_64
|
||||
installed = archlinux-keyring-20250123-1-any
|
||||
installed = argon2-20190702-6-x86_64
|
||||
installed = aribb24-1.0.3-4-x86_64
|
||||
installed = ark-24.12.3-1-x86_64
|
||||
installed = arm-none-eabi-binutils-2.43-1-x86_64
|
||||
installed = arm-none-eabi-gcc-14.2.0-1-x86_64
|
||||
installed = arm-none-eabi-gdb-16.2-1-x86_64
|
||||
installed = arm-none-eabi-newlib-4.5.0.20241231-1-any
|
||||
installed = at-spi2-core-2.56.1-1-x86_64
|
||||
installed = atkmm-2.28.4-1-x86_64
|
||||
installed = attica-6.12.0-1-x86_64
|
||||
installed = attr-2.5.2-1-x86_64
|
||||
installed = audit-4.0.3-1-x86_64
|
||||
installed = autoconf-2.72-1-any
|
||||
installed = automake-1.17-1-any
|
||||
installed = avahi-1:0.8+r194+g3f79789-3-x86_64
|
||||
installed = baloo-6.12.0-1-x86_64
|
||||
installed = baloo-widgets-24.12.3-1-x86_64
|
||||
installed = base-3-2-any
|
||||
installed = base-devel-1-2-any
|
||||
installed = bash-5.2.037-2-x86_64
|
||||
installed = bashtop-0.9.25-2-any
|
||||
installed = binutils-2.44-1-x86_64
|
||||
installed = bison-3.8.2-8-x86_64
|
||||
installed = bluez-libs-5.82-1-x86_64
|
||||
installed = boost-libs-1.87.0-3-x86_64
|
||||
installed = breeze-6.3.4-1-x86_64
|
||||
installed = breeze-icons-6.12.0-1-x86_64
|
||||
installed = bridge-utils-1.7.1-2-x86_64
|
||||
installed = brotli-1.1.0-3-x86_64
|
||||
installed = browsh-1.8.3-1-x86_64
|
||||
installed = btop-1.4.0-5-x86_64
|
||||
installed = bzip2-1.0.8-6-x86_64
|
||||
installed = c-ares-1.34.5-1-x86_64
|
||||
installed = ca-certificates-20240618-1-any
|
||||
installed = ca-certificates-mozilla-3.110-1-x86_64
|
||||
installed = ca-certificates-utils-20240618-1-any
|
||||
installed = cairo-1.18.4-1-x86_64
|
||||
installed = cairomm-1.14.5-1-x86_64
|
||||
installed = cantarell-fonts-1:0.303.1-2-any
|
||||
installed = capstone-5.0.6-1-x86_64
|
||||
installed = cdparanoia-10.2-9-x86_64
|
||||
installed = certbot-4.0.0-1-any
|
||||
installed = cifs-utils-7.3-1-x86_64
|
||||
installed = cloc-2.04-1-any
|
||||
installed = cmake-4.0.1-1-x86_64
|
||||
installed = cockatrice-2.9.0-18-x86_64
|
||||
installed = comp-1.2-3-any
|
||||
installed = composer-2.8.8-1-any
|
||||
installed = containerd-2.0.4-1-x86_64
|
||||
installed = convertlit-1.8-12-x86_64
|
||||
installed = coreutils-9.7-1-x86_64
|
||||
installed = cpio-2.15-2-x86_64
|
||||
installed = cppdap-1.58.0-2-x86_64
|
||||
installed = cpupower-6.14-1-x86_64
|
||||
installed = cryptsetup-2.7.5-2-x86_64
|
||||
installed = cuda-12.8.1-1-x86_64
|
||||
installed = curl-8.13.0-2-x86_64
|
||||
installed = dav1d-1.5.1-1-x86_64
|
||||
installed = db5.3-5.3.28-5-x86_64
|
||||
installed = dbus-1.16.2-1-x86_64
|
||||
installed = dbus-broker-36-4-x86_64
|
||||
installed = dbus-broker-units-36-4-x86_64
|
||||
installed = dbus-units-36-4-x86_64
|
||||
installed = dconf-0.40.0-3-x86_64
|
||||
installed = ddcutil-2.2.0-1-x86_64
|
||||
installed = debugedit-5.1-1-x86_64
|
||||
installed = default-cursors-3-1-any
|
||||
installed = desktop-file-utils-0.28-1-x86_64
|
||||
installed = device-mapper-2.03.31-1-x86_64
|
||||
installed = diffutils-3.11-2-x86_64
|
||||
installed = dmidecode-3.6-1-x86_64
|
||||
installed = dnsmasq-2.91-1-x86_64
|
||||
installed = docker-1:28.0.4-2-x86_64
|
||||
installed = docker-compose-2.35.0-1-x86_64
|
||||
installed = dolphin-24.12.3-1-x86_64
|
||||
installed = dolphin-plugins-24.12.3-1-x86_64
|
||||
installed = dosfstools-4.2-5-x86_64
|
||||
installed = dotnet-host-9.0.3.sdk104-1-x86_64
|
||||
installed = dotnet-runtime-8.0-8.0.14.sdk114-1-x86_64
|
||||
installed = double-conversion-3.3.1-1-x86_64
|
||||
installed = dtc-1.7.2-3-x86_64
|
||||
installed = duktape-2.7.0-7-x86_64
|
||||
installed = e2fsprogs-1.47.2-2-x86_64
|
||||
installed = ebook-tools-0.2.2-8-x86_64
|
||||
installed = ed-1.21.1-1-x86_64
|
||||
installed = editorconfig-core-c-0.12.9-1-x86_64
|
||||
installed = edk2-ovmf-202411-1-any
|
||||
installed = efibootmgr-18-3-x86_64
|
||||
installed = efivar-39-1-x86_64
|
||||
installed = egl-gbm-1.1.2.1-1-x86_64
|
||||
installed = egl-wayland-4:1.1.18-1-x86_64
|
||||
installed = egl-x11-1.0.0-1-x86_64
|
||||
installed = eglexternalplatform-1.2-2-any
|
||||
installed = ethtool-1:6.11-1-x86_64
|
||||
installed = exiv2-0.28.5-1-x86_64
|
||||
installed = expat-2.7.1-1-x86_64
|
||||
installed = faad2-2.11.2-1-x86_64
|
||||
installed = fakeroot-1.37.1.1-1-x86_64
|
||||
installed = fastfetch-2.40.4-1-x86_64
|
||||
installed = ffmpeg-2:7.1-9-x86_64
|
||||
installed = ffmpeg4.4-4.4.5-3-x86_64
|
||||
installed = fftw-3.3.10-7-x86_64
|
||||
installed = file-5.46-4-x86_64
|
||||
installed = filesystem-2024.11.21-1-any
|
||||
installed = findutils-4.10.0-2-x86_64
|
||||
installed = firefox-137.0.1-1-x86_64
|
||||
installed = flac-1.5.0-1-x86_64
|
||||
installed = flex-2.6.4-5-x86_64
|
||||
installed = folia-server-builder-1.0.2-1-any
|
||||
installed = fontconfig-2:2.16.2-1-x86_64
|
||||
installed = frameworkintegration-6.12.0-1-x86_64
|
||||
installed = freeglut-3.6.0-1-x86_64
|
||||
installed = freerdp2-2.11.7-3-x86_64
|
||||
installed = freetype2-2.13.3-3-x86_64
|
||||
installed = fribidi-1.0.16-1-x86_64
|
||||
installed = fuse-common-3.17.1-1-x86_64
|
||||
installed = fuse3-3.17.1-1-x86_64
|
||||
installed = gawk-5.3.2-1-x86_64
|
||||
installed = gc-8.2.8-2-x86_64
|
||||
installed = gcc-14.2.1+r753+g1cd744a6828f-1-x86_64
|
||||
installed = gcc-libs-14.2.1+r753+g1cd744a6828f-1-x86_64
|
||||
installed = gcc13-13.3.1+r432+gfc8bd63119c0-1-x86_64
|
||||
installed = gcc13-libs-13.3.1+r432+gfc8bd63119c0-1-x86_64
|
||||
installed = gdb-16.2-1-x86_64
|
||||
installed = gdb-common-16.2-1-x86_64
|
||||
installed = gdbm-1.25-1-x86_64
|
||||
installed = gdk-pixbuf2-2.42.12-2-x86_64
|
||||
installed = geoip-1.6.12-3-x86_64
|
||||
installed = geoip-database-20250129-1-any
|
||||
installed = gettext-0.24-1-x86_64
|
||||
installed = giflib-5.2.2-1-x86_64
|
||||
installed = git-2.49.0-1-x86_64
|
||||
installed = gitea-1.23.7-1-x86_64
|
||||
installed = glib-networking-1:2.80.1-1-x86_64
|
||||
installed = glib2-2.84.1-1-x86_64
|
||||
installed = glib2-devel-2.84.1-1-x86_64
|
||||
installed = glibc-2.41+r9+ga900dbaf70f0-1-x86_64
|
||||
installed = glibmm-2.66.8-1-x86_64
|
||||
installed = glslang-15.2.0-2-x86_64
|
||||
installed = glu-9.0.3-2-x86_64
|
||||
installed = gmp-6.3.0-2-x86_64
|
||||
installed = gnu-free-fonts-20120503-8-any
|
||||
installed = gnulib-l10n-20241231-1-any
|
||||
installed = gnupg-2.4.7-1-x86_64
|
||||
installed = gnutls-3.8.9-1-x86_64
|
||||
installed = gobject-introspection-runtime-1.84.0-1-x86_64
|
||||
installed = gparted-1.7.0-1-x86_64
|
||||
installed = gperftools-2.16-1-x86_64
|
||||
installed = gpgme-1.24.2-1-x86_64
|
||||
installed = gpm-1.20.7.r38.ge82d1a6-6-x86_64
|
||||
installed = gradle-8.13-1-any
|
||||
installed = graphene-1.10.8-2-x86_64
|
||||
installed = graphicsmagick-1.3.45-3-x86_64
|
||||
installed = graphite-1:1.3.14-4-x86_64
|
||||
installed = grep-3.11-1-x86_64
|
||||
installed = groff-1.23.0-7-x86_64
|
||||
installed = grub-2:2.12.r260.gaae2ea61-1-x86_64
|
||||
installed = gsettings-desktop-schemas-48.0-1-any
|
||||
installed = gsettings-system-schemas-48.0-1-any
|
||||
installed = gsm-1.0.22-2-x86_64
|
||||
installed = gst-plugin-pipewire-1:1.4.1-1-x86_64
|
||||
installed = gst-plugins-base-1.26.0-3-x86_64
|
||||
installed = gst-plugins-base-libs-1.26.0-3-x86_64
|
||||
installed = gst-plugins-good-1.26.0-3-x86_64
|
||||
installed = gstreamer-1.26.0-3-x86_64
|
||||
installed = gtest-1.16.0-2-x86_64
|
||||
installed = gtk-update-icon-cache-1:4.18.4-1-x86_64
|
||||
installed = gtk-vnc-1.5.0-1-x86_64
|
||||
installed = gtk3-1:3.24.49-1-x86_64
|
||||
installed = gtkmm3-3.24.10-1-x86_64
|
||||
installed = gtksourceview4-4.8.4-1-x86_64
|
||||
installed = guile-3.0.10-1-x86_64
|
||||
installed = gzip-1.13-4-x86_64
|
||||
installed = harfbuzz-11.0.1-1-x86_64
|
||||
installed = hicolor-icon-theme-0.18-1-any
|
||||
installed = hidapi-0.14.0-3-x86_64
|
||||
installed = highway-1.2.0-1-x86_64
|
||||
installed = hunspell-1.7.2-2-x86_64
|
||||
installed = hwdata-0.394-1-any
|
||||
installed = i2c-tools-4.4-2-x86_64
|
||||
installed = iana-etc-20250328-1-any
|
||||
installed = icu-76.1-1-x86_64
|
||||
installed = imagemagick-7.1.1.47-1-x86_64
|
||||
installed = imath-3.1.12-3-x86_64
|
||||
installed = imlib2-1.12.5-1-x86_64
|
||||
installed = iniparser-4.2.6-1-x86_64
|
||||
installed = inotify-tools-4.23.9.0-2-x86_64
|
||||
installed = iproute2-6.14.0-1-x86_64
|
||||
installed = iptables-1:1.8.11-2-x86_64
|
||||
installed = iputils-20240905-1-x86_64
|
||||
installed = iso-codes-4.18.0-1-any
|
||||
installed = jansson-2.14.1-1-x86_64
|
||||
installed = jasper-4.2.5-1-x86_64
|
||||
installed = java-environment-common-3-6-any
|
||||
installed = java-runtime-common-3-6-any
|
||||
installed = jbigkit-2.1-8-x86_64
|
||||
installed = jdk-openjdk-24.u36-1-x86_64
|
||||
installed = jdk17-openjdk-17.0.14.u7-1-x86_64
|
||||
installed = jdk21-openjdk-21.0.6.u7-1-x86_64
|
||||
installed = jemalloc-1:5.3.0-5-x86_64
|
||||
installed = jq-1.7.1-2-x86_64
|
||||
installed = json-c-0.18-1-x86_64
|
||||
installed = json-glib-1.10.6-1-x86_64
|
||||
installed = jsoncpp-1.9.6-3-x86_64
|
||||
installed = kactivitymanagerd-6.3.4-1-x86_64
|
||||
installed = karchive-6.12.0-1-x86_64
|
||||
installed = kauth-6.12.0-1-x86_64
|
||||
installed = kauth5-5.116.0-1-x86_64
|
||||
installed = kbd-2.7.1-2-x86_64
|
||||
installed = kbookmarks-6.12.0-1-x86_64
|
||||
installed = kcmutils-6.12.0-1-x86_64
|
||||
installed = kcodecs-6.12.0-1-x86_64
|
||||
installed = kcodecs5-5.116.0-1-x86_64
|
||||
installed = kcolorscheme-6.12.0-1-x86_64
|
||||
installed = kcompletion-6.12.0-1-x86_64
|
||||
installed = kconfig-6.12.0-1-x86_64
|
||||
installed = kconfig5-5.116.0-1-x86_64
|
||||
installed = kconfigwidgets-6.12.0-1-x86_64
|
||||
installed = kconfigwidgets5-5.116.0-1-x86_64
|
||||
installed = kcoreaddons-6.12.0-2-x86_64
|
||||
installed = kcoreaddons5-5.116.0-1-x86_64
|
||||
installed = kcrash-6.12.0-1-x86_64
|
||||
installed = kdbusaddons-6.12.0-1-x86_64
|
||||
installed = kdbusaddons5-5.116.0-1-x86_64
|
||||
installed = kde-cli-tools-6.3.4-1-x86_64
|
||||
installed = kdeclarative-6.12.0-1-x86_64
|
||||
installed = kdecoration-6.3.4-1-x86_64
|
||||
installed = kded-6.12.0-1-x86_64
|
||||
installed = kdesu-6.12.0-1-x86_64
|
||||
installed = kdnssd-6.12.0-1-x86_64
|
||||
installed = kdsoap-qt6-2.2.0-1-x86_64
|
||||
installed = kdsoap-ws-discovery-client-0.4.0-1-x86_64
|
||||
installed = keyutils-1.6.3-3-x86_64
|
||||
installed = kfilemetadata-6.12.0-1-x86_64
|
||||
installed = kglobalaccel-6.12.0-1-x86_64
|
||||
installed = kglobalacceld-6.3.4-1-x86_64
|
||||
installed = kguiaddons-6.12.0-2-x86_64
|
||||
installed = kguiaddons5-5.116.0-1-x86_64
|
||||
installed = kholidays-1:6.12.0-1-x86_64
|
||||
installed = ki18n-6.12.0-1-x86_64
|
||||
installed = ki18n5-5.116.0-1-x86_64
|
||||
installed = kiconthemes-6.12.0-1-x86_64
|
||||
installed = kidletime-6.12.0-1-x86_64
|
||||
installed = kio-6.12.0-1-x86_64
|
||||
installed = kio-extras-24.12.3-1-x86_64
|
||||
installed = kio-fuse-5.1.0-5-x86_64
|
||||
installed = kirigami-6.12.0-1-x86_64
|
||||
installed = kirigami-addons-1.7.0-1-x86_64
|
||||
installed = kitemmodels-6.12.0-1-x86_64
|
||||
installed = kitemviews-6.12.0-1-x86_64
|
||||
installed = kitty-0.41.1-1-x86_64
|
||||
installed = kitty-shell-integration-0.41.1-1-x86_64
|
||||
installed = kitty-terminfo-0.41.1-1-x86_64
|
||||
installed = kjobwidgets-6.12.0-1-x86_64
|
||||
installed = kmenuedit-6.3.4-1-x86_64
|
||||
installed = kmod-34.2-1-x86_64
|
||||
installed = knewstuff-6.12.0-1-x86_64
|
||||
installed = knotifications-6.12.0-2-x86_64
|
||||
installed = knotifications5-5.116.0-1-x86_64
|
||||
installed = knotifyconfig-6.12.0-1-x86_64
|
||||
installed = kpackage-6.12.0-1-x86_64
|
||||
installed = kparts-6.12.0-1-x86_64
|
||||
installed = kpipewire-6.3.4-1-x86_64
|
||||
installed = kpty-6.12.0-1-x86_64
|
||||
installed = kquickcharts-6.12.0-1-x86_64
|
||||
installed = krb5-1.21.3-1-x86_64
|
||||
installed = krdp-6.3.4-1-x86_64
|
||||
installed = krunner-6.12.0-1-x86_64
|
||||
installed = kscreenlocker-6.3.4-1-x86_64
|
||||
installed = kservice-6.12.0-1-x86_64
|
||||
installed = kservice5-5.116.0-1-x86_64
|
||||
installed = kstatusnotifieritem-6.12.0-2-x86_64
|
||||
installed = ksvg-6.12.0-1-x86_64
|
||||
installed = ksystemstats-6.3.4-1-x86_64
|
||||
installed = ktexteditor-6.12.0-1-x86_64
|
||||
installed = ktextwidgets-6.12.0-1-x86_64
|
||||
installed = kunitconversion-6.12.0-2-x86_64
|
||||
installed = kuserfeedback-6.12.0-1-x86_64
|
||||
installed = kwallet-6.12.0-1-x86_64
|
||||
installed = kwallet-pam-6.3.4-1-x86_64
|
||||
installed = kwallet5-5.116.0-1-x86_64
|
||||
installed = kwalletmanager-24.12.3-1-x86_64
|
||||
installed = kwayland-6.3.4-1-x86_64
|
||||
installed = kwidgetsaddons-6.12.0-2-x86_64
|
||||
installed = kwidgetsaddons5-5.116.0-1-x86_64
|
||||
installed = kwin-6.3.4-4-x86_64
|
||||
installed = kwindowsystem-6.12.0-3-x86_64
|
||||
installed = kwindowsystem5-5.116.0-1-x86_64
|
||||
installed = kxmlgui-6.12.0-2-x86_64
|
||||
installed = l-smash-2.14.5-4-x86_64
|
||||
installed = lame-3.100-5-x86_64
|
||||
installed = layer-shell-qt-6.3.4-2-x86_64
|
||||
installed = lcms2-2.17-1-x86_64
|
||||
installed = ldb-2:4.22.0-1-x86_64
|
||||
installed = leancrypto-1.3.0-1-x86_64
|
||||
installed = less-1:668-1-x86_64
|
||||
installed = lf-34-1-x86_64
|
||||
installed = libaio-0.3.113-3-x86_64
|
||||
installed = libarchive-3.7.9-1-x86_64
|
||||
installed = libass-0.17.3-1-x86_64
|
||||
installed = libassuan-3.0.0-1-x86_64
|
||||
installed = libasyncns-1:0.8+r3+g68cd5af-3-x86_64
|
||||
installed = libatasmart-0.19-6-x86_64
|
||||
installed = libavc1394-0.5.4-6-x86_64
|
||||
installed = libb2-0.98.1-3-x86_64
|
||||
installed = libblockdev-3.3.0-1-x86_64
|
||||
installed = libblockdev-crypto-3.3.0-1-x86_64
|
||||
installed = libblockdev-fs-3.3.0-1-x86_64
|
||||
installed = libblockdev-loop-3.3.0-1-x86_64
|
||||
installed = libblockdev-mdraid-3.3.0-1-x86_64
|
||||
installed = libblockdev-nvme-3.3.0-1-x86_64
|
||||
installed = libblockdev-part-3.3.0-1-x86_64
|
||||
installed = libblockdev-swap-3.3.0-1-x86_64
|
||||
installed = libbluray-1.3.4-2-x86_64
|
||||
installed = libbpf-1.5.0-1-x86_64
|
||||
installed = libbs2b-3.1.0-9-x86_64
|
||||
installed = libbsd-0.12.2-2-x86_64
|
||||
installed = libburn-1.5.6-1-x86_64
|
||||
installed = libbytesize-2.11-1-x86_64
|
||||
installed = libcaca-0.99.beta20-5-x86_64
|
||||
installed = libcacard-2.8.1-1-x86_64
|
||||
installed = libcanberra-1:0.30+r2+gc0620e4-4-x86_64
|
||||
installed = libcap-2.75-1-x86_64
|
||||
installed = libcap-ng-0.8.5-3-x86_64
|
||||
installed = libcbor-0.11.0-1-x86_64
|
||||
installed = libcloudproviders-0.3.6-1-x86_64
|
||||
installed = libcolord-1.4.7-2-x86_64
|
||||
installed = libcups-2:2.4.12-1-x86_64
|
||||
installed = libdaemon-0.14-6-x86_64
|
||||
installed = libdatrie-0.2.13-4-x86_64
|
||||
installed = libdbusmenu-qt5-0.9.3+16.04.20160218-7-x86_64
|
||||
installed = libdca-0.0.7-2-x86_64
|
||||
installed = libdecor-0.2.2-1-x86_64
|
||||
installed = libdeflate-1.23-1-x86_64
|
||||
installed = libdisplay-info-0.2.0-2-x86_64
|
||||
installed = libdmtx-0.7.8-1-x86_64
|
||||
installed = libdovi-3.3.1-1-x86_64
|
||||
installed = libdrm-2.4.124-1-x86_64
|
||||
installed = libdv-1.0.0-11-x86_64
|
||||
installed = libdvbpsi-1:1.3.3-3-x86_64
|
||||
installed = libdvdnav-6.1.1-2-x86_64
|
||||
installed = libdvdread-6.1.3-2-x86_64
|
||||
installed = libebml-1.4.5-1-x86_64
|
||||
installed = libebur128-1.2.6-2-x86_64
|
||||
installed = libedit-20250104_3.1-1-x86_64
|
||||
installed = libei-1.4.0-1-x86_64
|
||||
installed = libelf-0.192-4-x86_64
|
||||
installed = libepoxy-1.5.10-3-x86_64
|
||||
installed = libevdev-1.13.4-1-x86_64
|
||||
installed = libevent-2.1.12-4-x86_64
|
||||
installed = libfdk-aac-2.0.3-1-x86_64
|
||||
installed = libffi-3.4.7-1-x86_64
|
||||
installed = libfontenc-1.1.8-1-x86_64
|
||||
installed = libfreeaptx-0.2.2-1-x86_64
|
||||
installed = libgcrypt-1.11.0-3-x86_64
|
||||
installed = libgirepository-1.84.0-1-x86_64
|
||||
installed = libglvnd-1.7.0-1-x86_64
|
||||
installed = libgovirt-2:0.3.9-2-x86_64
|
||||
installed = libgpg-error-1.53-1-x86_64
|
||||
installed = libgudev-238-1-x86_64
|
||||
installed = libice-1.1.2-1-x86_64
|
||||
installed = libidn-1.43-1-x86_64
|
||||
installed = libidn2-2.3.7-1-x86_64
|
||||
installed = libiec61883-1.2.0-8-x86_64
|
||||
installed = libimobiledevice-1.3.0-15-x86_64
|
||||
installed = libimobiledevice-glue-1.3.1-1-x86_64
|
||||
installed = libinih-58-1-x86_64
|
||||
installed = libinput-1.28.1-1-x86_64
|
||||
installed = libisl-0.27-1-x86_64
|
||||
installed = libisoburn-1.5.6-1-x86_64
|
||||
installed = libisofs-1.5.6-1-x86_64
|
||||
installed = libjpeg-turbo-3.1.0-1-x86_64
|
||||
installed = libjxl-0.11.1-3-x86_64
|
||||
installed = libkexiv2-24.12.3-1-x86_64
|
||||
installed = libksba-1.6.7-2-x86_64
|
||||
installed = libkscreen-6.3.4-1-x86_64
|
||||
installed = libksysguard-6.3.4-1-x86_64
|
||||
installed = liblc3-1.1.3-1-x86_64
|
||||
installed = libldac-2.0.2.3-2-x86_64
|
||||
installed = libldap-2.6.9-1-x86_64
|
||||
installed = liblqr-0.4.3-1-x86_64
|
||||
installed = libmad-0.15.1b-10-x86_64
|
||||
installed = libmatroska-1.7.1-2-x86_64
|
||||
installed = libmd-1.1.0-2-x86_64
|
||||
installed = libmfx-23.2.2-3-x86_64
|
||||
installed = libmm-glib-1.24.0-1-x86_64
|
||||
installed = libmng-2.0.3-4-x86_64
|
||||
installed = libmnl-1.0.5-2-x86_64
|
||||
installed = libmodplug-0.8.9.0-6-x86_64
|
||||
installed = libmpc-1.3.1-2-x86_64
|
||||
installed = libmpcdec-1:0.1+r475-6-x86_64
|
||||
installed = libmpeg2-0.5.1-10-x86_64
|
||||
installed = libmtp-1.1.22-1-x86_64
|
||||
installed = libmysofa-1.3.3-1-x86_64
|
||||
installed = libnbd-1.22.0-2-x86_64
|
||||
installed = libndp-1.9-1-x86_64
|
||||
installed = libnet-2:1.3-1-x86_64
|
||||
installed = libnetfilter_conntrack-1.0.9-2-x86_64
|
||||
installed = libnewt-0.52.25-1-x86_64
|
||||
installed = libnfnetlink-1.0.2-2-x86_64
|
||||
installed = libnftnl-1.2.8-1-x86_64
|
||||
installed = libnghttp2-1.65.0-1-x86_64
|
||||
installed = libnghttp3-1.8.0-1-x86_64
|
||||
installed = libngtcp2-1.11.0-1-x86_64
|
||||
installed = libnl-3.11.0-1-x86_64
|
||||
installed = libnm-1.52.0-1-x86_64
|
||||
installed = libnotify-0.8.6-1-x86_64
|
||||
installed = libnsl-2.0.1-1-x86_64
|
||||
installed = libnvme-1.12-2-x86_64
|
||||
installed = libogg-1.3.5-2-x86_64
|
||||
installed = libopenmpt-0.7.13-2-x86_64
|
||||
installed = libosinfo-1.12.0-1-x86_64
|
||||
installed = libp11-kit-0.25.5-1-x86_64
|
||||
installed = libpcap-1.10.5-2-x86_64
|
||||
installed = libpciaccess-0.18.1-2-x86_64
|
||||
installed = libpgm-5.3.128-3-x86_64
|
||||
installed = libpipeline-1.5.8-1-x86_64
|
||||
installed = libpipewire-1:1.4.1-1-x86_64
|
||||
installed = libplacebo-7.349.0-6-x86_64
|
||||
installed = libplasma-6.3.4-1-x86_64
|
||||
installed = libplist-2.6.0-2-x86_64
|
||||
installed = libpng-1.6.47-1-x86_64
|
||||
installed = libproxy-0.5.9-1-x86_64
|
||||
installed = libpsl-0.21.5-2-x86_64
|
||||
installed = libpulse-17.0+r43+g3e2bb8a1e-1-x86_64
|
||||
installed = libqaccessibilityclient-qt6-0.6.0-1-x86_64
|
||||
installed = libqalculate-5.5.2-1-x86_64
|
||||
installed = libraqm-0.10.2-1-x86_64
|
||||
installed = libraw1394-2.1.2-4-x86_64
|
||||
installed = librest-0.9.1-2-x86_64
|
||||
installed = librsvg-2:2.60.0-1-x86_64
|
||||
installed = librsync-1:2.3.4-2-x86_64
|
||||
installed = libsamplerate-0.2.2-3-x86_64
|
||||
installed = libsasl-2.1.28-5-x86_64
|
||||
installed = libseccomp-2.5.6-1-x86_64
|
||||
installed = libsecret-0.21.7-1-x86_64
|
||||
installed = libshout-1:2.4.6-3-x86_64
|
||||
installed = libsigc++-2.12.1-1-x86_64
|
||||
installed = libslirp-4.9.0-1-x86_64
|
||||
installed = libsm-1.2.6-1-x86_64
|
||||
installed = libsndfile-1.2.2-3-x86_64
|
||||
installed = libsodium-1.0.20-1-x86_64
|
||||
installed = libsoup3-3.6.5-1-x86_64
|
||||
installed = libsoxr-0.1.3-4-x86_64
|
||||
installed = libssh-0.11.1-1-x86_64
|
||||
installed = libssh2-1.11.1-1-x86_64
|
||||
installed = libstemmer-2.2.0-2-x86_64
|
||||
installed = libsysprof-capture-48.0-3-x86_64
|
||||
installed = libtar-1.2.20-7-x86_64
|
||||
installed = libtasn1-4.20.0-1-x86_64
|
||||
installed = libteam-1.32-2-x86_64
|
||||
installed = libthai-0.1.29-3-x86_64
|
||||
installed = libtheora-1.1.1-6-x86_64
|
||||
installed = libtiff-4.7.0-1-x86_64
|
||||
installed = libtirpc-1.3.6-1-x86_64
|
||||
installed = libtommath-1.3.0-1-x86_64
|
||||
installed = libtool-2.5.4+r1+gbaa1fe41-3-x86_64
|
||||
installed = libtraceevent-1:1.8.4-1-x86_64
|
||||
installed = libtracefs-1.8.1-1-x86_64
|
||||
installed = libunibreak-6.1-1-x86_64
|
||||
installed = libunistring-1.3-1-x86_64
|
||||
installed = libunwind-1.8.1-3-x86_64
|
||||
installed = libupnp-1.14.20-2-x86_64
|
||||
installed = liburing-2.9-1-x86_64
|
||||
installed = libusb-1.0.28-1-x86_64
|
||||
installed = libusbmuxd-2.1.0-1-x86_64
|
||||
installed = libutempter-1.2.3-1-x86_64
|
||||
installed = libuv-1.50.0-1-x86_64
|
||||
installed = libva-2.22.0-1-x86_64
|
||||
installed = libvdpau-1.5-3-x86_64
|
||||
installed = libverto-0.3.2-5-x86_64
|
||||
installed = libvirt-1:11.2.0-1-x86_64
|
||||
installed = libvirt-glib-5.0.0-2-x86_64
|
||||
installed = libvirt-python-1:11.2.0-1-x86_64
|
||||
installed = libvlc-3.0.21-16-x86_64
|
||||
installed = libvorbis-1.3.7-4-x86_64
|
||||
installed = libvpl-2.14.0-1-x86_64
|
||||
installed = libvpx-1.15.0-1-x86_64
|
||||
installed = libwacom-2.15.0-1-x86_64
|
||||
installed = libwbclient-2:4.22.0-1-x86_64
|
||||
installed = libwebp-1.5.0-1-x86_64
|
||||
installed = libwireplumber-0.5.8-1-x86_64
|
||||
installed = libx11-1.8.12-1-x86_64
|
||||
installed = libxau-1.0.12-1-x86_64
|
||||
installed = libxaw-1.0.16-1-x86_64
|
||||
installed = libxcb-1.17.0-1-x86_64
|
||||
installed = libxcomposite-0.4.6-2-x86_64
|
||||
installed = libxcrypt-4.4.38-1-x86_64
|
||||
installed = libxcursor-1.2.3-1-x86_64
|
||||
installed = libxcvt-0.1.3-1-x86_64
|
||||
installed = libxdamage-1.1.6-2-x86_64
|
||||
installed = libxdmcp-1.1.5-1-x86_64
|
||||
installed = libxdp-1.5.3-1-x86_64
|
||||
installed = libxext-1.3.6-1-x86_64
|
||||
installed = libxfixes-6.0.1-2-x86_64
|
||||
installed = libxfont2-2.0.7-1-x86_64
|
||||
installed = libxft-2.3.8-2-x86_64
|
||||
installed = libxi-1.8.2-1-x86_64
|
||||
installed = libxinerama-1.1.5-2-x86_64
|
||||
installed = libxkbcommon-1.8.1-1-x86_64
|
||||
installed = libxkbcommon-x11-1.8.1-1-x86_64
|
||||
installed = libxkbfile-1.1.3-1-x86_64
|
||||
installed = libxml2-2.13.7-1-x86_64
|
||||
installed = libxmlb-0.3.22-1-x86_64
|
||||
installed = libxmu-1.2.1-1-x86_64
|
||||
installed = libxnvctrl-570.133.07-1-x86_64
|
||||
installed = libxpm-3.5.17-2-x86_64
|
||||
installed = libxrandr-1.5.4-1-x86_64
|
||||
installed = libxrender-0.9.12-1-x86_64
|
||||
installed = libxshmfence-1.3.3-1-x86_64
|
||||
installed = libxslt-1.1.43-1-x86_64
|
||||
installed = libxss-1.2.4-2-x86_64
|
||||
installed = libxt-1.3.1-1-x86_64
|
||||
installed = libxtst-1.2.5-1-x86_64
|
||||
installed = libxv-1.0.13-1-x86_64
|
||||
installed = libxxf86vm-1.1.6-1-x86_64
|
||||
installed = libyaml-0.2.5-3-x86_64
|
||||
installed = libzip-1.11.3-1-x86_64
|
||||
installed = licenses-20240728-1-any
|
||||
installed = lighttpd-1.4.79-1-x86_64
|
||||
installed = lilv-0.24.26-1-x86_64
|
||||
installed = linux-6.14.2.arch1-1-x86_64
|
||||
installed = linux-api-headers-6.14-1-x86_64
|
||||
installed = linux-firmware-20250408.c1a774f3-1-any
|
||||
installed = linux-firmware-whence-20250408.c1a774f3-1-any
|
||||
installed = llvm-libs-19.1.7-1-x86_64
|
||||
installed = lm_sensors-1:3.6.0.r41.g31d1f125-3-x86_64
|
||||
installed = lmdb-0.9.33-1-x86_64
|
||||
installed = lua-5.4.7-1-x86_64
|
||||
installed = lv2-1.18.10-1-x86_64
|
||||
installed = lynx-2.9.2-1-x86_64
|
||||
installed = lz4-1:1.10.0-2-x86_64
|
||||
installed = lzo-2.10-5-x86_64
|
||||
installed = m4-1.4.19-3-x86_64
|
||||
installed = mailcap-2.1.54-2-any
|
||||
installed = make-4.4.1-2-x86_64
|
||||
installed = maliit-framework-2.3.0-2-x86_64
|
||||
installed = maliit-keyboard-2.3.1-4-x86_64
|
||||
installed = man-db-2.13.0-1-x86_64
|
||||
installed = mariadb-11.7.2-2-x86_64
|
||||
installed = mariadb-clients-11.7.2-2-x86_64
|
||||
installed = mariadb-libs-11.7.2-2-x86_64
|
||||
installed = md4c-0.5.2-1-x86_64
|
||||
installed = mdadm-4.4-1-x86_64
|
||||
installed = media-player-info-26-1-any
|
||||
installed = mesa-1:25.0.3-1-x86_64
|
||||
installed = milou-6.3.4-1-x86_64
|
||||
installed = mkinitcpio-39.2-3-any
|
||||
installed = mkinitcpio-busybox-1.36.1-1-x86_64
|
||||
installed = mobile-broadband-provider-info-20240407-1-any
|
||||
installed = moreutils-0.70-1-x86_64
|
||||
installed = mpdecimal-4.0.0-2-x86_64
|
||||
installed = mpfr-4.2.2-1-x86_64
|
||||
installed = mpg123-1.32.10-1-x86_64
|
||||
installed = mtdev-1.1.7-1-x86_64
|
||||
installed = nano-8.4-1-x86_64
|
||||
installed = ncurses-6.5-3-x86_64
|
||||
installed = ndctl-79-1-x86_64
|
||||
installed = nethogs-0.8.8-2-x86_64
|
||||
installed = nettle-3.10.1-1-x86_64
|
||||
installed = networkmanager-1.52.0-1-x86_64
|
||||
installed = nftables-1:1.1.1-2-x86_64
|
||||
installed = nginx-1.26.3-1-x86_64
|
||||
installed = node-gyp-11.2.0-1-any
|
||||
installed = nodejs-23.9.0-1-x86_64
|
||||
installed = nodejs-nopt-7.2.1-1-any
|
||||
installed = noto-fonts-1:2025.04.01-1-any
|
||||
installed = noto-fonts-emoji-1:2.047-1-any
|
||||
installed = npm-11.3.0-1-any
|
||||
installed = npth-1.8-1-x86_64
|
||||
installed = nspr-4.36-1-x86_64
|
||||
installed = nss-3.110-1-x86_64
|
||||
installed = numactl-2.0.19-1-x86_64
|
||||
installed = nvidia-570.133.07-5-x86_64
|
||||
installed = nvidia-settings-570.133.07-1-x86_64
|
||||
installed = nvidia-utils-570.133.07-1-x86_64
|
||||
installed = nvm-0.40.2-3-any
|
||||
installed = ocean-sound-theme-6.3.4-1-any
|
||||
installed = ocl-icd-2.3.2-2-x86_64
|
||||
installed = ollama-0.6.5-1-x86_64
|
||||
installed = ollama-cuda-0.6.5-1-x86_64
|
||||
installed = oniguruma-6.9.10-1-x86_64
|
||||
installed = open-webui-0.6.5-1-any
|
||||
installed = openal-1.24.3-1-x86_64
|
||||
installed = opencl-nvidia-570.133.07-1-x86_64
|
||||
installed = opencore-amr-0.1.6-2-x86_64
|
||||
installed = openexr-3.3.3-1-x86_64
|
||||
installed = openjpeg2-2.5.3-1-x86_64
|
||||
installed = openssh-10.0p1-3-x86_64
|
||||
installed = openssl-3.5.0-1-x86_64
|
||||
installed = opus-1.5.2-1-x86_64
|
||||
installed = orc-0.4.41-1-x86_64
|
||||
installed = osinfo-db-20250124-1-any
|
||||
installed = p11-kit-0.25.5-1-x86_64
|
||||
installed = pacman-7.0.0.r6.gc685ae6-2-x86_64
|
||||
installed = pacman-contrib-1.11.0-1-x86_64
|
||||
installed = pacman-mirrorlist-20250311-1-any
|
||||
installed = pam-1.7.0-2-x86_64
|
||||
installed = pambase-20230918-2-any
|
||||
installed = pango-1:1.56.3-1-x86_64
|
||||
installed = pangomm-2.46.4-1-x86_64
|
||||
installed = parted-3.6-2-x86_64
|
||||
installed = patch-2.7.6-10-x86_64
|
||||
installed = pciutils-3.13.0-2-x86_64
|
||||
installed = pcre-8.45-4-x86_64
|
||||
installed = pcre2-10.45-1-x86_64
|
||||
installed = pcsclite-2.3.3-1-x86_64
|
||||
installed = perl-5.40.1-2-x86_64
|
||||
installed = perl-algorithm-diff-1:1.201-6-any
|
||||
installed = perl-class-method-modifiers-2.15-4-any
|
||||
installed = perl-data-optlist-0.114-4-any
|
||||
installed = perl-devel-globaldestruction-0.14-11-any
|
||||
installed = perl-error-0.17030-1-any
|
||||
installed = perl-import-into-1.002005-11-any
|
||||
installed = perl-io-tty-1.20-2-x86_64
|
||||
installed = perl-ipc-run-20231003.0-2-any
|
||||
installed = perl-mailtools-2.22-1-any
|
||||
installed = perl-module-runtime-0.016-4-any
|
||||
installed = perl-moo-2.005005-4-any
|
||||
installed = perl-parallel-forkmanager-2.03-2-any
|
||||
installed = perl-params-util-1.102-6-x86_64
|
||||
installed = perl-regexp-common-2024080801-2-any
|
||||
installed = perl-role-tiny-2.002004-6-any
|
||||
installed = perl-sub-exporter-0.991-2-any
|
||||
installed = perl-sub-exporter-progressive-0.001013-11-any
|
||||
installed = perl-sub-install-0.929-2-any
|
||||
installed = perl-sub-quote-1:2.006008-4-any
|
||||
installed = perl-time-duration-1:1.21-2-any
|
||||
installed = perl-timedate-2.33-7-any
|
||||
installed = phodav-3.0-3-x86_64
|
||||
installed = phonon-qt6-4.12.0-4-x86_64
|
||||
installed = phonon-qt6-vlc-0.12.0-2-x86_64
|
||||
installed = php-8.4.6-1-x86_64
|
||||
installed = php-fpm-8.4.6-1-x86_64
|
||||
installed = pigz-2.8-2-x86_64
|
||||
installed = pinentry-1.3.1-5-x86_64
|
||||
installed = pipewire-1:1.4.1-1-x86_64
|
||||
installed = pipewire-alsa-1:1.4.1-1-x86_64
|
||||
installed = pipewire-audio-1:1.4.1-1-x86_64
|
||||
installed = pipewire-jack-1:1.4.1-1-x86_64
|
||||
installed = pipewire-pulse-1:1.4.1-1-x86_64
|
||||
installed = pixman-0.44.2-1-x86_64
|
||||
installed = pkgconf-2.4.3-1-x86_64
|
||||
installed = plasma-activities-6.3.4-1-x86_64
|
||||
installed = plasma-activities-stats-6.3.4-1-x86_64
|
||||
installed = plasma-desktop-6.3.4-1-x86_64
|
||||
installed = plasma-integration-6.3.4-2-x86_64
|
||||
installed = plasma-workspace-6.3.4-2-x86_64
|
||||
installed = plasma5support-6.3.4-1-x86_64
|
||||
installed = polkit-126-2-x86_64
|
||||
installed = polkit-kde-agent-6.3.4-1-x86_64
|
||||
installed = polkit-qt5-0.200.0-1-x86_64
|
||||
installed = polkit-qt6-0.200.0-1-x86_64
|
||||
installed = poppler-25.04.0-1-x86_64
|
||||
installed = poppler-qt6-25.04.0-1-x86_64
|
||||
installed = popt-1.19-2-x86_64
|
||||
installed = portaudio-1:19.7.0-3-x86_64
|
||||
installed = postgresql-17.4-1-x86_64
|
||||
installed = postgresql-libs-17.4-1-x86_64
|
||||
installed = powerdevil-6.3.4-1-x86_64
|
||||
installed = presage-0.9.1-3-x86_64
|
||||
installed = prison-6.12.0-1-x86_64
|
||||
installed = procps-ng-4.0.5-3-x86_64
|
||||
installed = protobuf-30.1-1-x86_64
|
||||
installed = psmisc-23.7-1-x86_64
|
||||
installed = pufferpanel-bin-2.7.1-1-x86_64
|
||||
installed = pufferpanel-bin-debug-2.7.1-1-x86_64
|
||||
installed = pv-1.9.31-1-x86_64
|
||||
installed = python-3.13.2-1-x86_64
|
||||
installed = python-acme-4.0.0-1-any
|
||||
installed = python-autocommand-2.2.2-7-any
|
||||
installed = python-cairo-1.27.0-2-x86_64
|
||||
installed = python-cffi-1.17.1-2-x86_64
|
||||
installed = python-charset-normalizer-3.4.1-1-any
|
||||
installed = python-configargparse-1.5.5-3-any
|
||||
installed = python-configobj-5.0.9-5-any
|
||||
installed = python-cryptography-44.0.2-1-x86_64
|
||||
installed = python-distro-1.9.0-3-any
|
||||
installed = python-gobject-3.52.3-3-x86_64
|
||||
installed = python-idna-3.10-2-any
|
||||
installed = python-jaraco.collections-5.1.0-1-any
|
||||
installed = python-jaraco.context-6.0.1-1-any
|
||||
installed = python-jaraco.functools-4.1.0-1-any
|
||||
installed = python-jaraco.text-4.0.0-2-any
|
||||
installed = python-josepy-2.0.0-1-any
|
||||
installed = python-more-itertools-10.6.0-1-any
|
||||
installed = python-packaging-24.2-3-any
|
||||
installed = python-parsedatetime-2.6-10-any
|
||||
installed = python-platformdirs-4.3.6-2-any
|
||||
installed = python-pycparser-2.22-3-any
|
||||
installed = python-pyopenssl-25.0.0-1-any
|
||||
installed = python-pyrfc3339-1.1-14-any
|
||||
installed = python-pytz-2025.1-1-any
|
||||
installed = python-requests-2.32.3-4-any
|
||||
installed = python-setuptools-1:75.8.0-1-any
|
||||
installed = python-urllib3-2.3.0-1-any
|
||||
installed = python-wheel-0.45.1-1-any
|
||||
installed = python312-3.12.10-1-x86_64
|
||||
installed = python312-debug-3.12.10-1-x86_64
|
||||
installed = qca-qt5-2.3.10-1-x86_64
|
||||
installed = qca-qt6-2.3.10-1-x86_64
|
||||
installed = qcoro-0.12.0-1-x86_64
|
||||
installed = qemu-base-9.2.3-1-x86_64
|
||||
installed = qemu-common-9.2.3-1-x86_64
|
||||
installed = qemu-img-9.2.3-1-x86_64
|
||||
installed = qemu-system-x86-9.2.3-1-x86_64
|
||||
installed = qemu-system-x86-firmware-9.2.3-1-x86_64
|
||||
installed = qqc2-breeze-style-6.3.4-1-x86_64
|
||||
installed = qqc2-desktop-style-6.12.0-1-x86_64
|
||||
installed = qrencode-4.1.1-3-x86_64
|
||||
installed = qt5-base-5.15.16+kde+r131-1-x86_64
|
||||
installed = qt5-declarative-5.15.16+kde+r22-3-x86_64
|
||||
installed = qt5-feedback-0.0.0.20150918-5-x86_64
|
||||
installed = qt5-graphicaleffects-5.15.16-3-x86_64
|
||||
installed = qt5-multimedia-5.15.16+kde+r2-3-x86_64
|
||||
installed = qt5-quickcontrols2-5.15.16+kde+r5-3-x86_64
|
||||
installed = qt5-speech-5.15.16+kde+r1-3-x86_64
|
||||
installed = qt5-svg-5.15.16+kde+r5-3-x86_64
|
||||
installed = qt5-translations-5.15.16-3-any
|
||||
installed = qt5-wayland-5.15.16+kde+r60-1-x86_64
|
||||
installed = qt5-x11extras-5.15.16-3-x86_64
|
||||
installed = qt6-5compat-6.9.0-1-x86_64
|
||||
installed = qt6-base-6.9.0-1-x86_64
|
||||
installed = qt6-declarative-6.9.0-2-x86_64
|
||||
installed = qt6-imageformats-6.9.0-1-x86_64
|
||||
installed = qt6-multimedia-6.9.0-1-x86_64
|
||||
installed = qt6-multimedia-ffmpeg-6.9.0-1-x86_64
|
||||
installed = qt6-positioning-6.9.0-1-x86_64
|
||||
installed = qt6-sensors-6.9.0-1-x86_64
|
||||
installed = qt6-shadertools-6.9.0-1-x86_64
|
||||
installed = qt6-speech-6.9.0-1-x86_64
|
||||
installed = qt6-svg-6.9.0-1-x86_64
|
||||
installed = qt6-tools-6.9.0-1-x86_64
|
||||
installed = qt6-translations-6.9.0-1-any
|
||||
installed = qt6-virtualkeyboard-6.9.0-1-x86_64
|
||||
installed = qt6-wayland-6.9.0-1-x86_64
|
||||
installed = qt6-websockets-6.9.0-1-x86_64
|
||||
installed = qtkeychain-qt6-0.15.0-1-x86_64
|
||||
installed = rav1e-0.7.1-1-x86_64
|
||||
installed = readline-8.2.013-1-x86_64
|
||||
installed = redis-7.2.5-1-x86_64
|
||||
installed = rhash-1.4.4-1-x86_64
|
||||
installed = ripgrep-14.1.1-1-x86_64
|
||||
installed = ripgrep-all-0.10.6-3-x86_64
|
||||
installed = rsync-3.4.1-2-x86_64
|
||||
installed = rtkit-0.13-3-x86_64
|
||||
installed = rubberband-4.0.0-1-x86_64
|
||||
installed = runc-1.2.6-1-x86_64
|
||||
installed = samba-2:4.22.0-1-x86_64
|
||||
installed = sbc-2.0-2-x86_64
|
||||
installed = sddm-0.21.0-6-x86_64
|
||||
installed = sddm-kcm-6.3.4-1-x86_64
|
||||
installed = sdl2-compat-2.32.54-1-x86_64
|
||||
installed = sdl3-3.2.10-1-x86_64
|
||||
installed = seabios-1.16.3-1-any
|
||||
installed = sed-4.9-3-x86_64
|
||||
installed = semver-7.7.1-1-any
|
||||
installed = serd-0.32.4-1-x86_64
|
||||
installed = shaderc-2025.1-3-x86_64
|
||||
installed = shadow-4.17.4-1-x86_64
|
||||
installed = shared-mime-info-2.4-1-x86_64
|
||||
installed = simdjson-1:3.12.3-1-x86_64
|
||||
installed = slang-2.3.3-3-x86_64
|
||||
installed = smbclient-2:4.22.0-1-x86_64
|
||||
installed = snappy-1.2.2-1-x86_64
|
||||
installed = socat-1.8.0.3-1-x86_64
|
||||
installed = solid-6.12.0-1-x86_64
|
||||
installed = sonnet-6.12.0-1-x86_64
|
||||
installed = sord-0.16.18-1-x86_64
|
||||
installed = sound-theme-freedesktop-0.8-6-any
|
||||
installed = source-highlight-3.1.9-14-x86_64
|
||||
installed = speex-1.2.1-2-x86_64
|
||||
installed = speexdsp-1.2.1-2-x86_64
|
||||
installed = spice-gtk-0.42-4-x86_64
|
||||
installed = spice-protocol-0.14.4-2-any
|
||||
installed = spirv-tools-1:1.4.309.0-1-x86_64
|
||||
installed = sqlite-3.49.1-1-x86_64
|
||||
installed = sratom-0.6.18-1-x86_64
|
||||
installed = srt-1.5.4-1-x86_64
|
||||
installed = starship-1.22.1-1-x86_64
|
||||
installed = sudo-1.9.16.p2-2-x86_64
|
||||
installed = svt-av1-3.0.2-1-x86_64
|
||||
installed = syndication-6.12.0-1-x86_64
|
||||
installed = syntax-highlighting-6.12.0-1-x86_64
|
||||
installed = systemd-257.5-1-x86_64
|
||||
installed = systemd-libs-257.5-1-x86_64
|
||||
installed = systemd-sysvcompat-257.5-1-x86_64
|
||||
installed = systemsettings-6.3.4-1-x86_64
|
||||
installed = taglib-2.0.2-1-x86_64
|
||||
installed = talloc-2.4.3-1-x86_64
|
||||
installed = tar-1.35-2-x86_64
|
||||
installed = tcl-8.6.16-1-x86_64
|
||||
installed = tdb-1.4.13-1-x86_64
|
||||
installed = teamspeak3-server-3.13.7-2-x86_64
|
||||
installed = tevent-1:0.16.2-1-x86_64
|
||||
installed = texinfo-7.2-1-x86_64
|
||||
installed = tinysparql-3.9.1-1-x86_64
|
||||
installed = tk-8.6.16-1-x86_64
|
||||
installed = tmux-3.5_a-1-x86_64
|
||||
installed = tmux-plugin-manager-3.1.0-1-any
|
||||
installed = tpm2-tss-4.1.3-1-x86_64
|
||||
installed = tree-2.2.1-1-x86_64
|
||||
installed = tslib-1.23-1-x86_64
|
||||
installed = ttf-0xproto-nerd-3.3.0-1-any
|
||||
installed = ttf-hack-3.003-7-any
|
||||
installed = twolame-0.4.0-4-x86_64
|
||||
installed = tzdata-2025b-1-x86_64
|
||||
installed = udisks2-2.10.1-5-x86_64
|
||||
installed = unzip-6.0-22-x86_64
|
||||
installed = upower-1.90.9-1-x86_64
|
||||
installed = usbredir-0.15.0-1-x86_64
|
||||
installed = util-linux-2.41-4-x86_64
|
||||
installed = util-linux-libs-2.41-4-x86_64
|
||||
installed = v4l-utils-1.28.1-2-x86_64
|
||||
installed = vapoursynth-R70-2-x86_64
|
||||
installed = vde2-2.3.3-6-x86_64
|
||||
installed = vid.stab-1.1.1-2-x86_64
|
||||
installed = vim-9.1.1236-1-x86_64
|
||||
installed = vim-runtime-9.1.1236-1-x86_64
|
||||
installed = virt-install-5.0.0-1-any
|
||||
installed = virt-manager-5.0.0-1-any
|
||||
installed = virt-viewer-11.0-3-x86_64
|
||||
installed = virtiofsd-1.13.1-1-x86_64
|
||||
installed = vlc-3.0.21-16-x86_64
|
||||
installed = vmaf-3.0.0-1-x86_64
|
||||
installed = volume_key-0.3.12-10-x86_64
|
||||
installed = vscodium-bin-1.99.32562-1-x86_64
|
||||
installed = vscodium-bin-debug-1.99.32562-1-x86_64
|
||||
installed = vte-common-0.80.1-1-x86_64
|
||||
installed = vte3-0.80.1-1-x86_64
|
||||
installed = vulkan-headers-1:1.4.309.0-1-any
|
||||
installed = vulkan-icd-loader-1.4.309.0-1-x86_64
|
||||
installed = w3m-0.5.3.git20230713_1-1-x86_64
|
||||
installed = wavpack-5.8.1-1-x86_64
|
||||
installed = wayland-1.23.1-1-x86_64
|
||||
installed = webrtc-audio-processing-1-1.3-4-x86_64
|
||||
installed = wget-1.25.0-2-x86_64
|
||||
installed = which-2.23-1-x86_64
|
||||
installed = wireplumber-0.5.8-1-x86_64
|
||||
installed = wol-0.7.1-10-x86_64
|
||||
installed = wolfssl-5.7.6-1-x86_64
|
||||
installed = wpa_supplicant-2:2.11-3-x86_64
|
||||
installed = x264-3:0.164.r3108.31e19f9-2-x86_64
|
||||
installed = x265-4.0-1-x86_64
|
||||
installed = xcb-proto-1.17.0-3-any
|
||||
installed = xcb-util-0.4.1-2-x86_64
|
||||
installed = xcb-util-cursor-0.1.5-1-x86_64
|
||||
installed = xcb-util-image-0.4.1-3-x86_64
|
||||
installed = xcb-util-keysyms-0.4.1-5-x86_64
|
||||
installed = xcb-util-renderutil-0.3.10-2-x86_64
|
||||
installed = xcb-util-wm-0.4.2-2-x86_64
|
||||
installed = xdg-desktop-portal-1.20.0-2-x86_64
|
||||
installed = xdg-desktop-portal-kde-6.3.4-1-x86_64
|
||||
installed = xdg-user-dirs-0.18-2-x86_64
|
||||
installed = xdg-utils-1.2.1-1-any
|
||||
installed = xf86-input-libinput-1.5.0-1-x86_64
|
||||
installed = xkeyboard-config-2.44-1-any
|
||||
installed = xorg-fonts-encodings-1.1.0-1-any
|
||||
installed = xorg-server-21.1.16-1-x86_64
|
||||
installed = xorg-server-common-21.1.16-1-x86_64
|
||||
installed = xorg-setxkbmap-1.3.4-2-x86_64
|
||||
installed = xorg-xauth-1.1.4-1-x86_64
|
||||
installed = xorg-xkbcomp-1.4.7-1-x86_64
|
||||
installed = xorg-xmessage-1.0.7-1-x86_64
|
||||
installed = xorg-xprop-1.2.8-1-x86_64
|
||||
installed = xorg-xrdb-1.2.2-2-x86_64
|
||||
installed = xorg-xset-1.2.5-2-x86_64
|
||||
installed = xorg-xwayland-24.1.6-1-x86_64
|
||||
installed = xorgproto-2024.1-2-any
|
||||
installed = xvidcore-1.3.7-3-x86_64
|
||||
installed = xxhash-0.8.3-1-x86_64
|
||||
installed = xz-5.8.1-1-x86_64
|
||||
installed = yay-12.4.2-1-x86_64
|
||||
installed = yyjson-0.10.0-1-x86_64
|
||||
installed = zeromq-4.3.5-2-x86_64
|
||||
installed = zimg-3.0.5-1-x86_64
|
||||
installed = zip-3.0-11-x86_64
|
||||
installed = zix-0.6.2-1-x86_64
|
||||
installed = zlib-1:1.3.1-2-x86_64
|
||||
installed = zram-generator-1.2.1-1-x86_64
|
||||
installed = zsh-5.9-5-x86_64
|
||||
installed = zstd-1.5.7-2-x86_64
|
||||
installed = zxing-cpp-2.3.0-4-x86_64
|
||||
BIN
pkg/comp/.MTREE
Normal file
BIN
pkg/comp/.MTREE
Normal file
Binary file not shown.
13
pkg/comp/.PKGINFO
Normal file
13
pkg/comp/.PKGINFO
Normal file
@@ -0,0 +1,13 @@
|
||||
# Generated by makepkg 7.0.0
|
||||
# using fakeroot version 1.37.1.1
|
||||
pkgname = comp
|
||||
pkgbase = comp
|
||||
xdata = pkgtype=pkg
|
||||
pkgver = 1.2-4
|
||||
pkgdesc = Simple folder compression with pv and pigz
|
||||
url =
|
||||
builddate = 1745168762
|
||||
packager = Unknown Packager
|
||||
size = 2366
|
||||
arch = any
|
||||
license = MIT
|
||||
59
pkg/comp/usr/bin/comp
Executable file
59
pkg/comp/usr/bin/comp
Executable file
@@ -0,0 +1,59 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Usage: comp <folder_to_compress> [output_fildename]
|
||||
|
||||
# Check if input folder is provided
|
||||
|
||||
VERSION="1.2"
|
||||
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "Usage: comp <folder_or_file_to_compress> [output_file]"
|
||||
echo "comp <options>"
|
||||
exit 1
|
||||
elif [[ "$1" == "-h" || "$1" == "--help" ]]; then
|
||||
echo "Usage:"
|
||||
echo " comp <folder_or_file_to_compress> [output_file]"
|
||||
echo " comp <option>"
|
||||
echo ""
|
||||
echo "Options:"
|
||||
echo " -h --help: Print's this message"
|
||||
echo " -v --version: Ptints the current version"
|
||||
exit 0
|
||||
elif [[ "$1" == "-v" || "$1" == "--version" ]]; then
|
||||
echo "comp version: $VERSION"
|
||||
exit 0
|
||||
elif [[ ! -d "$1" || ! -f "$1" ]]; then
|
||||
echo "Invalid argument '$1'"
|
||||
echo "Usage:"
|
||||
echo " comp <folder_to_compress> [output_file]"
|
||||
echo " comp <option>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
INPUT_FOLDER="$1"
|
||||
|
||||
|
||||
# Remove trailing slash from folder name if present
|
||||
INPUT_FOLDER="${INPUT_FOLDER%/}"
|
||||
|
||||
# Determine output filename
|
||||
if [[ -n "$2" ]]; then
|
||||
OUTPUT_FILE="$2"
|
||||
else
|
||||
OUTPUT_FILE="${INPUT_FOLDER}.tgz"
|
||||
fi
|
||||
|
||||
# Check if input is a valid directory
|
||||
if [[ ! -d "${INPUT_FOLDER}" ]]; then
|
||||
echo "Error: '${INPUT_FOLDER}' is not a valid directory"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Get total zie in bytes for progress bar
|
||||
TOTAL_SIZE=$(du -sb "${INPUT_FOLDER}" | awk '{print $1}')
|
||||
|
||||
# Run compression with progress bar
|
||||
echo "Compressing '${INPUT_FOLDER}' to ' ${OUTPUT_FILE}'..."
|
||||
tar -cf - "${INPUT_FOLDER}" | pv -s "${TOTAL_SIZE}" | pigz > "${OUTPUT_FILE}"
|
||||
|
||||
echo "Done!"
|
||||
23
pkg/comp/usr/share/bash-completion/completions/comp
Normal file
23
pkg/comp/usr/share/bash-completion/completions/comp
Normal file
@@ -0,0 +1,23 @@
|
||||
# completions/comp.bash
|
||||
_comp_completions()
|
||||
{
|
||||
local cur prev opts
|
||||
COMPREPLY=()
|
||||
cur = "${COMP_WORDS[COMP_CWORD]}"
|
||||
prev = "${COMP_WORDS[COMP_CWORD-1]}"
|
||||
opts = "-h --help -v --version"
|
||||
|
||||
if [[ "$cur" == -* ]]; then
|
||||
COMPREPLY = ( $(compgen -W "${opts}" -- "$cur"))
|
||||
return 0
|
||||
fi
|
||||
|
||||
if [[ $COMP_CWORD -eq 1 ]]; then
|
||||
COMPREPLY=( $(compgen -d -- "$cur") $(compgen -f -- "$cur"))
|
||||
return 0
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
complete -F _comp_completions comp
|
||||
19
pkg/comp/usr/share/zsh/site-functions/_comp
Normal file
19
pkg/comp/usr/share/zsh/site-functions/_comp
Normal file
@@ -0,0 +1,19 @@
|
||||
#compdef comp
|
||||
|
||||
_comp() {
|
||||
_arguments \
|
||||
'-h[Prints help message]' \
|
||||
'--help[Prints help message]' \
|
||||
'-v[Print version]' \
|
||||
'--version[Print version]' \
|
||||
'1:file or folder to compress:_files_or_dirs' \
|
||||
'2:output file:_files'
|
||||
|
||||
# Custom function to complete both files and directories
|
||||
_files_or_dirs() {
|
||||
_alternative \
|
||||
'directories:: _directories' \
|
||||
'files:: _files'
|
||||
}
|
||||
|
||||
}
|
||||
1
src/comp.bash
Symbolic link
1
src/comp.bash
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/server/comp-script/comp.bash
|
||||
59
src/comp.sh
Executable file
59
src/comp.sh
Executable file
@@ -0,0 +1,59 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Usage: comp <folder_to_compress> [output_fildename]
|
||||
|
||||
# Check if input folder is provided
|
||||
|
||||
VERSION="1.2"
|
||||
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "Usage: comp <folder_or_file_to_compress> [output_file]"
|
||||
echo "comp <options>"
|
||||
exit 1
|
||||
elif [[ "$1" == "-h" || "$1" == "--help" ]]; then
|
||||
echo "Usage:"
|
||||
echo " comp <folder_or_file_to_compress> [output_file]"
|
||||
echo " comp <option>"
|
||||
echo ""
|
||||
echo "Options:"
|
||||
echo " -h --help: Print's this message"
|
||||
echo " -v --version: Ptints the current version"
|
||||
exit 0
|
||||
elif [[ "$1" == "-v" || "$1" == "--version" ]]; then
|
||||
echo "comp version: $VERSION"
|
||||
exit 0
|
||||
elif [[ ! -d "$1" || ! -f "$1" ]]; then
|
||||
echo "Invalid argument '$1'"
|
||||
echo "Usage:"
|
||||
echo " comp <folder_to_compress> [output_file]"
|
||||
echo " comp <option>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
INPUT_FOLDER="$1"
|
||||
|
||||
|
||||
# Remove trailing slash from folder name if present
|
||||
INPUT_FOLDER="${INPUT_FOLDER%/}"
|
||||
|
||||
# Determine output filename
|
||||
if [[ -n "$2" ]]; then
|
||||
OUTPUT_FILE="$2"
|
||||
else
|
||||
OUTPUT_FILE="${INPUT_FOLDER}.tgz"
|
||||
fi
|
||||
|
||||
# Check if input is a valid directory
|
||||
if [[ ! -d "${INPUT_FOLDER}" ]]; then
|
||||
echo "Error: '${INPUT_FOLDER}' is not a valid directory"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Get total zie in bytes for progress bar
|
||||
TOTAL_SIZE=$(du -sb "${INPUT_FOLDER}" | awk '{print $1}')
|
||||
|
||||
# Run compression with progress bar
|
||||
echo "Compressing '${INPUT_FOLDER}' to ' ${OUTPUT_FILE}'..."
|
||||
tar -cf - "${INPUT_FOLDER}" | pv -s "${TOTAL_SIZE}" | pigz > "${OUTPUT_FILE}"
|
||||
|
||||
echo "Done!"
|
||||
Reference in New Issue
Block a user