Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-12-14 | lua: remove features.h | Ariadne Conill | 1 | -1/+0 | |
features.h is a GNU-specific header, and is not required for POSIX-compatible code macOS does not provide features.h ref #10794 | |||||
2020-05-19 | make the atom functions not use global state | Timo Teräs | 1 | -1/+0 | |
This greatly helps with memory management on applications that may want to daemonize and open/close database several times. Also the lifetime and "owner" of memory for all data is now explicitly bound to owning struct apk_database, which might be helpful when writing language bindings. As side effect, the interned "atoms" are unique only within what apk_database, so comparing packages from different apk_database may not work as expected. Fixes #10697 | |||||
2020-05-07 | use SPDX-License-Identifier in source files | TBK | 1 | -0/+9 | |
2020-02-04 | remove apk_time() as it is causing problems with shared objects | Timo Teräs | 1 | -5/+0 | |
Instead, to make sure test mode produces same output, redefine time() for the test mode binary. Reverts parts of 0b82bcc53e60. | |||||
2019-12-30 | lua: fix build and update to lua5.3 | Timo Teräs | 1 | -15/+20 | |
Fixes #8360 | |||||
2017-04-28 | db: separate init from open | Kaarle Ritvanen | 1 | -0/+1 | |
2016-07-22 | lua: remove unused reg_apk_db_meta_methods | Timo Teräs | 1 | -5/+0 | |
2013-06-28 | various: applet help text and comment fixes | Dubiousjim | 1 | -1/+1 | |
Acked-by: Natanael Copa <ncopa@alpinelinux.org> | |||||
2013-06-15 | lua: use apk_dep_analyze | Timo Teräs | 1 | -3/+2 | |
and remove the now unused apk_dep_is_materialized_or_provided which was superceded by apk_dep_analyze. | |||||
2013-06-13 | lua: support for lua 5.2 | Natanael Copa | 1 | -15/+32 | |
2012-02-28 | lua: fix bindings, and build by default | Timo Teräs | 1 | -10/+3 | |
2012-01-17 | lua: fix compile error | Timo Teräs | 1 | -1/+1 | |
2012-01-12 | db: support line feed as 'world' dependency separator | Timo Teräs | 1 | -1/+1 | |
* default writing the world with spaces if a space is found (for backwards compatibility) for now | |||||
2011-10-20 | lua: adapt to new API | Natanael Copa | 1 | -3/+4 | |
Use new apk_blob_pull_dep instead of the old apk_dep_from_blob | |||||
2011-09-15 | lua: implement iterator with installed packages | Natanael Copa | 1 | -5/+43 | |
2011-09-15 | lua: implement exists/is_installed | Natanael Copa | 1 | -0/+33 | |
Tests whether given package string is installed | |||||
2011-09-15 | lua: init fixes | Natanael Copa | 1 | -0/+3 | |
- call apk_atom_init() - if no open flag is specified, then default to read-only. | |||||
2011-09-15 | lua: implement who_owns | Natanael Copa | 1 | -0/+41 | |
2011-09-15 | lua: open and close db | Natanael Copa | 1 | -2/+50 | |
2011-09-15 | lua: initial db_open | Natanael Copa | 1 | -1/+75 | |
so far we just parse the db options | |||||
2011-09-14 | lua: remove unneeded global vars | Natanael Copa | 1 | -4/+0 | |
2011-09-14 | lua: typecast apk blob len | Natanael Copa | 1 | -6/+13 | |
So we can build with -Werror | |||||
2010-06-11 | lua: initial lua module | Natanael Copa | 1 | -0/+64 | |