summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-08-13info: clean ups, print triggers (ref #45)Timo Teras1-96/+113
2009-08-12db: fix some (unimportant) memory leaksTimo Teras1-1/+9
2009-08-12db, pkg: separate structure for fields of installed packagesTimo Teras9-203/+292
this makes the database package entry smaller, and we propbably get more fields to installed_package later too. this cleans up the way scripts are stored and is a preparation for supporting triggers. some parsing for trigger meta-data. ref #45.
2009-08-12io: better error handling when writing stuff outTimo Teras5-45/+106
also have the output stream support writing to temporary file and do renameat/unlinkat on close depending on if all writes succeeded or not.
2009-08-11archive: update for new place of checksum in tar headerTimo Teras2-19/+26
and take checksums for symlinks too.
2009-08-11db, audit: audit symlinks (by hash of the link target)Timo Teras5-10/+34
2009-08-11db: fix checking of non-repository files from cacheTimo Teras1-13/+32
otherwise, non repository files present in cache are not considered for installation (e.g. when booting from cdrom).
2009-08-11pkg, db: execute scripts from /var/cache/misc (fixes #129)Timo Teras2-5/+12
2009-08-11db: fix previous commitTimo Teras1-2/+2
2009-08-11db: ignore empty lines in /etc/apk/repositoriesNatanael Copa1-1/+1
fixes #127
2009-08-10apk-tools-2.0_rc2v2.0_rc2Timo Teras1-1/+1
2009-08-10db, pkg: fix package verification during installationTimo Teras2-4/+11
some hooks to package verification code were missing causing the verification to not be done (causing pre-script to be not run). fixes #124, #126.
2009-08-06state: installed package does not need downloadingTimo Teras1-3/+2
so do not skip it even if it's no longer available.
2009-08-06add: world needs to be updated before state instantiationTimo Teras1-2/+1
otherwise old world deps are used and unintended results will happen.
2009-08-06state: bug fixTimo Teras2-3/+3
2009-08-06state: do not look into world in state_newTimo Teras2-21/+25
instead enforce world dependencies when the package name is first referenced upon.
2009-08-06db: prefer local repositories, and implement --no-networkTimo Teras8-29/+67
this helps boots sequence when network is not available.
2009-08-06state: indent package listsTimo Teras3-19/+25
2009-08-06state, update: fixesTimo Teras2-2/+4
2009-08-06all: implement database open optionsTimo Teras17-220/+189
so user can override trusted keys directory and repositories file.
2009-08-06db: make missing index non-fatalTimo Teras1-1/+1
it's a warning not an error to have non-existant repository. bad signature means tampering; but we might want to just ignore those. this is especially important if we have http repositories and we are bootstrapping (without network).
2009-08-06audit: do not load repositoriesTimo Teras1-2/+5
they are not needed, and cause errors if signing keys are not present.
2009-08-06state: ignore missing world dependencies with --force and --quietTimo Teras1-1/+1
2009-08-06db: command line repositories take preferenceTimo Teras1-75/+70
over the ones in config file. also remove the apk_root == NULL check as this cannot happen anymore. a valid root is always required.
2009-08-06audit: fix --backupTimo Teras1-1/+4
2009-08-05info: fix a --exists to work if the name is non-existantTimo Teras1-0/+3
2009-08-05apk-tools-2.0_rc1v2.0_rc1Timo Teras1-2/+1
2009-08-05build: update make rulesTimo Teras1-1/+8
2009-08-05info: support dependency style tests in package existance checkingTimo Teras1-11/+18
2009-08-05io: flag for following symlinks on fstatTimo Teras3-5/+11
usually we are interested on the actual file's length. but audit is interested about the link. so add a flag for this and use it in audit.
2009-08-05fetch: --link is -L for short, not -lTimo Teras1-1/+1
2009-08-05state: world might be emptyTimo Teras1-1/+1
so do not choke on it.
2009-08-05index: root is needed for signing keysTimo Teras1-1/+1
so initialize db with a root, but avoid loading state or repositories.
2009-08-04db: support "replaces" directive (fixes #113)Timo Teras3-15/+58
it will allow to overwrite files owned by some other packages to get upgrades right (e.g. when splitting or renaming packages)
2009-08-04fix: new applet to reinstall and fix packageTimo Teras5-20/+143
also makes it possibly to upgrade package without adding it to top-level deps. fixes #69.
2009-08-04state: fix world dependencies to be honored alwaysTimo Teras6-39/+117
previously they might have been skipped on certain situations. this also fixes some other reverse dependency enforcements and implements new "pending" state for locked name.
2009-08-04db: return hard error if repository opening failsTimo Teras1-6/+10
otherwise we can accept unsigned repositories, and install bad packages.
2009-08-04del: add '-r' to remove top-level dependencies recursivelyTimo Teras3-11/+46
and by default just update the world, and dump a lost of packages that are not removed. fixes #47.
2009-08-03archive: compile fixNatanael Copa1-0/+1
We need the define for uint16
2009-07-31db: jump through hoops to get checksums for hardlinksTimo Teras1-18/+60
should really fix abuild-tar.
2009-07-31audit: sanitize --systemTimo Teras1-32/+79
make the system audit compare only installed files, instead of scanning the whole file system. also make it print only package names with -q, so reinstalling modified packages becomes easy.
2009-07-31db: load cache's installed index only if cache is activeTimo Teras1-4/+6
other wise cache_fd points to var/lib/apk and contains the real installed db causing it to be loaded twice.
2009-07-31apk: use *at instead of chdir+normal file syscallTimo Teras19-341/+360
this way we never change cwd, and relative filenames are always parsed consistently. this also helps filename construction in many places. this patch also changes '--root' to override location of all configuration to be in the new root. previously it depended on the file which one was used.
2009-07-31io: fix corruption of big files on mmap writeTimo Teras1-14/+13
remember to increment destination pointer; and munmap the proper base address.
2009-07-30db: allow update of untrusted indexNatanael Copa1-1/+2
2009-07-30verify: report missing files rather than segfaultNatanael Copa1-0/+7
2009-07-30db: fix checksum storing to dbTimo Teras2-6/+9
also take precautions in audit code if the db is missing the checksum.
2009-07-30apk-tools-2.0_pre17apk-tools-2.0_pre17Timo Teras1-1/+1
2009-07-30audit: protection mask for "symlinks only"Timo Teras4-7/+27
and use it for /etc/init.d by default. fixes #99.
2009-07-30io: keep static pointer to copying bufferTimo Teras1-6/+6
so we avoid some malloc/free calls.