wok diff pywebkitgtk/receipt @ rev 25463

Up expat (2.4.9) fixes CVE-2022-40674
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 29 20:05:23 2022 +0000 (20 months ago)
parents 0f92b8cc8086
children
line diff
     1.1 --- a/pywebkitgtk/receipt	Sun May 08 13:06:36 2022 +0000
     1.2 +++ b/pywebkitgtk/receipt	Thu Sep 29 20:05:23 2022 +0000
     1.3 @@ -1,18 +1,19 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="pywebkitgtk"
     1.7 -VERSION="1.1.7"
     1.8 +VERSION="1.1.8"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Python bindings to the Webkit GTK+ port."
    1.11  MAINTAINER="slaxemulator@gmail.com"
    1.12  LICENSE="LGPL2"
    1.13 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14  WEB_SITE="https://wiki.python.org/moin/PyWebkitGtk"
    1.15 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16  WGET_URL="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$PACKAGE/$TARBALL"
    1.17  
    1.18 -DEPENDS="libwebkit pygtk libxslt"
    1.19 -BUILD_DEPENDS="libwebkit-dev pygtk-dev libxslt-dev python-dev util-linux-uuid-dev pkg-config"
    1.20 -
    1.21 +DEPENDS="libwebkit libxml2 libxslt pygtk"
    1.22 +BUILD_DEPENDS="libwebkit-dev libxml2-dev libxslt-dev pygtk-dev python-dev
    1.23 +	util-linux-uuid-dev pkg-config"
    1.24 +	
    1.25  # What is the latest version available today?
    1.26  current_version()
    1.27  {
    1.28 @@ -23,20 +24,20 @@
    1.29  # Rules to configure and make the package.
    1.30  compile_rules()
    1.31  {
    1.32 -	cd $src
    1.33 -	./configure \
    1.34 -		--prefix=/usr \
    1.35 -		--infodir=/usr/share/info \
    1.36 -		--mandir=/usr/share/man \
    1.37 +	./configure				\
    1.38 +		--prefix=/usr			\
    1.39 +		--infodir=/usr/share/info	\
    1.40 +		--mandir=/usr/share/man		\
    1.41  		$CONFIGURE_ARGS &&
    1.42 -	make && make DESTDIR=$DESTDIR install
    1.43 +	make &&
    1.44 +	make install DESTDIR=$DESTDIR
    1.45  }
    1.46  
    1.47  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.48  genpkg_rules()
    1.49  {
    1.50  	mkdir -p $fs/usr/share
    1.51 -	cp -a $install/usr/lib $fs/usr
    1.52 -	cp -a $install/usr/share/pywebkitgtk $fs/usr/share
    1.53 +
    1.54 +	cp -a $install/usr/lib			$fs/usr
    1.55 +	cp -a $install/usr/share/pywebkitgtk	$fs/usr/share
    1.56  }
    1.57 -