index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-04-20 | Rename gpgsig struct fields for clarity | Dan McGee | |
Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2011-04-20 | Form the signature file location in one place | Dan McGee | |
Since we do this for all cases anyway. Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2011-04-20 | syntax: if/while statements should have no trailing space | Dan McGee | |
This is the standard, and we have had a few of these introduced lately that should not be here. Done with: find -name '*.c' | xargs sed -i -e 's#if (#if(#g' find -name '*.c' | xargs sed -i -e 's#while (#while(#g' Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2011-04-20 | Allow VerifySig to act as a default verification in [options] | Dave Reisner | |
* add _alpm_db_get_sigverify_level * add alpm_option_{get,set}_default_sigverify And set the default verification level to OPTIONAL if not set otherwise. Signed-off-by: Dave Reisner <d@falconindy.com> Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2011-04-20 | style cleanup: cast as (type *) not (type*) | Dave Reisner | |
Signed-off-by: Dave Reisner <d@falconindy.com> Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2011-03-23 | Do not reuse old signature | Allan McRae | |
After updating a database, remove the old signature to prevent it being used in validation if the new signature fails to download. Signed-off-by: Allan McRae <allan@archlinux.org> | |||
2011-03-23 | Refactor signature loading code into common function | Dan McGee | |
We can use this for both standalone package signatures as well as standalone database signatures. Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2011-03-23 | Add functions for verifying database signature | Allan McRae | |
Add a pmpgpsig_t struct to the database entry struct and functions for the lazy loading of database signatures. Add a function for checking database signatures, reusing (and generalizing) the code currently used for checking package signatures. TODO: The code for reading in signature files from the filesystem is duplicated for local packages and database and needs refactoring. Signed-off-by: Allan McRae <allan@archlinux.org> | |||
2011-03-23 | Report output from signature checking to debug log | Allan McRae | |
Move the (possibly still temporary) output generated during signature checking into the --debug output. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2011-03-23 | Added gpg verification options per repo to the config file. | Xavier Chantry | |
Once we do this, add support for VerifySig to pactest. We just check if the repo name contains Always, Never or Optional to determine the value of VerifySig. The default is Never. pacman uses Always by default but this is not suitable for pactest. Original-work-by: shankar <jatheendra@gmail.com> Signed-off-by: Xavier Chantry <shiningxc@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2011-03-23 | Integrate GPGME into libalpm | Dan McGee | |
Signed-off-by: Dan McGee <dan@archlinux.org> |