# HG changeset patch # User Hans-G?nter Theisgen # Date 1584017973 -3600 # Node ID d00b342c54b5fd107baf4ded3555029dc9531ff1 # Parent b2440f3942f77d6be9cf354a2f1e9bbc54589226 updated libtdb and libtdb-dev (1.2.9 -> 1.4.3) diff -r b2440f3942f7 -r d00b342c54b5 libtdb-dev/receipt --- a/libtdb-dev/receipt Thu Mar 12 13:38:17 2020 +0100 +++ b/libtdb-dev/receipt Thu Mar 12 13:59:33 2020 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="libtdb-dev" -VERSION="1.2.9" +VERSION="1.4.3" CATEGORY="development" -SHORT_DESC="devlopment files for libtdb" +SHORT_DESC="Development files for libtdb." MAINTAINER="slaxemulator@gmail.com" LICENSE="LGPL3" -WEB_SITE="http://tdb.samba.org/" -WANTED="libtdb" +WEB_SITE="https://tdb.samba.org/" DEPENDS="libtdb pkg-config" +WANTED="libtdb" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/local/include $fs/usr - cp -a $install/usr/local/lib/pkgconfig $fs/usr/lib + + cp -a $install/usr/local/include $fs/usr + cp -a $install/usr/local/lib/pkgconfig $fs/usr/lib } diff -r b2440f3942f7 -r d00b342c54b5 libtdb/receipt --- a/libtdb/receipt Thu Mar 12 13:38:17 2020 +0100 +++ b/libtdb/receipt Thu Mar 12 13:59:33 2020 +0100 @@ -1,34 +1,38 @@ # SliTaz package receipt. PACKAGE="libtdb" -VERSION="1.2.9" +VERSION="1.4.3" CATEGORY="misc" -SHORT_DESC="A Trivia Database similar to GDBM but allows simultaneous commits" +SHORT_DESC="A Trivia Database similar to GDBM but allows simultaneous commits." MAINTAINER="slaxemulator@gmail.com" LICENSE="LGPL3" +WEB_SITE="https://tdb.samba.org/" + SOURCE="tdb" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="http://tdb.samba.org/" -WGET_URL="http://samba.org/ftp/$SOURCE/$TARBALL" +WGET_URL="https://www.samba.org/ftp/$SOURCE/$TARBALL" DEPENDS="" -BUILD_DEPENDS="python-dev libxslt-dev docbook-xsl" +BUILD_DEPENDS="docbook-xsl libxslt-dev py3k-dev" # Rules to configure and make the package. compile_rules() { - cd $src - sed -i 's#python2\.6\([^ ]*\)#python2.7\1 python2.6\1#' configure + # 1.4.3 uses python3 +# sed -i 's#python2\.6\([^ ]*\)#python2.7\1 python2.6\1#' configure # Use system docbook.xsl _manstyle="/usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl" #sed -i "s#http.*xsl#$_manstyle#" tdb.mk - ./configure && make && make install + + ./configure && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/local/lib/*.so* $fs/usr/lib + cp -a $install/usr/local/lib/*.so* $fs/usr/lib }