From 4345398c017c5140823b88078c233fe6f9a8ea83 Mon Sep 17 00:00:00 2001 From: Nick Mahoney Date: Mon, 9 Mar 2020 11:54:27 -0600 Subject: [PATCH] add dependency on pacman-contrib [this line](https://github.com/seblu/archivetools/blob/master/archive.sh#L205) in `archive.sh` calls `pacsort`, which is included in the `pacman-contrib` package ([which was split out of the `pacman` package a while ago](https://www.reddit.com/r/archlinux/comments/8mu6de/notice_pacman_and_pacmancontrib_split/)). Without `pacsort`, we see the following error in the logs: ``` ==> Updating package index /usr/bin/archive: line 207: pacsort: command not found sort: write failed: 'standard output': Broken pipe sort: write error ``` --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index b83dcce..a0e16a1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,7 +7,7 @@ pkgdesc='Archlinux Archive Tools (Git version)' arch=('any') url='https://github.com/seblu/archivetools' license=('GPL2') -depends=('rsync' 'hardlink' 'xz' 'util-linux') +depends=('rsync' 'hardlink' 'xz' 'util-linux' 'pacman-contrib') conflicts=('archivetools') backup=('etc/archive.conf') install=archivetools.install