mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
aurblup: Do not blacklist provides
This partly reverts commit ddc5435
(Add packages' provides and replaces
to the blacklist in aurblup., 2011-02-08). While adding replaces is
fine, blacklisting provides prevents from uploading alternative
implementations of a program which is not what we want.
Fixes FS#43381.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
80ef14caa8
commit
5816cc7faa
1 changed files with 0 additions and 5 deletions
|
@ -166,11 +166,6 @@ dblist_get_pkglist(alpm_list_t *dblist)
|
||||||
|
|
||||||
pkglist = pkglist_append(pkglist, alpm_pkg_get_name(pkg));
|
pkglist = pkglist_append(pkglist, alpm_pkg_get_name(pkg));
|
||||||
|
|
||||||
for (q = alpm_pkg_get_provides(pkg); q; q = alpm_list_next(q)) {
|
|
||||||
alpm_depend_t *provide = q->data;
|
|
||||||
pkglist = pkglist_append(pkglist, provide->name);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (q = alpm_pkg_get_replaces(pkg); q; q = alpm_list_next(q)) {
|
for (q = alpm_pkg_get_replaces(pkg); q; q = alpm_list_next(q)) {
|
||||||
alpm_depend_t *replace = q->data;
|
alpm_depend_t *replace = q->data;
|
||||||
pkglist = pkglist_append(pkglist, replace->name);
|
pkglist = pkglist_append(pkglist, replace->name);
|
||||||
|
|
Loading…
Add table
Reference in a new issue