wok-current annotate python-paho-mqtt/receipt @ rev 24299
Update some current_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jan 15 15:21:40 2022 +0000 (2022-01-15) |
parents | 5ea0ce1cecc0 |
children | bd54af54b0ef |
rev | line source |
---|---|
pascal@20295 | 1 # SliTaz package receipt. |
pascal@20295 | 2 |
pascal@20295 | 3 PACKAGE="python-paho-mqtt" |
Hans-G?nter@23521 | 4 VERSION="1.5.0" |
pascal@20295 | 5 CATEGORY="development" |
Hans-G?nter@23521 | 6 SHORT_DESC="Eclipse Paho MQTT Python client library." |
pascal@20295 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@20295 | 8 LICENSE="epl-v10 edl-v10" |
pascal@20295 | 9 WEB_SITE="https://pypi.org/project/paho-mqtt/" |
Hans-G?nter@23521 | 10 |
pascal@20295 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@20295 | 12 WGET_URL="https://github.com/eclipse/paho.mqtt.python/archive/v$VERSION.tar.gz" |
pascal@20295 | 13 |
pascal@20295 | 14 DEPENDS="python" |
Hans-G?nter@23521 | 15 BUILD_DEPENDS="python python-setuptools" |
pascal@20295 | 16 |
pascal@24055 | 17 current_version() |
pascal@24055 | 18 { |
pascal@24299 | 19 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ |
pascal@24055 | 20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' |
pascal@24055 | 21 } |
pascal@24055 | 22 |
pascal@20295 | 23 # Rules to configure and make the package. |
pascal@20295 | 24 compile_rules() |
pascal@20295 | 25 { |
pascal@20295 | 26 python setup.py install --prefix=/usr --root=$DESTDIR |
pascal@20295 | 27 } |
pascal@20295 | 28 |
pascal@20295 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@20295 | 30 genpkg_rules() |
pascal@20295 | 31 { |
Hans-G?nter@23521 | 32 cp -a $install/usr $fs |
pascal@20295 | 33 } |