summaryrefslogtreecommitdiffstats
path: root/pym/repoman/errors.py
Commit message (Collapse)AuthorAgeFilesLines
* Add a new "ebuild.patches" check for the PATCHES variable that's used byZac Medico2008-03-291-0/+1
| | | | | | | | base_src_unpack() from base.eclass. This generates a warning if the variable is not defined as an array, since this is required for white space safety. Thanks to Betelgeuse for the initial patch. svn path=/main/trunk/; revision=9587
* Fix 'TypeError: not all arguments converted during string formatting'Zac Medico2007-11-051-1/+1
| | | | | | issues with the EbuildNestedDie check. svn path=/main/trunk/; revision=8429
* Add a check for redundant cd "${S}" statements on the firstZac Medico2007-11-011-0/+1
| | | | | | | line of src_(compile|install|test) ebuild methods. Thanks to Petteri Räty <betelgeuse@gentoo.org> for this patch. svn path=/main/trunk/; revision=8351
* Rename checks as the naming was overkill (they are all obviously checks ↵Alec Warner2007-10-011-1/+2
| | | | | | being in the check module), add nesteddie check svn path=/main/trunk/; revision=7898
* Add new repoman check classes using StringIO; possibly need some testing, ↵Alec Warner2007-10-011-0/+12
obviously the old code was faster (1 iteration over the file), here we do one iteration per check, StringIO was to try and negate this by doing the checks in memory...how much of a price do we pay here? svn path=/main/trunk/; revision=7894