mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=py-ldap3
|
|
_pkgname=ldap3
|
|
pkgver=2.4.1
|
|
pkgrel=0
|
|
pkgdesc="A strictly RFC 4510 conforming LDAP V3 pure Python client"
|
|
url="https://github.com/cannatag/ldap3"
|
|
arch="noarch"
|
|
license="LGPL-3.0"
|
|
depends="py-asn1"
|
|
makedepends="python2-dev python3-dev py-setuptools"
|
|
subpackages="py2-$_pkgname:_subpackage py3-$_pkgname:_subpackage"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/cannatag/$_pkgname/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
options="!check" # tests need running LDAP server
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_subpackage() {
|
|
local pyver="${subpkgname:2:1}"
|
|
local python="python$pyver"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
depends="$python ${depends//py-/py$pyver-}"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
|
|
sha512sums="a798d14827325ffcd110a6ba9c5911f73dd62937965bb79b1cff0effbab49bfd6d4d9325e2c1fa9523ad622ccb8e1a924ecb7aa1be223e5d3b556e4b96f790dd py-ldap3-2.4.1.tar.gz"
|