summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* apk-tools-2.0_rc2v2.0_rc2Timo Teras2009-08-101-1/+1
|
* db, pkg: fix package verification during installationTimo Teras2009-08-102-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.
* state: installed package does not need downloadingTimo Teras2009-08-061-3/+2
| | | | so do not skip it even if it's no longer available.
* add: world needs to be updated before state instantiationTimo Teras2009-08-061-2/+1
| | | | | otherwise old world deps are used and unintended results will happen.
* state: bug fixTimo Teras2009-08-062-3/+3
|
* state: do not look into world in state_newTimo Teras2009-08-062-21/+25
| | | | | instead enforce world dependencies when the package name is first referenced upon.
* db: prefer local repositories, and implement --no-networkTimo Teras2009-08-068-29/+67
| | | | this helps boots sequence when network is not available.
* state: indent package listsTimo Teras2009-08-063-19/+25
|
* state, update: fixesTimo Teras2009-08-062-2/+4
|
* all: implement database open optionsTimo Teras2009-08-0617-220/+189
| | | | so user can override trusted keys directory and repositories file.
* db: make missing index non-fatalTimo Teras2009-08-061-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).
* audit: do not load repositoriesTimo Teras2009-08-061-2/+5
| | | | | they are not needed, and cause errors if signing keys are not present.
* state: ignore missing world dependencies with --force and --quietTimo Teras2009-08-061-1/+1
|
* db: command line repositories take preferenceTimo Teras2009-08-061-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.
* audit: fix --backupTimo Teras2009-08-061-1/+4
|
* info: fix a --exists to work if the name is non-existantTimo Teras2009-08-051-0/+3
|
* apk-tools-2.0_rc1v2.0_rc1Timo Teras2009-08-051-2/+1
|
* build: update make rulesTimo Teras2009-08-051-1/+8
|
* info: support dependency style tests in package existance checkingTimo Teras2009-08-051-11/+18
|
* io: flag for following symlinks on fstatTimo Teras2009-08-053-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.
* fetch: --link is -L for short, not -lTimo Teras2009-08-051-1/+1
|
* state: world might be emptyTimo Teras2009-08-051-1/+1
| | | | so do not choke on it.
* index: root is needed for signing keysTimo Teras2009-08-051-1/+1
| | | | | so initialize db with a root, but avoid loading state or repositories.
* db: support "replaces" directive (fixes #113)Timo Teras2009-08-043-15/+58
| | | | | it will allow to overwrite files owned by some other packages to get upgrades right (e.g. when splitting or renaming packages)
* fix: new applet to reinstall and fix packageTimo Teras2009-08-045-20/+143
| | | | | also makes it possibly to upgrade package without adding it to top-level deps. fixes #69.
* state: fix world dependencies to be honored alwaysTimo Teras2009-08-046-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.
* db: return hard error if repository opening failsTimo Teras2009-08-041-6/+10
| | | | | otherwise we can accept unsigned repositories, and install bad packages.
* del: add '-r' to remove top-level dependencies recursivelyTimo Teras2009-08-043-11/+46
| | | | | and by default just update the world, and dump a lost of packages that are not removed. fixes #47.
* archive: compile fixNatanael Copa2009-08-031-0/+1
| | | | We need the define for uint16
* db: jump through hoops to get checksums for hardlinksTimo Teras2009-07-311-18/+60
| | | | should really fix abuild-tar.
* audit: sanitize --systemTimo Teras2009-07-311-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.
* db: load cache's installed index only if cache is activeTimo Teras2009-07-311-4/+6
| | | | | other wise cache_fd points to var/lib/apk and contains the real installed db causing it to be loaded twice.
* apk: use *at instead of chdir+normal file syscallTimo Teras2009-07-3119-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.
* io: fix corruption of big files on mmap writeTimo Teras2009-07-311-14/+13
| | | | | remember to increment destination pointer; and munmap the proper base address.
* db: allow update of untrusted indexNatanael Copa2009-07-301-1/+2
|
* verify: report missing files rather than segfaultNatanael Copa2009-07-301-0/+7
|
* db: fix checksum storing to dbTimo Teras2009-07-302-6/+9
| | | | | also take precautions in audit code if the db is missing the checksum.
* apk-tools-2.0_pre17apk-tools-2.0_pre17Timo Teras2009-07-301-1/+1
|
* audit: protection mask for "symlinks only"Timo Teras2009-07-304-7/+27
| | | | and use it for /etc/init.d by default. fixes #99.
* io: keep static pointer to copying bufferTimo Teras2009-07-301-6/+6
| | | | so we avoid some malloc/free calls.
* io: fix mmap writing to actually workTimo Teras2009-07-302-5/+7
| | | | | | | apparently it needs to have both PROT_READ and PROT_WRITE. and it needs to be MAP_SHARED for the writing to be effective. oh, and the data needs to be preallocated with ftruncate; otherwise, one gets SIGBUS.
* apk-tools-2.0_pre16apk-tools-2.0_pre16Timo Teras2009-07-291-1/+1
|
* db: fix protected directory handling (fixes #89)Timo Teras2009-07-291-5/+10
| | | | | | we don't want to do checksumming of existing files unless it's in a protected directory. also, we keep the original file if it's *modified*.
* io: use mmap to write archive entries to diskTimo Teras2009-07-291-11/+28
| | | | avoids some copying and system calls.
* tar: make checksumming of inner files conditionalTimo Teras2009-07-295-12/+19
| | | | | and force checksumming only when unpacking archive. otherwise it's extra computation for nothing.
* build: make install depend on main targetsTimo Teras2009-07-293-4/+3
| | | | | apparently the double colon rule dependencies affect only the specific rule-set.
* tar: don't call digest finalization twiceTimo Teras2009-07-291-0/+3
| | | | | otherwise bad things happens. avoid this be checking end of stream at the beginning of read.
* apk-tools-2.0_pre15apk-tools-2.0_pre15Timo Teras2009-07-241-1/+1
|
* add, fetch: make handling of special options more logicalTimo Teras2009-07-242-41/+44
|
* apk: add -i/--interactive option (fixes #60)Timo Teras2009-07-243-1/+8
| | | | | and use that to figure if questions are allowed or not instead of the verbosity level.