initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

23
python-paramiko/PKGBUILD Normal file
View File

@@ -0,0 +1,23 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=python-paramiko
pkgver=2.7.2
pkgrel=2
pkgdesc="Python module that implements the SSH2 protocol"
url="https://github.com/paramiko/paramiko/"
license=('LGPL-2.1')
arch=('any')
depends=('python-bcrypt' 'python-cryptography' 'python-pynacl')
makedepends=('python-setuptools' 'python-bcrypt' 'python-cryptography' 'python-pynacl')
source=("https://github.com/paramiko/paramiko/archive/$pkgver/$pkgname-$pkgver.tar.gz")
sha512sums=('c9bc569428a0a61814cb73941356de5bae7fea7891ba4fd3f5c00ff1ee5083454bfde7e969fb4aaf5254b909f7f0132f590d67803eda8a67503e5c02ec2bf01a')
package() {
cd paramiko-$pkgver
python setup.py install --root="$pkgdir" --optimize=1
install -dm755 "$pkgdir"/usr/share/doc/$pkgname/demos
install -m644 demos/* "$pkgdir"/usr/share/doc/$pkgname/demos
chmod 755 "$pkgdir"/usr/share/doc/$pkgname/demos/*.py
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
}