[arch-commits] Commit in wpscan/repos (3 files)

Felix Yan felixonmars at archlinux.org
Mon Jan 7 01:49:47 UTC 2019


    Date: Monday, January 7, 2019 @ 01:49:47
  Author: felixonmars
Revision: 420914

archrelease: copy trunk to community-staging-x86_64

Added:
  wpscan/repos/community-staging-x86_64/
  wpscan/repos/community-staging-x86_64/PKGBUILD
    (from rev 420913, wpscan/trunk/PKGBUILD)
  wpscan/repos/community-staging-x86_64/wpscan.install
    (from rev 420913, wpscan/trunk/wpscan.install)

----------------+
 PKGBUILD       |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 wpscan.install |    9 +++++++++
 2 files changed, 58 insertions(+)

Copied: wpscan/repos/community-staging-x86_64/PKGBUILD (from rev 420913, wpscan/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2019-01-07 01:49:47 UTC (rev 420914)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: alexiobash < me (at) alexiobash (dot) com >
+
+pkgname=wpscan
+pkgver=3.4.0
+pkgrel=2
+epoch=1
+pkgdesc='Black box WordPress vulnerability scanner'
+url='http://wpscan.org'
+arch=('x86_64')
+license=('custom:WPScan')
+depends=('ruby-bundler' 'libxslt' 'libyaml' 'curl' 'libxml2')
+options=('!strip' '!emptydirs')
+install=wpscan.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/wpscanteam/wpscan/archive/v${pkgver}.tar.gz)
+sha256sums=('ac47cef6dd86629cdda74406ef953c6297fcf1a310c815962b24469f0479e757')
+sha512sums=('5a8c8d073dbde45164d1b46941cd7d27d5f09ff4d254bc3d89a5e991bd44e2fd71a28489fa36f58196692138f90028fd1cba3cb9c4a6953b6d9bac7d2fcdd792')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i '/bundler/ s|~>|>=|g' $pkgname.gemspec
+  bundle config build.nokogiri --use-system-libraries
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  CFLAGS+=" -I/usr/include/libxml2"
+  bundle install -j"$(nproc)" --path vendor/bundle --without development test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -d "${pkgdir}/opt/${pkgname}"
+  cp -ra --no-preserve=owner . "${pkgdir}/opt/${pkgname}"
+
+  install -d "${pkgdir}/usr/bin"
+  cat > "${pkgdir}/usr/bin/${pkgname}" << EOF
+#!/bin/sh
+BUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec ruby /opt/wpscan/bin/wpscan "\$@"
+EOF
+  chmod 755 "${pkgdir}/usr/bin/${pkgname}"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  find "${pkgdir}" \( -name gem_make.out -or -name mkmf.log \) -delete
+}
+
+# vim: ts=2 sw=2 et:

Copied: wpscan/repos/community-staging-x86_64/wpscan.install (from rev 420913, wpscan/trunk/wpscan.install)
===================================================================
--- community-staging-x86_64/wpscan.install	                        (rev 0)
+++ community-staging-x86_64/wpscan.install	2019-01-07 01:49:47 UTC (rev 420914)
@@ -0,0 +1,9 @@
+post_install() {
+  echo -n 'Updating wpscan database...'
+  /usr/bin/wpscan --update >/dev/null 2>&1
+  echo "done."
+}
+
+post_upgrade() {
+  post_install
+}



More information about the arch-commits mailing list