Closed IkeLutra closed 8 years ago
http-parser-2.7.1
for x86_64 showed up in the update just few hours ago. The library soname is libhttp_parser.so.2.7.x
, hence the explicit dependency on that version.
I will rebuild tomorrow.
quick fix
pkgname=electron-libhttp-parser-quickfix
pkgver=1.0
pkgrel=1
arch=('any')
depends=('electron<=1.2.7-2' 'http-parser=2.7.1')
conflicts=('electron>1.2.7-2')
package() {
install -d "${pkgdir}/usr/lib"
cd "$pkgdir/usr/lib"
ln -sf libhttp_parser.so.2.7.1 libhttp_parser.so.2.7.0
}
save this PKGBUILD
and run makepkg -i
I have just upgraded electron (version
1.2.7-2
) and I get the following error:http-parser
package appears to updated two days ago https://www.archlinux.org/packages/community/i686/http-parser/ . Is there any reason for the explicit dependency onlibhttp_parser.so.2.7.0
rather thanlibhttp_parser.so
?My workaround for the moment is to the symlink
libhttp_parser.so.2.7.0
tolibhttp_parser.so
Let me know if you need anymore info?