# HG changeset patch # User Hans-G?nter Theisgen # Date 1573057228 -3600 # Node ID acc374c091ecbfaec1fcc4eff40721c8d26424ab # Parent ab73a80ed2b70a8793c06e37293495fedc94f122 updated xapian and xapian-dev (1.2.19 -> 1.4.13) diff -r ab73a80ed2b7 -r acc374c091ec xapian-dev/receipt --- a/xapian-dev/receipt Wed Nov 06 16:43:31 2019 +0100 +++ b/xapian-dev/receipt Wed Nov 06 17:20:28 2019 +0100 @@ -1,22 +1,24 @@ # SliTaz package receipt. PACKAGE="xapian-dev" -VERSION="1.2.19" +VERSION="1.4.13" CATEGORY="development" -SHORT_DESC="An Open Source Search Engine Library." +SHORT_DESC="An Open Source Search Engine Library - development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" WEB_SITE="https://xapian.org/" -WANTED="xapian" DEPENDS="xapian" +WANTED="xapian" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/share - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/cmake $fs/usr/lib - cp -a $install/usr/share/aclocal $fs/usr/share + mkdir -p $fs/usr/lib + mkdir -p $fs/usr/share + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/cmake $fs/usr/lib + cp -a $install/usr/share/aclocal $fs/usr/share } diff -r ab73a80ed2b7 -r acc374c091ec xapian/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xapian/description.txt Wed Nov 06 17:20:28 2019 +0100 @@ -0,0 +1,8 @@ +Xapian is an Open Source Search Engine Library, released under the GPL v2+. +It's written in C++, with bindings to allow use from Perl, Python 2, Python 3, +PHP 5, PHP 7, Java, Tcl, C#, Ruby, Lua, Erlang, Node.js and R (so far!) + +Xapian is a highly adaptable toolkit which allows developers to easily add +advanced indexing and search facilities to their own applications. +It has built-in support for several families of weighting models and also +supports a rich set of boolean query operators. diff -r ab73a80ed2b7 -r acc374c091ec xapian/receipt --- a/xapian/receipt Wed Nov 06 16:43:31 2019 +0100 +++ b/xapian/receipt Wed Nov 06 17:20:28 2019 +0100 @@ -1,29 +1,36 @@ # SliTaz package receipt. PACKAGE="xapian" -VERSION="1.2.19" +VERSION="1.4.13" CATEGORY="office" SHORT_DESC="An Open Source Search Engine Library." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://xapian.org/" + TARBALL="$PACKAGE-core-$VERSION.tar.xz" -WEB_SITE="https://xapian.org/" -WGET_URL="http://oligarchy.co.uk/$PACKAGE/$VERSION/$TARBALL" +WGET_URL="https://oligarchy.co.uk/$PACKAGE/$VERSION/$TARBALL" -DEPENDS="util-linux-uuid zlib gcc-lib-base" -BUILD_DEPENDS="util-linux-uuid-dev zlib-dev" +DEPENDS="gcc83-lib-base util-linux-uuid zlib" +BUILD_DEPENDS="gcc83 util-linux-uuid-dev zlib-dev" # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr $CONFIGURE_ARGS && - make && make DESTDIR=$DESTDIR install + ./configure \ + CC=gcc-83 \ + CXX=g++-83 \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $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 + cp -a $install/usr/lib/*.so* $fs/usr/lib }