# HG changeset patch # User Hans-G?nter Theisgen # Date 1555829582 -3600 # Node ID 06ffe7f7cb2ab781929630e22039926699757e37 # Parent 0253e30fe373e920bb2e02f9a308a9f70e799dae updated libxslt, libxslt-dev and libxslt-python (1.1.26 -> 1.1.33) diff -r 0253e30fe373 -r 06ffe7f7cb2a libxslt-dev/receipt --- a/libxslt-dev/receipt Sun Apr 21 07:35:58 2019 +0100 +++ b/libxslt-dev/receipt Sun Apr 21 07:53:02 2019 +0100 @@ -1,29 +1,32 @@ # SliTaz package receipt. PACKAGE="libxslt-dev" -VERSION="1.1.26" +VERSION="1.1.33" CATEGORY="development" -SHORT_DESC="XSLT devel files support for libxml2." +SHORT_DESC="XSLT support for libxml2 - development files." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" -WANTED="libxslt" WEB_SITE="http://xmlsoft.org/" -HOST_ARCH="i486 arm" DEPENDS="libxslt pkg-config libxslt-python libgcrypt-dev libxml2-dev zlib-dev" +WANTED="libxslt" + +HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/bin $fs/usr/share + mkdir -p $fs/usr/lib + mkdir -p $fs/usr/bin + mkdir -p $fs/usr/share + + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/*.sh $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/*.sh $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - - cp $install/usr/bin/xslt-config $fs/usr/bin + cp $install/usr/bin/xslt-config $fs/usr/bin chmod +x $fs/usr/bin/* - cp -a $install/usr/include $fs/usr - cp -a $install/usr/share/aclocal $fs/usr/share + cp -a $install/usr/include $fs/usr + cp -a $install/usr/share/aclocal $fs/usr/share } diff -r 0253e30fe373 -r 06ffe7f7cb2a libxslt-python/receipt --- a/libxslt-python/receipt Sun Apr 21 07:35:58 2019 +0100 +++ b/libxslt-python/receipt Sun Apr 21 07:53:02 2019 +0100 @@ -1,15 +1,15 @@ # SliTaz package receipt. PACKAGE="libxslt-python" -VERSION="1.1.26" +VERSION="1.1.33" CATEGORY="development" -SHORT_DESC="python module for libxslt" +SHORT_DESC="Python module for libxslt." MAINTAINER="slaxemulator@gmail.com" LICENSE="MIT" -WANTED="libxslt" WEB_SITE="http://xmlsoft.org/" DEPENDS="libxslt python" +WANTED="libxslt" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() @@ -19,4 +19,3 @@ PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/') cp -a $install/usr/lib/$PYTHON_LIB $fs/usr/lib } - diff -r 0253e30fe373 -r 06ffe7f7cb2a libxslt/receipt --- a/libxslt/receipt Sun Apr 21 07:35:58 2019 +0100 +++ b/libxslt/receipt Sun Apr 21 07:53:02 2019 +0100 @@ -1,19 +1,21 @@ # SliTaz package receipt. PACKAGE="libxslt" -VERSION="1.1.26" +VERSION="1.1.33" CATEGORY="system-tools" SHORT_DESC="XSLT support for libxml2." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" +WEB_SITE="http://www.xmlsoft.org/XSLT/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.xmlsoft.org/XSLT/" WGET_URL="ftp://xmlsoft.org/libxslt/$TARBALL" -HOST_ARCH="i486 arm" DEPENDS="libgcrypt libgpg-error libxml2 zlib" -BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev libxml2-dev zlib-dev \ -python-dev" +BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev libxml2-dev \ + python-dev zlib-dev" + +HOST_ARCH="i486 arm" # Handle cross compilation case "$ARCH" in @@ -24,7 +26,7 @@ compile_rules() { ./configure $CONFIGURE_ARGS && - make && + make -j 1 && make install 2>&1 | grep -v 'html/index.sgml' } @@ -32,7 +34,9 @@ genpkg_rules() { mkdir -p $fs/usr/lib/libxslt-plugins - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/bin $fs/usr + + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/bin $fs/usr + rm $fs/usr/bin/xslt-config }