Date: Tuesday, January 10, 2017 @ 01:21:57 Author: anatolik Revision: 206331
upgpkg: metasploit 4.13.12-2 The package can't be build with ruby-2.4 yet because https://github.com/flori/json/issues/311 Add ruby version restriction to 2.3 or below. Modified: metasploit/trunk/PKGBUILD ----------+ PKGBUILD | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-01-10 00:56:25 UTC (rev 206330) +++ PKGBUILD 2017-01-10 01:21:57 UTC (rev 206331) @@ -4,12 +4,14 @@ pkgname=metasploit pkgver=4.13.12 -pkgrel=1 +pkgrel=2 pkgdesc='Advanced open-source platform for developing, testing, and using exploit code' url='https://www.metasploit.com/' arch=('i686' 'x86_64') license=('BSD') -depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 'git') +# it has to depend on ruby-2.3 or below because 'json' gem dependency is not ported to ruby-2.4 yet +# https://github.com/flori/json/issues/311 +depends=('ruby<2.4' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 'git') optdepends=('ruby-pg: database support') options=('!strip' '!emptydirs') source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rapid7/metasploit-framework/archive/${pkgver}.tar.gz)
