mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/py-tls_parser: New aport
This commit is contained in:
parent
d1f83cdfbc
commit
d967bd2f31
50
testing/py-tls_parser/APKBUILD
Normal file
50
testing/py-tls_parser/APKBUILD
Normal file
@ -0,0 +1,50 @@
|
||||
# Contributor: Simon Frankenberger <simon-alpine@fraho.eu>
|
||||
# Maintainer: Simon Frankenberger <simon-alpine@fraho.eu>
|
||||
pkgname=py-tls_parser
|
||||
_pkgname=tls_parser
|
||||
pkgver=1.2.1
|
||||
pkgrel=0
|
||||
pkgdesc="Python library to parse TLS records."
|
||||
url="https://pypi.org/project/tls-parser/"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
makedepends="python2-dev python3-dev py-setuptools"
|
||||
subpackages="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"
|
||||
python2 setup.py build
|
||||
python3 setup.py build
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$builddir"
|
||||
python2 setup.py check
|
||||
python3 setup.py check
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir"
|
||||
}
|
||||
|
||||
_py() {
|
||||
local python="$1"
|
||||
pkgdesc="$pkgdesc (for $python)"
|
||||
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
||||
|
||||
cd "$builddir"
|
||||
$python setup.py install --prefix=/usr \
|
||||
--root="$subpkgdir" --optimize=1
|
||||
}
|
||||
|
||||
_py2() {
|
||||
_py python2
|
||||
}
|
||||
|
||||
_py3() {
|
||||
_py python3
|
||||
}
|
||||
sha512sums="0524c328852ca20d8c6d8c419ab8aa019afd80b41bb862cc639bb63f1f7b8ed0869a47f5791aaaa1aba54171d19ed0785c0e98d7433e93d902f48bc0d8069415 tls_parser-1.2.1.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user