summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2015-01-09 09:36:09 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2015-01-09 09:38:10 +0100
commit5816cc7faad950fa5d08d368a0961d3d7dd739d2 (patch)
tree519762540fd4a715210674e926de14a49c8a3e58 /scripts
parent80ef14caa844925f5a9498edf80e9f9c48eac1a8 (diff)
downloadaurweb-5816cc7faad950fa5d08d368a0961d3d7dd739d2.tar.xz
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>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/aurblup/aurblup.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/aurblup/aurblup.c b/scripts/aurblup/aurblup.c
index f072669..971dc06 100644
--- a/scripts/aurblup/aurblup.c
+++ b/scripts/aurblup/aurblup.c
@@ -166,11 +166,6 @@ dblist_get_pkglist(alpm_list_t *dblist)
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)) {
alpm_depend_t *replace = q->data;
pkglist = pkglist_append(pkglist, replace->name);