Skip to content

Commit

Permalink
community/weechat-perl: fix Pod::Select dependency
Browse files Browse the repository at this point in the history
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:

weechat/scripts#421

We make weechat-perl to depends on perl-pod-parser to fix the issue
until an alternative is found upstream.
  • Loading branch information
stacyharper authored and nekopsykose committed Mar 1, 2023
1 parent 90d3f97 commit aa13621
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions community/weechat/APKBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Maintainer: Leonardo Arena <[email protected]>
pkgname=weechat
pkgver=3.8
pkgrel=0
pkgrel=1
pkgdesc="A fast, light, extensible ncurses-based chat client"
url="https://weechat.org"
arch="all"
Expand Down Expand Up @@ -34,7 +34,7 @@ subpackages="
$pkgname-lang
$pkgname-spell:_plugin
$pkgname-lua:_plugin
$pkgname-perl:_plugin
$pkgname-perl
$pkgname-python:_plugin
$pkgname-ruby:_plugin
"
Expand Down Expand Up @@ -87,6 +87,11 @@ _plugin() {
amove $_dir/"$_name".so
}

perl() {
_plugin
depends="$depends perl-pod-parser"
}

sha512sums="
1c176280380d735ae609341272526b1bb8707b98c6715c69ac298f79e290ebb5544f7abc4b3f5c751168a99e78d8919b135e8557adea50af6e467bf7ee340ca6 weechat-3.8.tar.gz
"

0 comments on commit aa13621

Please sign in to comment.