aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* apk-tools-2.0.6v2.0.6Timo Teräs2010-09-231-1/+1
|
* archive: resolve uid, gid for file informationTimo Teräs2010-09-231-6/+3
| | | | | the uid and gid are used in other places than just changing file ownership on extraction.
* db: optionally remove dirs when unrefNatanael Copa2010-09-221-13/+15
| | | | | | | | | | We want remove dirs when they are unreferenced so we remove all dirs on apk del, but we don't want remove dirs when closing database. So we make removing dir optional when unreferencing it. This partially reverts commit c7ffc96a16c6963fe0a07be7ee75e8f1f7426882. fixes #406
* Fix building on eglibcNatanael Copa2010-08-304-0/+4
| | | | Seems like recent eglibc requires that you include sys/stat.h
* static build: do not use openssl enginesTimo Teräs2010-06-304-1/+8
| | | | | We want minimal static build. And this now also breaks with our openssl since it tries to automatically dlopen some of the engine modules.
* Makefile: do not require lua pkgconfig unless you intend build lua moduleNatanael Copa2010-06-161-5/+6
|
* apk-tools-2.0.5v2.0.5Timo Teräs2010-06-161-1/+1
|
* test: check if upgrade works when package is missing in repoNatanael Copa2010-06-151-0/+7
|
* test: dont run sh manually but respect #!/bin/sh in each testNatanael Copa2010-06-159-10/+13
| | | | That way we can set sh options case by case
* upgrade: warn (do not fail) on missing top-level package namesTimo Teräs2010-06-151-3/+23
| | | | We we can upgrade rest of system just fine then.
* state: handle properly packages which are installedTimo Teräs2010-06-151-0/+3
| | | | | | Installed package does not need to be checked for availability. Account for packages missing if they get pruned out due to installability check.
* apk-tools-2.0.4v2.0.4Timo Teräs2010-06-151-1/+1
|
* test: initial testsuiteNatanael Copa2010-06-1517-0/+422
|
* db: reinitialize trigger_pkg_list node after deletionTimo Teräs2010-06-151-0/+1
| | | | | The trigger list can be reused after it's cleared, make sure the list node is initialized all the time.
* Makefile: Don't build or install the libapk and lua module by defaultNatanael Copa2010-06-141-10/+29
| | | | | | | | | | | | | | | | | | | | Make the libapk and lua module optional at buildtime and off by default. This is because enabling libapk requires that mkinitfs also copies the libapk.so or the initramfs will not work. To build libapk: make LIBAPK=yes To build lua module (will enable LIBAPK=yes): make LUAAPK To link apk to libapk (will enable LIBAPK=yes): make SHARED_LIBAPK=yes All the above applies to make install target as well.
* db: --simulate never needs write access to dbTimo Teräs2010-06-121-0/+4
| | | | | So open the db in read-only mode instead. This allows --simulate to be run as non-root user.
* archive: honor username/groupname instead of uid/gidTimo Teräs2010-06-125-1/+140
| | | | Take the uid/gid from passwd and group.
* various: use O_CLOEXEC and add some error checkingTimo Teräs2010-06-116-31/+30
|
* build: fix CFLAGS, and use pkg-config for luaTimo Teräs2010-06-111-5/+4
|
* print: clean up after copy-pasteNatanael Copa2010-06-113-5/+2
|
* db: make apk_wait a part of dboptsNatanael Copa2010-06-113-8/+8
|
* lua: initial lua moduleNatanael Copa2010-06-113-3/+76
|
* First steps for libapkNatanael Copa2010-06-1125-77/+165
|
* db: do not free trigger list after package is unpackedNatanael Copa2010-06-101-6/+6
| | | | | | | | The triggers are read during apk_db_unpack_pkg(). If we delete the triggers list after then unpack we delete the triggers which is not what we want. This fixes bug introduced in ce3cf8bff901e7fcacbca640ffedaeea2b3bdf7f
* apk-tools-2.0.3Timo Teräs2010-06-081-1/+1
|
* info: fix usage of arraysTimo Teräs2010-06-081-4/+4
|
* state: fix error printingTimo Teräs2010-06-082-2/+6
|
* db: fix usage of apk_name_array in install_ctxTimo Teräs2010-06-071-4/+4
| | | | | got broken to the previous array cleanup and grepping struct definition only from headers.
* all: rework how arrays workTimo Teräs2010-06-0514-121/+137
| | | | | | | | | | Instead of having a null pointer, use a dummy array which just says the array is empty. This helps in multiple places of the code which would otherwise need explicitly need to check first if the array exists. This has been cause of multiple seg.faults in the past as the array check is easily omitted. This also removes (or fixes) all existing checks accordingly.
* state: fix a crash in error printingTimo Teräs2010-06-031-1/+1
|
* db, pkg: fix triggers related crashTimo Teräs2010-06-012-8/+11
| | | | clean up the triggers properly, in proper order.
* state: print missing package names on errorTimo Teräs2010-06-012-8/+23
| | | | | especially important if the package requested from command line does not exist. otherwise we would not print an error at all.
* state: improve error messages from dependency failuresTimo Teräs2010-06-0110-88/+197
| | | | | Print more information why installation changeset calculation failed. Fixes #187.
* state: modify reinstallation printsTimo Teräs2010-05-271-8/+11
| | | | | To print upgrading if package is actually being changed instead of pure reinstall.
* state: show changed packages as upgradesTimo Teräs2010-05-271-2/+10
| | | | | If version is equal, but package contents are different we should show the package being upgraded.
* state: fix deletion of obsoleted dependenciesTimo Teräs2010-05-271-1/+2
| | | | | | | In addition to autocleaning dependencies on deletion, we need to autoclean the old package on upgrade too. This is to make sure that obsoleted dependencies (existed previously, but not in new package) are removed where appropriate.
* package: don't leak signing key file fdTimo Teräs2010-05-261-1/+1
| | | | | openssl BIO does not close the fd unless we explicitly tell it to do so.
* search: add search for reverse dependencies in indexTimo Teräs2010-05-191-57/+91
| | | | So it'll be easier to rebuild affected packages. Fixes #349.
* upgrade: reset versioned deps in world when doing upgrade -aNatanael Copa2010-05-121-2/+7
| | | | | | | | | | | Doing "apk add file.apk" adds a versioned dependency to allow downgrading, and sticky version. Most often this is to install single packages from newer repository. So it would make sense to reset them to non-versioned if doing: apk upgrade -a fixes #346
* info: fix querying of removed, but referenced packagesTimo Teras2010-05-051-1/+1
| | | | | Check that package name has packages associated with it before dereferencing the pointer. Fixes #345.
* apk-tools-2.0.2Timo Teras2010-03-161-1/+1
|
* state: virtual packages are always installableTimo Teras2010-03-151-0/+2
| | | | | they do not have any package associated. this is indicated by package with zero installed_size.
* state: check package availability alwaysTimo Teras2010-03-101-7/+16
| | | | | | even if we have only one package as candidate, we need to check it's availability. otherwise we can endup with bad changeset referring to unavailable package.
* apk-tools-2.0.1Timo Teras2010-03-041-1/+1
|
* fetch: do not include installed non-repository files in searchTimo Teras2010-03-043-13/+19
| | | | | we do not create mirror repositories from other valid repositories, not from what was installed locally.
* cache: do not download files existing in local repositoryTimo Teras2010-03-011-1/+1
| | | | wget:ing local files results in error and is useless.
* db: fix previous commitTimo Teras2010-03-011-0/+1
| | | | add the missing variable.
* db: read also non-repository package index if reading repository indexesTimo Teras2010-03-011-8/+8
| | | | | otherwise regeneration of non-repository index might go wrong or we might delete too many files from cache when doing 'cache clean'.
* Merge branch 'master' into progNatanael Copa2010-02-261-3/+5
|\
| * add: print all failing packages instead of only firstNatanael Copa2010-02-261-3/+5
| | | | | | | | We want see all packages that fails to install and not only the first