# HG changeset patch # User Hans-G?nter Theisgen # Date 1646057219 -3600 # Node ID c8515a1a219e2d9e78981c041cd230c45f0e2462 # Parent 85ce080d4127c0d59dd7b751a037794bbec064be updated gdbm and gdbm-dev (1.18.1 -> 1.23) diff -r 85ce080d4127 -r c8515a1a219e gdbm-dev/receipt --- a/gdbm-dev/receipt Mon Feb 28 14:51:19 2022 +0100 +++ b/gdbm-dev/receipt Mon Feb 28 15:06:59 2022 +0100 @@ -1,20 +1,20 @@ # SliTaz package receipt. PACKAGE="gdbm-dev" -VERSION="1.18.1" +VERSION="1.23" CATEGORY="development" -SHORT_DESC="GNU database indexing library development files." +SHORT_DESC="GNU database indexing library - development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3" WEB_SITE="https://www.gnu.org/software/gdbm" WANTED="gdbm" + HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.a $fs/usr/lib - cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_files *.*a } diff -r 85ce080d4127 -r c8515a1a219e gdbm/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gdbm/description.txt Mon Feb 28 15:06:59 2022 +0100 @@ -0,0 +1,16 @@ +GNU dbm (or GDBM, for short) is a library of database functions that +use extensible hashing and work similar to the standard UNIX dbm. +These routines are provided to a programmer needing to create and +manipulate a hashed database. + +The basic use of GDBM is to store key and data pairs in a data file. +Each key must be unique and each key is paired with only one data item. + +The library provides primitives for storing key and data pairs, +searching and retrieving the data by its key and deleting a key along +with its data. +It also support sequential iteration over all key and data pairs in +a database. + +For compatibility with programs using old UNIX dbm function, the package +also provides traditional dbm and ndbm interfaces diff -r 85ce080d4127 -r c8515a1a219e gdbm/receipt --- a/gdbm/receipt Mon Feb 28 14:51:19 2022 +0100 +++ b/gdbm/receipt Mon Feb 28 15:06:59 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="gdbm" -VERSION="1.18.1" +VERSION="1.23" CATEGORY="misc" SHORT_DESC="GNU database indexing library." MAINTAINER="pascal.bellard@slitaz.org" @@ -28,13 +28,12 @@ -e 's/BINGRP = bin/BINGRP = root/' Makefile.in ./configure $CONFIGURE_ARGS && - make -j 1 && - make INSTALL_ROOT=$DESTDIR install + make && + make install INSTALL_ROOT=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }