From b25c66e9ab0f177094d8d56554d85afead194122 Mon Sep 17 00:00:00 2001 From: Bernard Cafarelli Date: Thu, 5 Dec 2019 19:03:49 +0100 Subject: [PATCH] Update some blacklists Also fix blacklist log message --- pym/euscan/__init__.py | 7 +++---- pym/euscan/helpers.py | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/pym/euscan/__init__.py b/pym/euscan/__init__.py index 95a6a18..821759f 100644 --- a/pym/euscan/__init__.py +++ b/pym/euscan/__init__.py @@ -44,13 +44,14 @@ BLACKLIST_VERSIONS = [ # Compatibility package for running binaries linked against a # pre gcc 3.4 libstdc++, won't be updated '>=sys-libs/libstdc++-v3-3.4', + # Actually older or incorrect + '~app-backup/backup-manager-0.7.15', + '=x11-plugins/wmacpimon-001', ] BLACKLIST_PACKAGES = [ # These kernels are almost dead - 'sys-kernel/usermode-sources', 'sys-kernel/xbox-sources', - 'sys-kernel/cell-sources', ] SCANDIR_BLACKLIST_URLS = [ @@ -66,7 +67,6 @@ BRUTEFORCE_BLACKLIST_PACKAGES = [ ] BRUTEFORCE_BLACKLIST_URLS = [ - 'http://(.*)dockapps.org/download.php/id/(.*)', # infinite loop 'http://hydra.nixos.org/build/(.*)', # infinite loop # Doesn't respect 404, infinite loop 'http://www.rennings.net/gentoo/distfiles/(.*)', @@ -78,7 +78,6 @@ BRUTEFORCE_BLACKLIST_URLS = [ ROBOTS_TXT_BLACKLIST_DOMAINS = [ '(.*)sourceforge(.*)', '(.*)github.com', - '(.*)berlios(.*)', '(.*)qt\.nokia\.com(.*)', '(.*)chromium\.org(.*)', '(.*)nodejs\.org(.*)', diff --git a/pym/euscan/helpers.py b/pym/euscan/helpers.py index 935c0e8..4843a96 100644 --- a/pym/euscan/helpers.py +++ b/pym/euscan/helpers.py @@ -95,7 +95,7 @@ def version_blacklisted(cp, version): None if rule: - euscan.output.einfo("%s is blacklisted by rule %s" % (cpv, bv)) + euscan.output.einfo("%s is blacklisted by rule %s" % (cpv, rule)) return rule is not None