aboutsummaryrefslogtreecommitdiffstats
path: root/main/py-paramiko/APKBUILD
blob: f558c04e35858b45f5c7027ae1e953ab08d310ee (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py-paramiko
_pkgname=paramiko
pkgver=2.0.1
pkgrel=1
pkgdesc="An SSH2 protocol library for Python"
url="https://github.com/paramiko/paramiko/"
arch="noarch"
license="LGPL2+"
depends="py-crypto py-ecdsa py3-crypto py3-ecdsa"
depends_dev=""
makedepends="python-dev python3-dev py-setuptools"
install=""
subpackages="$pkgname-doc $pkgname-demos py3-$_pkgname:_py3 py2-$_pkgname:_py2"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"

builddir="$srcdir"/$_pkgname-$pkgver

build() {
	cd "$builddir"
	python setup.py build || return 1
	python3 setup.py build || return 1	
}

package() {
	cd "$builddir"
	python setup.py install --root=$pkgdir/ --optimize=1 || return 1
	python3 setup.py install --root=$pkgdir/ --optimize=1 || return 1
}


_py() {
	local python=$1
	pkgdesc="$pkgdesc - $python"
	install_if="$pkgname=$pkgver-r$pkgrel $python"
	local dir=$($python -c 'import sysconfig; print(sysconfig.get_path("stdlib"))')

	mkdir -p "$subpkgdir"${dir}
	mv "$pkgdir"${dir}/* "$subpkgdir"${dir}
}

_py2() {
	_py python2
	replaces="$pkgname"
}

_py3() {
	_py python3
}

demos() {
	# Put the demo files into a separate package
	mkdir -p "$subpkgdir"/usr/share/doc/"$pkgname"/demos || return 1
	mv "$builddir"/demos "$subpkgdir"/usr/share/doc/"$pkgname"/ || return 1
}

doc() {
	# Put the documentation files into a separate package
	mkdir -p "$subpkgdir"/usr/share/doc/"$pkgname"/docs || return 1
	mv "$builddir"/docs "$subpkgdir"/usr/share/doc/"$pkgname"/ || return 1
}

md5sums="c00d63b34dcf74649216bdc8875e1ebe  paramiko-2.0.1.tar.gz"
sha256sums="261afe9246c2494e50bbeab55e50934348e91d1189803123459e0c81cda70fac  paramiko-2.0.1.tar.gz"
sha512sums="798b9ef4ab314e66675687ac09b9b9389132199717750a0f1068bc2ef68ba09ca54a81c23957200720aa293a6ba2058a1b85de1d60f92f53b1665bbe7254bced  paramiko-2.0.1.tar.gz"