diff options
| author | Tafil Avdyli <tafil@tafhub.de> | 2026-06-03 15:25:23 +0200 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-06-07 18:21:47 -0700 |
| commit | 0cbf09fcc7aacd3123fbcb64cd9811af2eb78a11 (patch) | |
| tree | 4c1ff31b87ce659446927c5326f3d03a73d50e81 /meta-oe/recipes-support/fastfetch/fastfetch_2.64.0.bb | |
| parent | 8a62579490bbea4e36c749ac982eb72af5cbaaca (diff) | |
| download | meta-openembedded-0cbf09fcc7aacd3123fbcb64cd9811af2eb78a11.tar.gz | |
fastfetch: upgrade 2.63.1 -> 2.64.0
Add PACKAGECONFIG entries for new optional build dependencies:
- libva for new Codec module
- libvdpau for new Codec module
- lua for Lua scripting support
Disable following CMake options explicitly:
- ENABLE_QUICKJS: no recipe exists for this yet
- ENABLE_EET: no recipe exists for this yet (introduced previously in 2.63.0)
Changelog: https://github.com/fastfetch-cli/fastfetch/releases/tag/2.64.0
Signed-off-by: Tafil Avdyli <tafil@tafhub.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-oe/recipes-support/fastfetch/fastfetch_2.64.0.bb')
| -rw-r--r-- | meta-oe/recipes-support/fastfetch/fastfetch_2.64.0.bb | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/fastfetch/fastfetch_2.64.0.bb b/meta-oe/recipes-support/fastfetch/fastfetch_2.64.0.bb new file mode 100644 index 0000000000..951aa50ce4 --- /dev/null +++ b/meta-oe/recipes-support/fastfetch/fastfetch_2.64.0.bb | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | SUMMARY = "A maintained, feature-rich and performance oriented, neofetch like system information tool." | ||
| 2 | DESCRIPTION = "Fastfetch is a neofetch-like tool for fetching system \ | ||
| 3 | information and displaying it in a visually appealing way. It is written \ | ||
| 4 | mainly in C, with a focus on performance and customizability." | ||
| 5 | HOMEPAGE = "https://github.com/fastfetch-cli/fastfetch" | ||
| 6 | BUGTRACKER = "https://github.com/fastfetch-cli/fastfetch/issues" | ||
| 7 | |||
| 8 | LICENSE = "MIT" | ||
| 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2090e7d93df7ad5a3d41f6fb4226ac76" | ||
| 10 | |||
| 11 | DEPENDS = "yyjson" | ||
| 12 | |||
| 13 | SRC_URI = "git://github.com/fastfetch-cli/fastfetch.git;protocol=https;branch=master;tag=${PV}" | ||
| 14 | SRCREV = "d48bd733f062f374c382d67b59023c08925b0f40" | ||
| 15 | |||
| 16 | inherit cmake pkgconfig | ||
| 17 | |||
| 18 | EXTRA_OECMAKE += "\ | ||
| 19 | -DENABLE_SYSTEM_YYJSON=ON \ | ||
| 20 | -DENABLE_EET=OFF \ | ||
| 21 | -DENABLE_QUICKJS=OFF \ | ||
| 22 | " | ||
| 23 | |||
| 24 | PACKAGECONFIG ??= "\ | ||
| 25 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'egl', '', d)} \ | ||
| 26 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl x11', 'glx', '', d)} \ | ||
| 27 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xcb xrandr', '', d)} \ | ||
| 28 | ${@bb.utils.filter('DISTRO_FEATURES', 'opencl pulseaudio vulkan wayland', d)} \ | ||
| 29 | dbus \ | ||
| 30 | drm \ | ||
| 31 | sqlite3 \ | ||
| 32 | " | ||
| 33 | |||
| 34 | PACKAGECONFIG[chafa] = "-DENABLE_CHAFA=ON,-DENABLE_CHAFA=OFF,chafa" | ||
| 35 | PACKAGECONFIG[dbus] = "-DENABLE_DBUS=ON,-DENABLE_DBUS=OFF,dbus" | ||
| 36 | PACKAGECONFIG[dconf] = "-DENABLE_DCONF=ON,-DENABLE_DCONF=OFF,dconf" | ||
| 37 | PACKAGECONFIG[ddcutil] = "-DENABLE_DDCUTIL=ON,-DENABLE_DDCUTIL=OFF,ddcutil" | ||
| 38 | PACKAGECONFIG[drm-amdgpu] = "-DENABLE_DRM_AMDGPU=ON,-DENABLE_DRM_AMDGPU=OFF," | ||
| 39 | PACKAGECONFIG[drm] = "-DENABLE_DRM=ON,-DENABLE_DRM=OFF,libdrm" | ||
| 40 | PACKAGECONFIG[egl] = "-DENABLE_EGL=ON,-DENABLE_EGL=OFF,virtual/egl" | ||
| 41 | PACKAGECONFIG[elf] = "-DENABLE_ELF=ON,-DENABLE_ELF=OFF,elfutils" | ||
| 42 | PACKAGECONFIG[flashfetch] = "-DBUILD_FLASHFETCH=ON,-DBUILD_FLASHFETCH=OFF," | ||
| 43 | PACKAGECONFIG[freetype] = "-DENABLE_FREETYPE=ON,-DENABLE_FREETYPE=OFF,freetype" | ||
| 44 | PACKAGECONFIG[gio] = "-DENABLE_GIO=ON,-DENABLE_GIO=OFF,glib-2.0" | ||
| 45 | PACKAGECONFIG[glx] = "-DENABLE_GLX=ON,-DENABLE_GLX=OFF,virtual/libgles2" | ||
| 46 | PACKAGECONFIG[imagemagick] = "-DENABLE_IMAGEMAGICK7=ON -DENABLE_IMAGEMAGICK6=OFF,-DENABLE_IMAGEMAGICK7=OFF -DENABLE_IMAGEMAGICK6=OFF,imagemagick" | ||
| 47 | PACKAGECONFIG[lua] = "-DENABLE_LUA=ON,-DENABLE_LUA=OFF,lua" | ||
| 48 | PACKAGECONFIG[opencl] = "-DENABLE_OPENCL=ON,-DENABLE_OPENCL=OFF,opencl-headers virtual/libopencl1" | ||
| 49 | PACKAGECONFIG[pulseaudio] = "-DENABLE_PULSE=ON,-DENABLE_PULSE=OFF,pulseaudio" | ||
| 50 | PACKAGECONFIG[rpm] = "-DENABLE_RPM=ON,-DENABLE_RPM=OFF,rpm" | ||
| 51 | PACKAGECONFIG[sqlite3] = "-DENABLE_SQLITE3=ON,-DENABLE_SQLITE3=OFF,sqlite3" | ||
| 52 | PACKAGECONFIG[vaapi] = "-DENABLE_VA=ON,-DENABLE_VA=OFF,libva" | ||
| 53 | PACKAGECONFIG[vdpau] = "-DENABLE_VDPAU=ON,-DENABLE_VDPAU=OFF,libvdpau" | ||
| 54 | PACKAGECONFIG[vulkan] = "-DENABLE_VULKAN=ON,-DENABLE_VULKAN=OFF,vulkan-loader" | ||
| 55 | PACKAGECONFIG[wayland] = "-DENABLE_WAYLAND=ON,-DENABLE_WAYLAND=OFF,wayland" | ||
| 56 | PACKAGECONFIG[xcb] = "-DENABLE_XCB_RANDR=ON,-DENABLE_XCB_RANDR=OFF,libxcb" | ||
| 57 | PACKAGECONFIG[xrandr] = "-DENABLE_XRANDR=ON,-DENABLE_XRANDR=OFF,libxrandr" | ||
| 58 | PACKAGECONFIG[zfs] = "-DENABLE_LIBZFS=ON,-DENABLE_LIBZFS=OFF,zfs" | ||
| 59 | PACKAGECONFIG[zlib] = "-DENABLE_ZLIB=ON,-DENABLE_ZLIB=OFF,zlib" | ||
| 60 | |||
| 61 | PACKAGES =+ "${PN}-completions" | ||
| 62 | |||
| 63 | FILES:${PN} += "${datadir}/licenses" | ||
| 64 | |||
| 65 | FILES:${PN}-completions = "\ | ||
| 66 | ${datadir}/bash-completion \ | ||
| 67 | ${datadir}/fish \ | ||
| 68 | ${datadir}/zsh \ | ||
| 69 | " | ||
| 70 | RDEPENDS:${PN}-completions += "python3-json" | ||
