Arch aur out of date
The aur arch repository has a pretty out of date version of sngrep in it (1.4.10), with an annoying crash bug that has long been solved in newer releases.
I have reported the package as 'out-of-date' and even attempted to get in touch with the 'maintainer' but have not received a response.
Can we get the PKGBUILD package updated? Maybe someone is willing to become the maintainer?
This is the PKGBUILD file I used to built my own 1.7.0 version:
pkgname=sngrep
pkgver=1.7.0
pkgrel=1
pkgdesc="A tool for displaying SIP call message flows from a terminal"
arch=('x86_64')
url="https://github.com/irontec/sngrep"
license=('GPL')
depends=('ncurses' 'libpcap' 'pcre' 'gnutls')
makedepends=('git' 'sed')
provides=("${pkgname%}")
conflicts=("${pkgname%}")
install=
source=("${pkgname%}::git+https://github.com/irontec/sngrep.git#tag=v${pkgver%}")
md5sums=('SKIP')
build() {
cd "$srcdir/${pkgname%}"
./bootstrap.sh
./configure --enable-unicode --enable-eep --with-gnutls --with-pcre --enable-ipv6 --prefix=/usr
make
}
package() {
cd "$srcdir/${pkgname%-VCS}"
make DESTDIR="$pkgdir/" install
}
Hi @hafkensite
I'm not familiar with PKGBUILD format, but I can update the version number and depdencencies when a new release comes out.
Thanks for your efforts trying to contact the AUR package maintainer. Did you get any response? If not, we can try opening a Bug report to request access and become the new maintainers.
Regards!