wok view python-cryptography/receipt @ rev 25175

updated python-cryptography (2.7 -> 2.8)
author Hans-G?nter Theisgen
date Fri Jul 01 17:39:11 2022 +0100 (22 months ago)
parents ac8ca9758df1
children 22bd84f34d4d
line source
1 # SliTaz package receipt.
3 PACKAGE="python-cryptography"
4 VERSION="2.8"
5 CATEGORY="development"
6 SHORT_DESC="Python library exposing cryptographic recipes and primitives."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://cryptography.io/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/pyca/cryptography/archive/$VERSION.tar.gz"
13 DEPENDS="python python-six python-enum34 python-asn1crypto"
14 BUILD_DEPENDS="python-setuptools openssl-dev python-dev python-cffi \
15 python-cparser"
16 #BUILD_DEPENDS="python"
18 current_version()
19 {
20 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
21 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 python setup.py \
28 install \
29 --prefix=/usr \
30 --root=$DESTDIR
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cook_copy_folders lib
37 }