diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-01-11 22:24:30 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-01-11 22:24:30 +0000 |
commit | 4fbc5f47ace6e5236a649639f0817bc2ec09f1bb (patch) | |
tree | 3aebd365c50650c7d33e72b1d8136117db9faed1 | |
parent | 692d4d0f1c0ea59cebb40e51e15687e59de22e75 (diff) | |
download | portage-4fbc5f47ace6e5236a649639f0817bc2ec09f1bb.tar.gz portage-4fbc5f47ace6e5236a649639f0817bc2ec09f1bb.tar.bz2 portage-4fbc5f47ace6e5236a649639f0817bc2ec09f1bb.zip |
Adjust the max DESCRIPTION.toolong length to 100 characters so that
it's not too small and only about 3% of packages will trigger it.
svn path=/main/trunk/; revision=9186
-rwxr-xr-x | bin/repoman | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/repoman b/bin/repoman index 3cb2b68ef..71e6ded72 100755 --- a/bin/repoman +++ b/bin/repoman @@ -74,7 +74,7 @@ from portage.output import ConsoleStyleFile, StyleWriter initialize_logger() # 14 is the length of DESCRIPTION="" -max_desc_len = 80 - 14 +max_desc_len = 100 allowed_filename_chars="a-zA-Z0-9._-+:" allowed_filename_chars_set = {} map(allowed_filename_chars_set.setdefault, map(chr, range(ord('a'), ord('z')+1))) @@ -261,7 +261,7 @@ qahelp={ "KEYWORDS.stupid":"Ebuilds that use KEYWORDS=-* instead of package.mask", "LICENSE.missing":"Ebuilds that have a missing or empty LICENSE variable", "DESCRIPTION.missing":"Ebuilds that have a missing or empty DESCRIPTION variable", - "DESCRIPTION.toolong":"DESCRIPTION line is over 80 characters", + "DESCRIPTION.toolong":"DESCRIPTION is over 100 characters", "EAPI.unsupported":"Ebuilds that have an unsupported EAPI version (you must upgrade portage)", "SLOT.missing":"Ebuilds that have a missing or empty SLOT variable", "HOMEPAGE.missing":"Ebuilds that have a missing or empty HOMEPAGE variable", |