wok view python-bpython/receipt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (23 months ago)
parents 1df6fa555414
children
line source
1 # SliTaz package receipt.
3 PACKAGE="python-bpython"
4 VERSION="0.19"
5 CATEGORY="development"
6 SHORT_DESC="A fancy interface to the Python interpreter."
7 MAINTAINER="claudinei@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="bpython"
10 WEB_SITE="https://pypi.org/project/$SOURCE/"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://files.pythonhosted.org/packages/source/b/$SOURCE/$TARBALL"
15 DEPENDS="python python-pygments python-setuptools"
16 BUILD_DEPENDS="$DEPENDS python-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | sed "/$SOURCE [0-9]/!d;s|.*$SOURCE ||;s|<.*||"
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 python setup.py install --root=$DESTDIR
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 mkdir -p $fs/usr/share/applications
36 for file in `find $install | grep 'pyc$'`
37 do
38 rm $file
39 done
40 rm -rf $install/usr/share/applications
42 cp -a $install/usr/bin $fs/usr
43 cp -a $install/usr/lib $fs/usr
44 cp -a $stuff/* $fs/usr/share/applications
45 }