aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-paramiko
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-05-03 06:19:04 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-05-03 06:19:04 +0000
commit6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07 (patch)
tree1f70b259fe7fb5c82f437c6b006284893cf4eb5a /testing/py-paramiko
parent66765c30ac7a9c9a560ab43d5618de820fb373c6 (diff)
downloadaports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.bz2
aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.xz
testing/*: removed
We dont ship testing things in a stable release
Diffstat (limited to 'testing/py-paramiko')
-rw-r--r--testing/py-paramiko/APKBUILD41
1 files changed, 0 insertions, 41 deletions
diff --git a/testing/py-paramiko/APKBUILD b/testing/py-paramiko/APKBUILD
deleted file mode 100644
index c09e6f2e14..0000000000
--- a/testing/py-paramiko/APKBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
-# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
-pkgname=py-paramiko
-_pkgname=paramiko
-pkgver=1.7.7.1
-pkgrel=0
-pkgdesc="SSH2 protocol library for Python"
-url="http://www.lag.net/paramiko/"
-arch="noarch"
-license="LGPL2+"
-depends="py-crypto"
-depends_dev=""
-makedepends="python-dev"
-install=""
-subpackages="$pkgname-demos $pkgname-docs"
-source="http://www.lag.net/paramiko/download/$_pkgname-$pkgver.tar.gz"
-_builddir="$srcdir"/$_pkgname-$pkgver
-
-build() {
- cd "$_builddir"
- python setup.py build || 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="ce8e2c254378312a264206f65c354d72 paramiko-1.7.7.1.tar.gz"