wok rev 25254
updated pywebkitgtk (1.1.7 -> 1.1.8)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jul 14 07:55:02 2022 +0100 (2022-07-14) |
parents | 49a3a8bbbc49 |
children | 70a00c0a16d3 |
files | pywebkitgtk/description.txt pywebkitgtk/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/pywebkitgtk/description.txt Thu Jul 14 07:55:02 2022 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +PyWebkitGtk provides python bindings around Webkit when it has been compiled 1.5 +for GTK2. 1.6 +PyWebkitGtk requires, and augments, PyGtk2. 1.7 +Recent support has been added to PyWebKitGtk to provide full DOM access 1.8 +manipulation, including javascript code execution and evaluation. 1.9 + 1.10 +PyWebkitGtk comes with a demo application which is practically a fully-featured 1.11 +web browser in its own right. 1.12 +PyWebkitGtk is the basis for PyjamasDesktop, which provides a much easier-to-use 1.13 +framework for application development than PyWebkitGtk on its own (it is fair to 1.14 +say that whilst PyWebkitGtk is on the same level as PyGtk2, PyjamasDesktop is on 1.15 +the same level as KiWi).
2.1 --- a/pywebkitgtk/receipt Thu Jul 14 07:49:44 2022 +0100 2.2 +++ b/pywebkitgtk/receipt Thu Jul 14 07:55:02 2022 +0100 2.3 @@ -1,18 +1,19 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="pywebkitgtk" 2.7 -VERSION="1.1.7" 2.8 +VERSION="1.1.8" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Python bindings to the Webkit GTK+ port." 2.11 MAINTAINER="slaxemulator@gmail.com" 2.12 LICENSE="LGPL2" 2.13 -TARBALL="$PACKAGE-$VERSION.tar.gz" 2.14 WEB_SITE="https://wiki.python.org/moin/PyWebkitGtk" 2.15 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.16 WGET_URL="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$PACKAGE/$TARBALL" 2.17 2.18 -DEPENDS="libwebkit pygtk libxslt" 2.19 -BUILD_DEPENDS="libwebkit-dev pygtk-dev libxslt-dev python-dev util-linux-uuid-dev pkg-config" 2.20 - 2.21 +DEPENDS="libwebkit libxml2 libxslt pygtk" 2.22 +BUILD_DEPENDS="libwebkit-dev libxml2-dev libxslt-dev pygtk-dev python-dev 2.23 + util-linux-uuid-dev pkg-config" 2.24 + 2.25 # What is the latest version available today? 2.26 current_version() 2.27 { 2.28 @@ -23,20 +24,20 @@ 2.29 # Rules to configure and make the package. 2.30 compile_rules() 2.31 { 2.32 - cd $src 2.33 - ./configure \ 2.34 - --prefix=/usr \ 2.35 - --infodir=/usr/share/info \ 2.36 - --mandir=/usr/share/man \ 2.37 + ./configure \ 2.38 + --prefix=/usr \ 2.39 + --infodir=/usr/share/info \ 2.40 + --mandir=/usr/share/man \ 2.41 $CONFIGURE_ARGS && 2.42 - make && make DESTDIR=$DESTDIR install 2.43 + make && 2.44 + make install DESTDIR=$DESTDIR 2.45 } 2.46 2.47 # Rules to gen a SliTaz package suitable for Tazpkg. 2.48 genpkg_rules() 2.49 { 2.50 mkdir -p $fs/usr/share 2.51 - cp -a $install/usr/lib $fs/usr 2.52 - cp -a $install/usr/share/pywebkitgtk $fs/usr/share 2.53 + 2.54 + cp -a $install/usr/lib $fs/usr 2.55 + cp -a $install/usr/share/pywebkitgtk $fs/usr/share 2.56 } 2.57 -