summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorgoll2016-12-28 13:27:27 +0100
committergoll2016-12-28 13:27:27 +0100
commit326e0557431820c411fc25fcbf0f55126a3e934b (patch)
tree1d00972cb2df95f4dcbb90f16cfc238bf3ad2874
parent25bc8cc43f53e1cce02a2f18ec649a79049a19ff (diff)
downloadaur-326e0557431820c411fc25fcbf0f55126a3e934b.tar.gz
Update to 0.14.2
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD7
2 files changed, 8 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index cfd46970e339..bc3b25728448 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Sun Sep 4 17:54:48 UTC 2016
+# Wed Dec 28 12:25:38 UTC 2016
pkgbase = sslyze
pkgdesc = Fast and full-featured SSL scanner.
- pkgver = 0.14.0
+ pkgver = 0.14.2
pkgrel = 1
url = https://github.com/nabla-c0d3/sslyze
arch = i686
@@ -10,8 +10,8 @@ pkgbase = sslyze
license = GPL2
depends = python2
depends = python2-pip
- source = https://github.com/nabla-c0d3/sslyze/archive/0.14.0.tar.gz
- sha1sums = 4307e16a25e5eb5fa59b16fc82ef255bb533321f
+ source = https://github.com/nabla-c0d3/sslyze/archive/0.14.2.tar.gz
+ sha1sums = 876917d284d9d1c48c52c68be917f02f29f19c9c
pkgname = sslyze
diff --git a/PKGBUILD b/PKGBUILD
index 5a89d971606b..089a1090ce91 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: goll <adrian.goll+aur[at]gmail>
pkgname='sslyze'
-pkgver=0.14.0
+pkgver=0.14.2
pkgrel=1
pkgdesc="Fast and full-featured SSL scanner."
arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@ url='https://github.com/nabla-c0d3/sslyze'
license=('GPL2')
depends=('python2' 'python2-pip')
source=("https://github.com/nabla-c0d3/sslyze/archive/${pkgver}.tar.gz")
-sha1sums=('4307e16a25e5eb5fa59b16fc82ef255bb533321f')
+sha1sums=('876917d284d9d1c48c52c68be917f02f29f19c9c')
package() {
# Install files in /opt
@@ -22,7 +22,8 @@ package() {
cat << EOF > "$pkgdir/usr/bin/sslyze"
#!/usr/bin/bash
-python2 /opt/sslyze/sslyze_cli.py \$@
+export PYTHONPATH="/opt/sslyze"
+python2 -m sslyze \$@
EOF
chmod 755 "$pkgdir/usr/bin/sslyze"