[arch-commits] Commit in wpscan/repos/community-x86_64 (4 files)
Jelle van der Waa
jelle at archlinux.org
Fri May 3 13:03:33 UTC 2019
Date: Friday, May 3, 2019 @ 13:03:30
Author: jelle
Revision: 458623
archrelease: copy trunk to community-x86_64
Added:
wpscan/repos/community-x86_64/PKGBUILD
(from rev 458622, wpscan/trunk/PKGBUILD)
wpscan/repos/community-x86_64/wpscan.install
(from rev 458622, wpscan/trunk/wpscan.install)
Deleted:
wpscan/repos/community-x86_64/PKGBUILD
wpscan/repos/community-x86_64/wpscan.install
----------------+
PKGBUILD | 98 +++++++++++++++++++++++++++----------------------------
wpscan.install | 18 +++++-----
2 files changed, 58 insertions(+), 58 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2019-05-03 13:03:17 UTC (rev 458622)
+++ PKGBUILD 2019-05-03 13:03:30 UTC (rev 458623)
@@ -1,49 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: alexiobash < me (at) alexiobash (dot) com >
-
-pkgname=wpscan
-pkgver=3.5.2
-pkgrel=1
-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=('b9a78987390b5e63aad2aa19c85ebcb8518ede37f0443b17b737b96f53aa1dfa')
-sha512sums=('46ceaa5f739e3ef2c43d08b1a4783ddb07254f30feda6397b5764d864684f983e7e44a29f68a0444540fd1734d5abd1637cb6fb10cda2146ee55b6c7b2be1566')
-
-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-x86_64/PKGBUILD (from rev 458622, wpscan/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2019-05-03 13:03:30 UTC (rev 458623)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: alexiobash < me (at) alexiobash (dot) com >
+
+pkgname=wpscan
+pkgver=3.5.3
+pkgrel=1
+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=('65da9d4aaea5fc0ea71f42412df5b249aa90c31d1873b4391f02eafbb6b0b781')
+sha512sums=('760cde2e5ac4223434d11ee21e43bfc3f90436e2750b723a0356ada36b91aa30deddd9b3aab4fdb9c12e21fcbfa1869adb4fb7574fca5b60d29c3104638e117d')
+
+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:
Deleted: wpscan.install
===================================================================
--- wpscan.install 2019-05-03 13:03:17 UTC (rev 458622)
+++ wpscan.install 2019-05-03 13:03:30 UTC (rev 458623)
@@ -1,9 +0,0 @@
-post_install() {
- echo -n 'Updating wpscan database...'
- /usr/bin/wpscan --update >/dev/null 2>&1
- echo "done."
-}
-
-post_upgrade() {
- post_install
-}
Copied: wpscan/repos/community-x86_64/wpscan.install (from rev 458622, wpscan/trunk/wpscan.install)
===================================================================
--- wpscan.install (rev 0)
+++ wpscan.install 2019-05-03 13:03:30 UTC (rev 458623)
@@ -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