summaryrefslogtreecommitdiffstats
path: root/bin/repoman
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove the usage.obsolete "KEYWORDS contain -*" warning since peoplev2.1.3.19Zac Medico2007-11-061-3/+0
| | | | | | | are using -* to indicate that a package should not be tried on archs other than those for which it already has KEYWORDS. svn path=/main/branches/2.1.2/; revision=8448
* Port the EbuildNestedDie check from trunk since theZac Medico2007-11-051-4/+25
| | | | | | | python version is much faster than the old one that uses grep. svn path=/main/branches/2.1.2/; revision=8430
* Generate a usage.obsolete warning wheneverZac Medico2007-11-041-2/+5
| | | | | | -* is found in KEYWORDS. (trunk r8414) svn path=/main/branches/2.1.2/; revision=8415
* Sort scanlist and ebuildlist to ensure that repoman alwaysZac Medico2007-11-021-0/+2
| | | | | | processes packages in a predictable order. (trunk r8383) svn path=/main/branches/2.1.2/; revision=8384
* Remove an extra \$ from the EbuildQuote.var_reference regexZac Medico2007-11-021-4/+4
| | | | | | | | | | so that it will properly match things like variable references without braces, like $S. (trunk r8354) Properly escape { and } characters in regular expressions even though it seems to work either way. (trunk r8355) svn path=/main/branches/2.1.2/; revision=8377
* Add a check for redundant cd "${S}" statements on the firstZac Medico2007-11-021-1/+23
| | | | | | | | line of src_(compile|install|test) ebuild methods. Thanks to Petteri Räty <betelgeuse@gentoo.org> for this patch. (trunk r8351 and r8353) svn path=/main/branches/2.1.2/; revision=8376
* Optimize repoman visibility checks to access as littleZac Medico2007-11-021-2/+2
| | | | | | | | | | metadata as possible. (improves performance especially in cases where metadata needs to be generated). This works by starting at the lowest version since that's most likely to have keywords and it returns as soon as the first visible package is found. (trunk r8309) svn path=/main/branches/2.1.2/; revision=8369
* Optimize repoman to share portdbapi.cp_list() resultsZac Medico2007-11-021-0/+3
| | | | | | | | | | between all profiles since those results never change. The cached results also propagate to the xmatch match-all when appropriate (old-style virtuals are excluded since they are profile dependent). (trunk r8313) svn path=/main/branches/2.1.2/; revision=8368
* Bug #196652 - Check for useless ABOUT-NLS|COPYING|LICENSEZac Medico2007-10-231-1/+20
| | | | | | files in dodoc arguments. (trunk r8236) svn path=/main/branches/2.1.2/; revision=8237
* Fix --help summary so that "commit" mode shows. (trunk r8140)Zac Medico2007-10-151-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=8141
* Sort the modes in the repoman --help output. (trunk r8125)Zac Medico2007-10-151-0/+3
| | | | svn path=/main/branches/2.1.2/; revision=8132
* Move the "commit" mode manifest generation earlier in orderZac Medico2007-10-121-9/+6
| | | | | | | to avoid digest verification issues when FEATURES="strict" is enabled. (trunk r7994:7996) svn path=/main/branches/2.1.2/; revision=8065
* Make the EbuildQuote check ignore lines beginningZac Medico2007-10-051-1/+1
| | | | | | | with local or export builtins since unquoted assignments are okay there. (trunk r7942) svn path=/main/branches/2.1.2/; revision=7943
* Eliminate confusing false positive error messagesZac Medico2007-10-051-7/+22
| | | | | | | | | | | | for SRC_URI.syntax and digestentry.unused that are reported when the SRC_URI for one or more ebuilds can't be parsed for some reason. There's no point in producing a false error here since the root cause will produce a valid error elsewhere, such as "SRC_URI.syntax" or "ebuild.sytax". (trunk r7905) svn path=/main/branches/2.1.2/; revision=7941
* Fix logic for the message that's show whenZac Medico2007-10-051-1/+1
| | | | | | --force is disabled. (trunk r7915) svn path=/main/branches/2.1.2/; revision=7937
* Make repoman bail out if it is unable to properlyZac Medico2007-10-051-19/+52
| | | | | | | | | access ebuild metadata for some reason. In this case it's impossible to generate a Manifest and therefore the --force option has to be disabled. (trunk r7914) svn path=/main/branches/2.1.2/; revision=7936
* Update the docs for the "ebuild.syntax" error toZac Medico2007-10-051-1/+1
| | | | | | | indicate that a digest verification failure can trigger it. (trunk r7905) svn path=/main/branches/2.1.2/; revision=7929
* Port the EbuildQuote check from trunk. (trunk r7904)Zac Medico2007-10-051-3/+80
| | | | svn path=/main/branches/2.1.2/; revision=7928
* Convert myoptions from a list to a dict. (trunk r7714)Zac Medico2007-09-061-6/+5
| | | | svn path=/main/branches/2.1.2/; revision=7743
* Move some of the less expensive QA checks before dep_check() so that they'reZac Medico2007-09-061-106/+106
| | | | | | still done even in --force mode. (trunk r7718) svn path=/main/branches/2.1.2/; revision=7742
* Skip the most expensive QA tests when --force in enabled since there's noZac Medico2007-09-061-0/+6
| | | | | | | point in wasting time on them when the user is intent on forcing the commit anyway. (trunk r7713) svn path=/main/branches/2.1.2/; revision=7741
* Fix RepoMan's grammar. (trunk r7711)Zac Medico2007-09-061-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7740
* Bug #110443 - Add a KEYWORDS.stable check for ebuilds that are added directlyZac Medico2007-09-061-0/+28
| | | | | | with stable KEYWORDS. (trunk r7710) svn path=/main/branches/2.1.2/; revision=7739
* Make the commit message indicate when the --force option is used. (trunk r7712)Zac Medico2007-09-061-6/+9
| | | | svn path=/main/branches/2.1.2/; revision=7738
* Add a --force option that forces commit to proceed. This is useful for casesZac Medico2007-09-061-1/+6
| | | | | | | like bug #110443 where the commit normally isn't allowed but there are exceptional circumstances where it may be acceptable. (trunk r7709) svn path=/main/branches/2.1.2/; revision=7737
* Bug #190406 - Filter the myheaders list so that it doesn't include binaryZac Medico2007-09-061-1/+6
| | | | | | blobs added to cvs with the -kb option. (trunk r7705) svn path=/main/branches/2.1.2/; revision=7736
* For bug #187795, remove pointless digest.disjointed and digest.notadded ↵Zac Medico2007-08-061-12/+0
| | | | | | warnings since they are always added to cvs automatically anyway. (trunk r7580) svn path=/main/branches/2.1.2/; revision=7581
* For bug #169500, detect when the cvs server puts /Attic/ inside the $Header ↵Zac Medico2007-07-211-0/+17
| | | | | | path and automatically correct it. (trunk r7340) svn path=/main/branches/2.1.2/; revision=7341
* For bug #185153, in commit mode do the "Fetching trivial updates" routine ↵Zac Medico2007-07-211-38/+44
| | | | | | before the qa scan. (trunk r7338) svn path=/main/branches/2.1.2/; revision=7339
* Flatten restrict for the RESTRICT.invalid check. (trunk r7120)Zac Medico2007-07-021-6/+16
| | | | svn path=/main/branches/2.1.2/; revision=7121
* Add a QA warning for invalid values of RESTRICT. Thanks to peper for the ↵Zac Medico2007-06-301-0/+12
| | | | | | patch. (trunk r7102) svn path=/main/branches/2.1.2/; revision=7103
* Remove lots of unnecessary list generation via dict.keys(). (trunk r6911)Zac Medico2007-06-221-3/+3
| | | | svn path=/main/branches/2.1.2/; revision=6930
* Pretty up the repoman imports, use cPickle over pickle for performance ↵Zac Medico2007-06-211-3/+13
| | | | | | (trunk r6431) svn path=/main/branches/2.1.2/; revision=6900
* Make repoman exit with nonzero status whenever there are qa issues (already ↵Zac Medico2007-06-151-0/+4
| | | | | | does the same in commit mode). Thanks to Daniel Gryniewicz <dang@gentoo.org> in bug #182166. (trunk r6856) svn path=/main/branches/2.1.2/; revision=6857
* For bug #181355, detect parenthesis mismatch in paren_reduce(), raise an ↵Zac Medico2007-06-111-0/+4
| | | | | | InvalidDependString exception, and make sure that all callers handle the exception properly. (trunk r6795:6797) svn path=/main/branches/2.1.2/; revision=6798
* Make repoman work with both + and - flags in IUSE. (trunk r6788)Zac Medico2007-06-101-6/+5
| | | | svn path=/main/branches/2.1.2/; revision=6789
* Don't complain when is missing unless manifest1 compatibility is enabled. ↵Zac Medico2007-06-011-9/+7
| | | | | | (trunk r6711 and r6716) svn path=/main/branches/2.1.2/; revision=6717
* xmlint can produce garbage output even on success, so only dump the ouput ↵Zac Medico2007-05-261-3/+8
| | | | | | when it fails. See bug #179008. (trunk r6631) svn path=/main/branches/2.1.2/; revision=6632
* Skip fetching of metadata.dtd when mymode == "manifest". (trunk r6618)v2.1.2.8Zac Medico2007-05-251-2/+4
| | | | svn path=/main/branches/2.1.2/; revision=6619
* Use device number and i-node number (like os.path.samefile does) to check if ↵Zac Medico2007-05-231-1/+18
| | | | | | the current directory is inside a given overlay. This solves issues with path comparison and symlinks. (trunk r6558:6559) svn path=/main/branches/2.1.2/; revision=6605
* For bug #176539, add a manifest target to repoman so that there's a simple ↵Zac Medico2007-05-231-2/+16
| | | | | | way to just generate a Manifest. svn path=/main/branches/2.1.2/; revision=6603
* For bug #179008, just use metadata.dtd directly from $DISTDIR. (trunk ↵Zac Medico2007-05-221-14/+13
| | | | | | r6561:6562) svn path=/main/branches/2.1.2/; revision=6576
* For bug #175344, handle a potential InvalidDependString exception when ↵Zac Medico2007-04-201-2/+8
| | | | | | parsing PROVIDE. (trunk r6420:6421) svn path=/main/branches/2.1.2/; revision=6422
* For bug #167667, add support for ${PORTDIR}/manifest1_obsolete and ↵Zac Medico2007-02-221-3/+51
| | | | | | automatically remove ${FILESDIR}/digest-* from cvs when appropriate. (trunk r6041:6042) svn path=/main/branches/2.1.2/; revision=6044
* Fix broken file list handling for FEATUES=sign when only the Manifest has ↵Zac Medico2007-02-221-0/+18
| | | | | | changed. Add some sanity checks for file list handling when repolevel < 3. (trunk r6034:6036) svn path=/main/branches/2.1.2/; revision=6037
* Fix more broken commitmessagefile handling. (trunk r6032:6033)Zac Medico2007-02-221-2/+7
| | | | svn path=/main/branches/2.1.2/; revision=6034
* Use startdir instead of mydir since mydir has a trailing slash which ↵Zac Medico2007-02-221-3/+3
| | | | | | triggers normalization issues with the dirname function. (trunk r6030:6031) svn path=/main/branches/2.1.2/; revision=6032
* Avoid a TypeError when commitmessagefile is None. (trunk r6028:6029)Zac Medico2007-02-221-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=6030
* Fix stardir and repodir logic from the previous commit. (trunk r6026:6027)Zac Medico2007-02-211-5/+3
| | | | svn path=/main/branches/2.1.2/; revision=6028
* For consistency, replace multiple os.getcwd() calls with the "mydir" ↵Zac Medico2007-02-211-4/+4
| | | | | | variable. (trunk r6023:6024) svn path=/main/branches/2.1.2/; revision=6026