blob: 82c0cd6f476aae4e8541ef4b6ee1652f10494a4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <alpm.h>
#include <alpm_list.h>
#include "pacman.h"
#include "util.h"
#include "conf.h"
int pacman_deptest(alpm_list_t *targets)
{
alpm_list_t *i;
alpm_list_t *deps = NULL;
pmdb_t *localdb = alpm_option_get_localdb();
for(i = targets; i; i = alpm_list_next(i)) {
char *target = alpm_list_getdata(i);
if(!alpm_find_satisfier(alpm_db_get_pkgcache(localdb), target)) {
deps = alpm_list_add(deps, target);
}
}
if(deps == NULL) {
return(0);
}
for(i = deps; i; i = alpm_list_next(i)) {
const char *dep = alpm_list_getdata(i);
printf("%s\n", dep);
}
alpm_list_free(deps);
return(127);
}
|