wok view python-pynacl/receipt @ rev 25601

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 16 18:06:38 2023 +0000 (10 months ago)
parents 47003b5bbbaf
children
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pynacl"
4 VERSION="1.4.0"
5 CATEGORY="development"
6 SHORT_DESC="Python binding to the Networking and Cryptography (NaCl) library"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="Apache"
9 WEB_SITE="https://pypi.org/project/PyNaCl/"
10 REPOLOGY="python:pynacl"
12 SOURCE="PyNaCl"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
16 DEPENDS="libsodium python"
17 BUILD_DEPENDS="libmagic libsodium-dev python-dev python-setuptools"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - https://github.com/pyca/pynacl/tags 2>/dev/null | \
23 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 python setup.py build &&
30 python setup.py install --root=$DESTDIR
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs
37 }