summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIsmael Luceno2022-08-08 22:07:18 +0200
committerIsmael Luceno2022-08-08 22:08:36 +0200
commit5f182a5f4a096b470bbe5b15d28cffda8d5eaca8 (patch)
treeb07f6df9f784d5f3c310d4563361ef7d4edc2beb
parentd4a30e969c27277bb8165712fb5e2f1680f5eecc (diff)
i3: Add missing dep on anyevent
-rwxr-xr-xwindowmanagers/i3/DEPENDS3
-rw-r--r--windowmanagers/i3/HISTORY1
2 files changed, 3 insertions, 1 deletions
diff --git a/windowmanagers/i3/DEPENDS b/windowmanagers/i3/DEPENDS
index 4efee27b7b..dc0f9b99cf 100755
--- a/windowmanagers/i3/DEPENDS
+++ b/windowmanagers/i3/DEPENDS
@@ -28,7 +28,8 @@ suggest_depends xmessage '' '' 'for the welcome message' &&
suggest_depends perl '' '' \
'for config migration, dmenu app launcher, and i3-save-tree' &&
if is_depends_enabled $SPELL perl; then
- depends perl-json-xs
+ runtime_depends anyevent &&
+ runtime_depends perl-json-xs
fi &&
suggest_depends i3lock '' '' 'for a screen locker' &&
suggest_depends i3status '' '' 'for status bar information' &&
diff --git a/windowmanagers/i3/HISTORY b/windowmanagers/i3/HISTORY
index 44174fb9e3..8156cb670d 100644
--- a/windowmanagers/i3/HISTORY
+++ b/windowmanagers/i3/HISTORY
@@ -1,6 +1,7 @@
2022-08-08 Ismael Luceno <ismael@sourcemage.org>
* INSTALL: fixed installation of perl module
* DEPENDS: improved descriptions
+ added missing dependency on anyevent
PATCHLEVEL++
2022-07-27 Vlad Glagolev <stealth@sourcemage.org>