From 771aaab9a0d9870685e63301d29875f90a5ced0a Mon Sep 17 00:00:00 2001 From: Mike Pento Date: Sun, 15 Feb 2026 14:25:01 -0500 Subject: [PATCH] Update 20260215-1: fix for forecasts module. --- .SRCINFO | 6 ++++-- PKGBUILD | 14 +++++++++++--- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index bae463178a063..e9f66a0c16415 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = e-modules-extra-git pkgdesc = Enlightenment modules: Extra unsupported modules in Git not already packaged elsewhere - pkgver = 20260208 - pkgrel = 3 + pkgver = 20260215 + pkgrel = 1 url = https://git.enlightenment.org/ arch = i686 arch = x86_64 @@ -18,6 +18,7 @@ pkgbase = e-modules-extra-git source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-cpu.git source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-desksanity.git source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-eenvader.fractal.git + source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-forecasts.git source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-mem.git source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-net.git source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-penguins.git @@ -29,5 +30,6 @@ pkgbase = e-modules-extra-git sha256sums = SKIP sha256sums = SKIP sha256sums = SKIP + sha256sums = SKIP pkgname = e-modules-extra-git diff --git a/PKGBUILD b/PKGBUILD index 1b4d1efc8d5fe..8a008eb1f2da3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -13,7 +13,7 @@ _module_list=( # 'everything-places' # fails to compile # 'everything-websearch' # fails to compile, adds dep on e_dbus # 'eweather' # libeweather(?), not compatible with E >= 0.18.0 -# 'forecasts' # not compatible with Enlightenment < 0.19.99 + 'forecasts' # 'mail' # not compatible with Enlightenment >= 0.19.0 'mem' # 'moon' # not compatible with Enlightenment >= 0.19.0 @@ -35,8 +35,8 @@ containsElement () { } pkgname=e-modules-extra-git -pkgver=20260208 -pkgrel=3 +pkgver=20260215 +pkgrel=1 pkgdesc="Enlightenment modules: Extra unsupported modules in Git not already packaged elsewhere" arch=('i686' 'x86_64') url="https://git.enlightenment.org/" @@ -80,6 +80,10 @@ build() { /usr/bin/meson setup build ninja -C build ;; + forecasts) + /usr/bin/meson build + ninja -C build + ;; *) ./autogen.sh \ --prefix=/usr \ @@ -102,6 +106,10 @@ package() { # ninja -C build install /usr/bin/meson install -C build --destdir "$pkgdir" ;; + forecasts) + # ninja -C build install + /usr/bin/meson install -C build --destdir "$pkgdir" + ;; *) make DESTDIR="$pkgdir" install ;;