aboutsummaryrefslogtreecommitdiff
path: root/libs/gdbm
Commit message (Collapse)AuthorAge
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* gdbm: configure with `--without-readline`Alois Klink2022-10-27
| | | | | | | | | | | | | | | | | By default, gdbm configures/builds with readline and curses support if they exist. This can cause race conditions when compiling gdbm and ncurses in parallel, as gdbm may try to link to ncurses when it doesn't exist. This commit forces gdbm to skip using readline/ncurses, since it's unlikely that anybody is using the line-editing feature of gdbm. See [gdbm's README][1] for more info. [1]: https://git.gnu.org.ua/gdbm.git/tree/README?h=v1.21#n50 Signed-off-by: Alois Klink <alois@aloisklink.com>
* gdbm: update to 1.21Rosen Penev2021-09-25
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libs: gdbm: enable/install Berkley DBM compat layerAlexandru Ardelean2021-07-13
| | | | | | | | | | | | | | | Python supports both GNU dbm and Berkley DBM. GNU dbm also has a compatibility layer for Berkeley. The current Berkley DB in OpenWrt is 4.7 and hasn't been updated in ages. It's also pretty big. So, an alternative for Python is to use GNU dbm for both (GNU and Berkley). Also, removing static shared libraries from the build, to encourage the usage of the shared ones. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* gdbm: update to 1.19Rosen Penev2021-02-20
| | | | | | | | Remove upstreamed patch. Use AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gdbm: fix GCC 10 multiple def compilation errorSyrone Wong2020-06-29
| | | | Signed-off-by: Syrone Wong <wong.syrone@gmail.com>
* gdbm: don't build gettext-fullRosen Penev2020-04-18
| | | | | | It's not necessary. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gdbm: Update to 1.18.1Rosen Penev2019-07-03
| | | | | | | | | | Fixes compilation with -Werror=implicit-function-declaration This has received no version updates for over 5 years. Cleaned up Makefile. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* gdbm: add a gettext dependencyFelix Fietkau2016-01-21
| | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org>
* gdbm: fixes build for gettext 1.9John Crispin2015-03-29
| | | | | | the package fails to build on SDK builder2 Signed-off-by: John Crispin <blogic@openwrt.org>
* gdbm: Adopt to SPDX license identifiersMarcel Denia2014-08-18
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* libs/gdbm: Bump copyright noticeMarcel Denia2014-07-06
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* libs/gdbm: Add package descriptionMarcel Denia2014-07-06
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* libs/gdbm: Add myself as maintainerMarcel Denia2014-07-06
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* libs/gdbm: Cleanup some autotools leftoversMarcel Denia2014-07-06
| | | | | | | This prevents usage of (possibly nonexistent)host tools, namely aclocal-1.14. Signed-off-by: Marcel Denia <naoir@gmx.net>
* libs/gdbm: Upgrade to version 1.11Marcel Denia2014-07-06
| | | | Signed-off-by: Marcel Denia <naoir@gmx.net>
* Import of oldpackages/libs/gdbmMarcel Denia2014-07-06
Signed-off-by: Marcel Denia <naoir@gmx.net>