Merge branch 'maint'
This commit is contained in:
commit
369c5aa7dd
4 changed files with 13 additions and 4 deletions
|
@ -25,6 +25,10 @@ build environment.
|
|||
NOTE: This does not guarantee that all package Makefiles will use your exported
|
||||
variables. Some of them are non-standard.
|
||||
|
||||
The system-wide configuration file is found in {sysconfdir}/makepkg.conf.
|
||||
Individual options can be overridden (or added to) on a per user basis in
|
||||
~/.makepkg.conf.
|
||||
|
||||
The default file is fairly well commented, so it may be easiest to simply
|
||||
follow directions given there for customization.
|
||||
|
||||
|
|
|
@ -401,9 +401,6 @@ system upgrade and install/upgrade the foo package in the same operation.
|
|||
will force a refresh of all package lists even if they appear to be up
|
||||
to date.
|
||||
|
||||
*\--needed*::
|
||||
Do not reinstall the targets that are already up to date.
|
||||
|
||||
|
||||
Handling Config Files[[HCF]]
|
||||
----------------------------
|
||||
|
|
|
@ -530,6 +530,11 @@ int _alpm_gpgme_checksig(alpm_handle_t *handle, const char *path,
|
|||
string_validity(gpgsig->validity),
|
||||
gpgme_strerror(gpgsig->validity_reason));
|
||||
|
||||
if((time_t)gpgsig->timestamp > time(NULL)) {
|
||||
_alpm_log(handle, ALPM_LOG_WARNING,
|
||||
_("System time is greater than signature timestamp.\n"));
|
||||
}
|
||||
|
||||
result = siglist->results + sigcount;
|
||||
err = gpgme_get_key(ctx, gpgsig->fpr, &key, 0);
|
||||
if(gpg_err_code(err) == GPG_ERR_EOF) {
|
||||
|
|
|
@ -203,9 +203,12 @@ class pmtest(object):
|
|||
if pacman["gdb"]:
|
||||
cmd.extend(["libtool", "execute", "gdb", "--args"])
|
||||
if pacman["valgrind"]:
|
||||
suppfile = os.path.join(os.path.dirname(__file__),
|
||||
'..', '..', 'valgrind.supp')
|
||||
cmd.extend(["libtool", "execute", "valgrind", "-q",
|
||||
"--tool=memcheck", "--leak-check=full",
|
||||
"--show-reachable=yes", "--suppressions=%s/valgrind.supp" % os.getcwd()])
|
||||
"--show-reachable=yes",
|
||||
"--suppressions=%s" % suppfile])
|
||||
cmd.extend([pacman["bin"],
|
||||
"--config", os.path.join(self.root, util.PACCONF),
|
||||
"--root", self.root,
|
||||
|
|
Loading…
Add table
Reference in a new issue