Date: Sunday, July 5, 2015 @ 11:08:02 Author: jelle Revision: 136428 initial commit
Added: bandit/ bandit/repos/ bandit/trunk/ bandit/trunk/PKGBUILD ----------+ PKGBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) Added: bandit/trunk/PKGBUILD =================================================================== --- bandit/trunk/PKGBUILD (rev 0) +++ bandit/trunk/PKGBUILD 2015-07-05 09:08:02 UTC (rev 136428) @@ -0,0 +1,24 @@ +# Maintainer: Jelle van der Waa <[email protected]> + +pkgname=bandit +pkgver=0.12.0 +pkgrel=1 +pkgdesc='Python security linter from OpenStack Security' +arch=('any') +url='https://wiki.openstack.org/wiki/Security/Projects/Bandit' +license=('Apache') +depends=('python2-yaml') +makedepends=('python2-setuptools') +source=("https://pypi.python.org/packages/source/b/bandit/bandit-${pkgver}.tar.gz") +md5sums=('48a94a025d71154577564ff31826ca23') + +build() { + cd "bandit-$pkgver" + python2 setup.py build +} + +package() { + cd "bandit-$pkgver" + python2 setup.py install --root="$pkgdir" --optimize=1 + # TODO: /usr/lib/python2.7/site-packages/bandit/config/bandit.yaml +} Property changes on: bandit/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
