From aa1362103058f138629daf056bca4d1cc165e7b4 Mon Sep 17 00:00:00 2001 From: Willow Barraco Date: Wed, 1 Mar 2023 12:09:50 +0100 Subject: [PATCH] community/weechat-perl: fix Pod::Select dependency Multiple Weechat perl scripts require Pod::Select: - chanmon.pl - coords.pl - luanma.pl - menu.pl - multiline.pl - spell_menu.pl This has been deprecated and removed in latest perl versions: https://github.com/weechat/scripts/issues/421 We make weechat-perl to depends on perl-pod-parser to fix the issue until an alternative is found upstream. --- community/weechat/APKBUILD | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/community/weechat/APKBUILD b/community/weechat/APKBUILD index f45a81e655e6..e40164c03d63 100644 --- a/community/weechat/APKBUILD +++ b/community/weechat/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Leonardo Arena pkgname=weechat pkgver=3.8 -pkgrel=0 +pkgrel=1 pkgdesc="A fast, light, extensible ncurses-based chat client" url="https://weechat.org" arch="all" @@ -34,7 +34,7 @@ subpackages=" $pkgname-lang $pkgname-spell:_plugin $pkgname-lua:_plugin - $pkgname-perl:_plugin + $pkgname-perl $pkgname-python:_plugin $pkgname-ruby:_plugin " @@ -87,6 +87,11 @@ _plugin() { amove $_dir/"$_name".so } +perl() { + _plugin + depends="$depends perl-pod-parser" +} + sha512sums=" 1c176280380d735ae609341272526b1bb8707b98c6715c69ac298f79e290ebb5544f7abc4b3f5c751168a99e78d8919b135e8557adea50af6e467bf7ee340ca6 weechat-3.8.tar.gz "