# HG changeset patch # User Hans-G?nter Theisgen # Date 1555828558 -3600 # Node ID 0253e30fe373e920bb2e02f9a308a9f70e799dae # Parent f30d063d7a89408cf29ac7d82ae18dc9b4c77bc6 updated libxml2, libxml2-dev, libxml2-python and libxml2-tools (2.8.0 -> 2.9.9) diff -r f30d063d7a89 -r 0253e30fe373 libxml2-dev/receipt --- a/libxml2-dev/receipt Sun Apr 21 03:46:57 2019 +0300 +++ b/libxml2-dev/receipt Sun Apr 21 07:35:58 2019 +0100 @@ -1,28 +1,31 @@ # SliTaz package receipt. PACKAGE="libxml2-dev" -VERSION="2.8.0" +VERSION="2.9.9" CATEGORY="development" -SHORT_DESC="XML C parser and toolkit devel files." +SHORT_DESC="XML C parser and toolkit - development files." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" -WANTED="libxml2" WEB_SITE="http://xmlsoft.org/" -HOST_ARCH="i486 arm" DEPENDS="libxml2-tools pkg-config" +WANTED="libxml2" + +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/bin/xml2-config $fs/usr/bin - cp -a $install/usr/lib/*.sh $fs/usr/bin + cp -a $install/usr/bin/xml2-config $fs/usr/bin + cp -a $install/usr/lib/*.sh $fs/usr/bin chmod +x $fs/usr/bin/*.sh - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/share/aclocal $fs/usr/share + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/share/aclocal $fs/usr/share } diff -r f30d063d7a89 -r 0253e30fe373 libxml2-python/receipt --- a/libxml2-python/receipt Sun Apr 21 03:46:57 2019 +0300 +++ b/libxml2-python/receipt Sun Apr 21 07:35:58 2019 +0100 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="libxml2-python" -VERSION="2.8.0" +VERSION="2.9.9" CATEGORY="development" SHORT_DESC="Libxml2 adapter for the Python." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" WEB_SITE="http://xmlsoft.org/" + +DEPENDS="libxml2 libxslt python" +WANTED="libxml2" + #HOST_ARCH="arm i486" -WANTED="libxml2" -DEPENDS="python libxml2 libxslt" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { diff -r f30d063d7a89 -r 0253e30fe373 libxml2-tools/receipt --- a/libxml2-tools/receipt Sun Apr 21 03:46:57 2019 +0300 +++ b/libxml2-tools/receipt Sun Apr 21 07:35:58 2019 +0100 @@ -1,21 +1,23 @@ # SliTaz package receipt. PACKAGE="libxml2-tools" -VERSION="2.8.0" +VERSION="2.9.9" CATEGORY="system-tools" SHORT_DESC="The xmllint tester and xmlcatalog parser utility." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" WEB_SITE="http://xmlsoft.org/" -WANTED="libxml2" -HOST_ARCH="i486 arm" DEPENDS="libxml2" +WANTED="libxml2" + +HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/bin - cp -a $install/usr/bin/xmllint $fs/usr/bin - cp -a $install/usr/bin/xmlcatalog $fs/usr/bin + + cp -a $install/usr/bin/xmllint $fs/usr/bin + cp -a $install/usr/bin/xmlcatalog $fs/usr/bin } diff -r f30d063d7a89 -r 0253e30fe373 libxml2/receipt --- a/libxml2/receipt Sun Apr 21 03:46:57 2019 +0300 +++ b/libxml2/receipt Sun Apr 21 07:35:58 2019 +0100 @@ -1,18 +1,20 @@ # SliTaz package receipt. PACKAGE="libxml2" -VERSION="2.8.0" +VERSION="2.9.9" CATEGORY="system-tools" -SHORT_DESC="Libxml2 is the XML C parser and toolkit." +SHORT_DESC="XML C parser and toolkit." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" +WEB_SITE="http://xmlsoft.org/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://xmlsoft.org/" WGET_URL="ftp://xmlsoft.org/libxml2/$TARBALL" -HOST_ARCH="i486 arm" DEPENDS="zlib" -BUILD_DEPENDS="zlib-dev python-dev autoconf automake libtool" +BUILD_DEPENDS="autoconf automake libtool python-dev zlib-dev" + +HOST_ARCH="i486 arm" # When cross compiling Python is installed in chroot and is used # by cross tools, cook dont need to install it in /usr/cross/arm @@ -30,15 +32,15 @@ compile_rules() { autoreconf -fi - ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --with-html-dir=/usr/share/doc \ - --with-threads \ - --with-history \ + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-html-dir=/usr/share/doc \ + --with-threads \ + --with-history \ $CONFIGURE_ARGS $ARCH_ARGS && - make && + make -j 1 && make DESTDIR=$DESTDIR install 2>&1 | grep -v "can't stat './..html':" }