wok diff python-scapy/receipt @ rev 24020

linld: fix iso9660/64
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 06 18:15:05 2021 +0000 (2021-03-06)
parents 5e106c69c241
children 5ea0ce1cecc0
line diff
     1.1 --- a/python-scapy/receipt	Sat Apr 06 16:58:37 2019 +0200
     1.2 +++ b/python-scapy/receipt	Sat Mar 06 18:15:05 2021 +0000
     1.3 @@ -1,18 +1,19 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="python-scapy"
     1.7 -SOURCE="scapy"
     1.8 -VERSION="2.4.2"
     1.9 +VERSION="2.4.3"
    1.10  CATEGORY="development"
    1.11 -SHORT_DESC="interactive packet manipulation tool"
    1.12 +SHORT_DESC="Interactive packet manipulation tool."
    1.13  MAINTAINER="pascal.bellard@slitaz.org"
    1.14  LICENSE="GPL2"
    1.15 -TARBALL="$SOURCE-$VERSION.tar.gz"
    1.16  WEB_SITE="https://scapy.net/"
    1.17 -WGET_URL="https://github.com/secdev/scapy/archive/v$VERSION.tar.gz"
    1.18 +
    1.19 +SOURCE="scapy"
    1.20 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.21 +WGET_URL="https://github.com/secdev/$SOURCE/archive/v$VERSION.tar.gz"
    1.22  
    1.23  DEPENDS="python"
    1.24 -BUILD_DEPENDS="python"
    1.25 +BUILD_DEPENDS="python python-setuptools"
    1.26  
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29 @@ -25,6 +26,7 @@
    1.30  genpkg_rules()
    1.31  {
    1.32  	mkdir -p $fs/usr
    1.33 -	cp -a $install/usr/bin $fs
    1.34 -	cp -a $install/usr/lib $fs
    1.35 +
    1.36 +	cp -a $install/usr/bin	$fs
    1.37 +	cp -a $install/usr/lib	$fs
    1.38  }