aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2015-05-05 15:13:52 +0200
committerUlrich Müller <ulm@gentoo.org>2015-05-06 08:36:53 +0200
commitbae954e2f69ee76d74570e30d6ddd1482ebad49b (patch)
treee9b8282c86fd8de3c6d943e2e22a51546fe85d5e /bin
parentvarexpand: fix IndexError (bug 548556) (diff)
downloadportage-bae954e2f69ee76d74570e30d6ddd1482ebad49b.tar.gz
portage-bae954e2f69ee76d74570e30d6ddd1482ebad49b.tar.bz2
portage-bae954e2f69ee76d74570e30d6ddd1482ebad49b.zip
Use consistent rules for filenames of ebuils and misc files.
So far non-ebuild filenames were allowed to contain a : (colon). This is a problematic character as it is illegal in both Mac OS and MS-Windows (and there are Prefix profiles for these). Also it has a special meaning as path separator and as remote host indicator in scp and other programs. This limits the allowed characters in filenames to [A-Za-z0-9._+-] which is the same as IEEE Std 1003.1-2013, section 3.278, with the addition of the plus character. See also bug 411127.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/repoman4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/repoman b/bin/repoman
index e9c89c2cc..37e11b2d2 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1,5 +1,5 @@
#!/usr/bin/python -bO
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Next to do: dep syntax checking in mask files
@@ -88,7 +88,7 @@ util.initialize_logger()
# 14 is the length of DESCRIPTION=""
max_desc_len = 100
-allowed_filename_chars="a-zA-Z0-9._-+:"
+allowed_filename_chars="a-zA-Z0-9._+-"
pv_toolong_re = re.compile(r'[0-9]{19,}')
GPG_KEY_ID_REGEX = r'(0x)?([0-9a-fA-F]{8}|[0-9a-fA-F]{16}|[0-9a-fA-F]{24}|[0-9a-fA-F]{32}|[0-9a-fA-F]{40})!?'
bad = create_color_func("BAD")