Add packages needed for ISCSI target

This commit is contained in:
moparisthebest
2016-11-05 23:28:50 -04:00
parent b96f27869a
commit c1a9c881e0
11 changed files with 260 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
# Generated by mksrcinfo v8
# Sun May 8 18:52:08 UTC 2016
pkgbase = python-configshell-fb
pkgdesc = python framework for building simple CLI applications (free branch)
pkgver = 1.1.fb20
pkgrel = 1
url = https://github.com/agrover/configshell-fb
arch = any
license = Apache
makedepends = python-setuptools
makedepends = python2-setuptools
source = https://fedorahosted.org/releases/t/a/targetcli-fb/configshell-fb-1.1.fb20.tar.gz
sha256sums = 4a9f4b59ccd256a1c4d4c270be43798853a91d9fec29bd0ba006b88b7476f383
pkgname = python-configshell-fb
depends = python-pyparsing
depends = python-urwid
provides = python-configshell
conflicts = python-configshell
pkgname = python2-configshell-fb
depends = python2-pyparsing
depends = python2-urwid
provides = python2-configshell
conflicts = python2-configshell

8
src/python-configshell-fb/.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
*.tar.gz
*.tar.xz
*.tgz
*.rpm
*.zip
*.bz2
src/
pkg/

View File

@@ -0,0 +1,31 @@
# Contributor: Johannes Dewender arch at JonnyJD dot net
pkgname=('python-configshell-fb' 'python2-configshell-fb')
_pkgname=configshell-fb
pkgver=1.1.fb20
pkgrel=1
pkgdesc="python framework for building simple CLI applications (free branch)"
arch=('any')
url="https://github.com/agrover/configshell-fb"
license=('Apache')
options=()
makedepends=('python-setuptools' 'python2-setuptools')
source=(https://fedorahosted.org/releases/t/a/targetcli-fb/$_pkgname-$pkgver.tar.gz)
sha256sums=('4a9f4b59ccd256a1c4d4c270be43798853a91d9fec29bd0ba006b88b7476f383')
package_python-configshell-fb() {
depends=('python-pyparsing' 'python-urwid')
provides=('python-configshell')
conflicts=('python-configshell')
cd "$srcdir/$_pkgname-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
package_python2-configshell-fb() {
depends=('python2-pyparsing' 'python2-urwid')
provides=('python2-configshell')
conflicts=('python2-configshell')
cd "$srcdir/$_pkgname-$pkgver"
python2 setup.py install --root="$pkgdir/" --optimize=1
}
# vim:set ts=2 sw=2 et: