blob: 25b2867ff79b6836234da2f074d6a46977fb3151 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py-paramiko
_pkgname=paramiko
pkgver=1.12.0
pkgrel=0
pkgdesc="SSH2 protocol library for Python"
url="https://github.com/paramiko/paramiko/"
arch="noarch"
license="LGPL2+"
depends="py-crypto py-ecdsa"
depends_dev=""
makedepends="python-dev py-setuptools"
install=""
subpackages="$pkgname-demos $pkgname-docs"
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$_pkgname-$pkgver
build() {
cd "$_builddir"
python setup.py build || return 1
python ./test.py || return 1
}
package() {
cd "$_builddir"
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
}
demos() {
# Put the demo files into a seperate package
mkdir -p "$subpkgdir"/usr/share/doc/"$pkgname"/demos || return 1
mv "$_builddir"/demos "$subpkgdir"/usr/share/doc/"$pkgname"/ || return 1
}
docs() {
# Put the documentation files into a seperate package
mkdir -p "$subpkgdir"/usr/share/doc/"$pkgname"/docs || return 1
mv "$_builddir"/docs "$subpkgdir"/usr/share/doc/"$pkgname"/ || return 1
}
md5sums="4187f77b1a5a313c899993930e30c321 paramiko-1.12.0.tar.gz"
sha256sums="cc0c0549f611ccc1358a0e1c760e00074990adba723d4d647a2637a1fadbdd71 paramiko-1.12.0.tar.gz"
sha512sums="2ccacef3136d5c4c03d6224fa58e1724457d0d70b477f1c4e16cd3cfb405116fd2390cae4f0f4288072d98b644f92ebcd78bd623929c0dfc1a2c41304ca9a199 paramiko-1.12.0.tar.gz"
|