From c3baf7fbb6c8360826cf53859a974a5f5b354196 Mon Sep 17 00:00:00 2001 From: Bahar KURT Date: Sun, 31 Aug 2025 21:34:02 +0300 Subject: [PATCH 1/2] Initial build of chafa --- util/misc/chafa/actions.py | 18 ++++++++++++++ util/misc/chafa/pspec.xml | 50 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 util/misc/chafa/actions.py create mode 100644 util/misc/chafa/pspec.xml diff --git a/util/misc/chafa/actions.py b/util/misc/chafa/actions.py new file mode 100644 index 0000000000..3a761e932e --- /dev/null +++ b/util/misc/chafa/actions.py @@ -0,0 +1,18 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +def build(): + shelltools.system("./autogen.sh --prefix=/usr --enable-man --enable-gtk-doc") + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + autotools.make("-C tools/completions PREFIX=%s/usr/share install-zsh-completion" % get.installDIR()) + + diff --git a/util/misc/chafa/pspec.xml b/util/misc/chafa/pspec.xml new file mode 100644 index 0000000000..6bc9275af1 --- /dev/null +++ b/util/misc/chafa/pspec.xml @@ -0,0 +1,50 @@ + + + chafa + https://hpjansson.org/chafa/ + + Bedirhan Kurt + bedirhan.kurt@outlook.com + + LGPLv3 + util.misc + Image-to-text converter supporting a wide range of symbols and palettes, transparency, animations, etc. + Image-to-text converter supporting a wide range of symbols and palettes, transparency, animations, etc. + Semboller ve paletler, saydamlık, animasyonlar, vb. geniş bir yelpazeyi destekleyen resimden metin çevirmeni + Semboller ve paletler, saydamlık, animasyonlar, vb. geniş bir yelpazeyi destekleyen resimden metin çevirmeni + + git + gtk-doc + glib2-devel + freetype-devel + + https://github.com/hpjansson/chafa/archive/1.16.2.tar.gz + + + chafa + Image-to-text converter supporting a wide range of symbols and palettes, transparency, animations, etc. + + libavif + libjxl + librsvg + webp + + + /usr/bin + /usr/include + /usr/lib + /usr/share/gtk-doc + /usr/share/man + /usr/share/zsh + + + + + 2025-08-31 + 1.16.2 + Initial release. + Bedirhan Kurt + bedirhan.kurt@outlook.com + + + From ad7ed06e358e5d568bf4c0bf88dd597037bd17de Mon Sep 17 00:00:00 2001 From: Bahar KURT Date: Sun, 31 Aug 2025 22:16:23 +0300 Subject: [PATCH 2/2] Initial build of fastfetch --- util/misc/fastfetch/actions.py | 40 ++++++++++++++++++ util/misc/fastfetch/pspec.xml | 75 ++++++++++++++++++++++++++++++++++ 2 files changed, 115 insertions(+) create mode 100644 util/misc/fastfetch/actions.py create mode 100644 util/misc/fastfetch/pspec.xml diff --git a/util/misc/fastfetch/actions.py b/util/misc/fastfetch/actions.py new file mode 100644 index 0000000000..610ab22056 --- /dev/null +++ b/util/misc/fastfetch/actions.py @@ -0,0 +1,40 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +def build(): + shelltools.system("cmake -B build -S . \ + -DCMAKE_BUILD_TYPE='RelWithDebInfo' \ + -DCMAKE_INSTALL_PREFIX='/usr' \ + -DBUILD_FLASHFETCH='OFF' \ + -DBUILD_TESTS='ON' \ + -DENABLE_SQLITE3='ON' \ + -DENABLE_RPM='OFF' \ + -DENABLE_IMAGEMAGICK6='OFF' \ + -DENABLE_SYSTEM_YYJSON='OFF' \ + -DPACKAGES_DISABLE_APK='ON' \ + -DPACKAGES_DISABLE_DPKG='ON' \ + -DPACKAGES_DISABLE_EMERGE='ON' \ + -DPACKAGES_DISABLE_EOPKG='ON' \ + -DPACKAGES_DISABLE_GUIX='ON' \ + -DPACKAGES_DISABLE_LINGLONG='ON' \ + -DPACKAGES_DISABLE_LPKG='ON' \ + -DPACKAGES_DISABLE_LPKGBUILD='ON' \ + -DPACKAGES_DISABLE_OPKG='ON' \ + -DPACKAGES_DISABLE_PACSTALL='ON' \ + -DPACKAGES_DISABLE_PALUDIS='ON' \ + -DPACKAGES_DISABLE_PKG='ON' \ + -DPACKAGES_DISABLE_PKGTOOL='ON' \ + -DPACKAGES_DISABLE_RPM='ON' \ + -DPACKAGES_DISABLE_SORCERY='ON' \ + -DPACKAGES_DISABLE_XBPS='ON' \ + -Wno-dev") + shelltools.system("cmake --build build") + +def install(): + shelltools.system("DESTDIR=%s cmake --install build" % get.installDIR()) + diff --git a/util/misc/fastfetch/pspec.xml b/util/misc/fastfetch/pspec.xml new file mode 100644 index 0000000000..882a10b78e --- /dev/null +++ b/util/misc/fastfetch/pspec.xml @@ -0,0 +1,75 @@ + + + fastfetch + https://github.com/fastfetch-cli/fastfetch + + Bedirhan Kurt + bedirhan.kurt@outlook.com + + MIT + util.misc + A feature-rich and performance oriented neofetch like system information tool + Fastfetch is a neofetch-like tool for fetching system information and displaying it in a visually appealing way + Özelliklerle dolu ve performans odaklı neofetch tarzı sistem bilgi aracı + Fastfetch sistem bilgisini çekerek görsel olarak çekici bir şekilde göstermeyi amaçlayan bir neofetch tarzı araçtır + + chafa + cmake + dbus-devel + dconf-devel + + imagemagick-devel + libxcb-devel + libXrandr-devel + opencl-icd-devel + sqlite-devel + vulkan-headers + wayland-devel + xfconf-devel + zlib-devel + + https://github.com/fastfetch-cli/fastfetch/archive/2.51.1.tar.gz + + + fastfetch + A feature-rich and performance oriented neofetch like system information tool + Fastfetch is a neofetch-like tool for fetching system information and displaying it in a visually appealing way + Özelliklerle dolu ve performans odaklı neofetch tarzı sistem bilgi aracı + Fastfetch sistem bilgisini çekerek görsel olarak çekici bir şekilde göstermeyi amaçlayan bir neofetch tarzı araçtır + + chafa + dbus + dconf + + glib2 + hwdata + imagemagick + libdrm + elfutils + libXrandr + opencl-icd + python3 + sqlite + xfconf + zlib + + + /usr/bin + /usr/share/bash-completion + /usr/share/fastfetch/presets + /usr/share/fish/vendor_completions.d + /usr/share/licenses/fastfetch + /usr/share/man/man1 + /usr/share/zsh/site-functions + + + + + 2025-08-31 + 2.51.1 + Initial release. + Bedirhan Kurt + bedirhan.kurt@outlook.com + + +