Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-08-05 | info: fix a --exists to work if the name is non-existant | Timo Teras | 1 | -0/+3 | |
2009-08-05 | apk-tools-2.0_rc1v2.0_rc1 | Timo Teras | 1 | -2/+1 | |
2009-08-05 | build: update make rules | Timo Teras | 1 | -1/+8 | |
2009-08-05 | info: support dependency style tests in package existance checking | Timo Teras | 1 | -11/+18 | |
2009-08-05 | io: flag for following symlinks on fstat | Timo Teras | 3 | -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-05 | fetch: --link is -L for short, not -l | Timo Teras | 1 | -1/+1 | |
2009-08-05 | state: world might be empty | Timo Teras | 1 | -1/+1 | |
so do not choke on it. | |||||
2009-08-05 | index: root is needed for signing keys | Timo Teras | 1 | -1/+1 | |
so initialize db with a root, but avoid loading state or repositories. | |||||
2009-08-04 | db: support "replaces" directive (fixes #113) | Timo Teras | 3 | -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-04 | fix: new applet to reinstall and fix package | Timo Teras | 5 | -20/+143 | |
also makes it possibly to upgrade package without adding it to top-level deps. fixes #69. | |||||
2009-08-04 | state: fix world dependencies to be honored always | Timo Teras | 6 | -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-04 | db: return hard error if repository opening fails | Timo Teras | 1 | -6/+10 | |
otherwise we can accept unsigned repositories, and install bad packages. | |||||
2009-08-04 | del: add '-r' to remove top-level dependencies recursively | Timo Teras | 3 | -11/+46 | |
and by default just update the world, and dump a lost of packages that are not removed. fixes #47. | |||||
2009-08-03 | archive: compile fix | Natanael Copa | 1 | -0/+1 | |
We need the define for uint16 | |||||
2009-07-31 | db: jump through hoops to get checksums for hardlinks | Timo Teras | 1 | -18/+60 | |
should really fix abuild-tar. | |||||
2009-07-31 | audit: sanitize --system | Timo Teras | 1 | -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-31 | db: load cache's installed index only if cache is active | Timo Teras | 1 | -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-31 | apk: use *at instead of chdir+normal file syscall | Timo Teras | 19 | -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-31 | io: fix corruption of big files on mmap write | Timo Teras | 1 | -14/+13 | |
remember to increment destination pointer; and munmap the proper base address. | |||||
2009-07-30 | db: allow update of untrusted index | Natanael Copa | 1 | -1/+2 | |
2009-07-30 | verify: report missing files rather than segfault | Natanael Copa | 1 | -0/+7 | |
2009-07-30 | db: fix checksum storing to db | Timo Teras | 2 | -6/+9 | |
also take precautions in audit code if the db is missing the checksum. | |||||
2009-07-30 | apk-tools-2.0_pre17apk-tools-2.0_pre17 | Timo Teras | 1 | -1/+1 | |
2009-07-30 | audit: protection mask for "symlinks only" | Timo Teras | 4 | -7/+27 | |
and use it for /etc/init.d by default. fixes #99. | |||||
2009-07-30 | io: keep static pointer to copying buffer | Timo Teras | 1 | -6/+6 | |
so we avoid some malloc/free calls. | |||||
2009-07-30 | io: fix mmap writing to actually work | Timo Teras | 2 | -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. | |||||
2009-07-29 | apk-tools-2.0_pre16apk-tools-2.0_pre16 | Timo Teras | 1 | -1/+1 | |
2009-07-29 | db: fix protected directory handling (fixes #89) | Timo Teras | 1 | -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*. | |||||
2009-07-29 | io: use mmap to write archive entries to disk | Timo Teras | 1 | -11/+28 | |
avoids some copying and system calls. | |||||
2009-07-29 | tar: make checksumming of inner files conditional | Timo Teras | 5 | -12/+19 | |
and force checksumming only when unpacking archive. otherwise it's extra computation for nothing. | |||||
2009-07-29 | build: make install depend on main targets | Timo Teras | 3 | -4/+3 | |
apparently the double colon rule dependencies affect only the specific rule-set. | |||||
2009-07-29 | tar: don't call digest finalization twice | Timo Teras | 1 | -0/+3 | |
otherwise bad things happens. avoid this be checking end of stream at the beginning of read. | |||||
2009-07-24 | apk-tools-2.0_pre15apk-tools-2.0_pre15 | Timo Teras | 1 | -1/+1 | |
2009-07-24 | add, fetch: make handling of special options more logical | Timo Teras | 2 | -41/+44 | |
2009-07-24 | apk: add -i/--interactive option (fixes #60) | Timo Teras | 3 | -1/+8 | |
and use that to figure if questions are allowed or not instead of the verbosity level. | |||||
2009-07-24 | db: fix repository write locking | Timo Teras | 1 | -4/+4 | |
2009-07-24 | pkg: remove implicit bb dependency when install script is present | Timo Teras | 1 | -14/+0 | |
this dependency is now inserted automatically by abuild. | |||||
2009-07-24 | db: increase required verbosity for filename prints | Timo Teras | 1 | -6/+6 | |
2009-07-24 | db: remove APK_NAME_VIRTUAL flag | Timo Teras | 3 | -3/+2 | |
use the package 'installed_size' == 0 as a test instead for dependency only packages. | |||||
2009-07-24 | db: create cache index with non-repository packages | Timo Teras | 3 | -67/+122 | |
this enables virtual packages and files specified from command line to work on non-harddisk installs. | |||||
2009-07-23 | archive: append .apk-new to hard link targets | Natanael Copa | 1 | -1/+5 | |
Otherwise will link(2) fail since it does not exist. | |||||
2009-07-23 | index: fully process archive when reading index for signature check | Timo Teras | 1 | -5/+5 | |
can't cancel an index reading or we lose signature checking. | |||||
2009-07-23 | index: more informative error message | Timo Teras | 4 | -10/+16 | |
when failed to load an existing index. | |||||
2009-07-22 | apk: add --purge option (fixes #61) | Timo Teras | 3 | -1/+12 | |
and do not remove modified configuration files unless --purge is specified. | |||||
2009-07-22 | audit: add --system option | Timo Teras | 1 | -15/+21 | |
to check system files for changes. | |||||
2009-07-22 | signing: verify and generate identity | Timo Teras | 3 | -2/+9 | |
fixes verification of non-repository packages while installing them. this is final thing needed for full signing support (fixes #46). | |||||
2009-07-22 | add: fixes to installing non-repository package | Timo Teras | 4 | -5/+27 | |
make sure cache is enabled on non-permanent rootfs setups. some optimizations and fixes too. | |||||
2009-07-22 | pkg: cleanup the signing code | Timo Teras | 5 | -99/+90 | |
smaller callback and less cases to check. also reintroduce the oneshot digest flag, hopefully correct this time. | |||||
2009-07-22 | state: fix previous commit to show OK when everything is ok | Timo Teras | 1 | -1/+1 | |
2009-07-22 | state: commit fdb changes even on error | Timo Teras | 1 | -7/+9 | |
we might have done already something. |