wok view twisted/receipt @ rev 24976

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 06 11:04:25 2022 +0000 (24 months ago)
parents 922f061231c2
children 097600d80931
line source
1 # SliTaz package receipt.
3 PACKAGE="twisted"
4 VERSION="20.3.0"
5 CATEGORY="network"
6 SHORT_DESC="Event-driven networking for internet applications."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://twistedmatrix.com/trac/"
11 SOURCE="Twisted"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="https://pypi.python.org/packages/source/T/Twisted/$TARBALL"
15 DEPENDS="python-attrs python-constantly python-incremental zopeinterface"
16 BUILD_DEPENDS="python python-dev python-incremental python-pip
17 python-setuptools zopeinterface"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - https://github.com/twisted/twisted/releases 2>/dev/null | \
23 sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;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 }