summaryrefslogtreecommitdiffstats
path: root/bin/repoman
Commit message (Collapse)AuthorAgeFilesLines
* 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
* s/x/xs/ to fix a typo in a variable name. (trunk r6022:6023)Zac Medico2007-02-211-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=6025
* For bug #167217, don't hardcode /usr/lib/portage. (trunk r5945)Zac Medico2007-02-191-1/+2
| | | | svn path=/main/branches/2.1.2/; revision=6016
* Make the "lfull" output more succinct by omitting categories for which there ↵v2.1.2-r9Zac Medico2007-02-081-2/+1
| | | | | | are no violations. (trunk r5928) svn path=/main/branches/2.1.2/; revision=5929
* For bug #165783, handle a potential InvalidDependString exception in repoman ↵Zac Medico2007-02-071-13/+23
| | | | | | and report a SRC_URI.syntax failure. (trunk r5922) svn path=/main/branches/2.1.2/; revision=5923
* Enable strict dep checking for repoman. (trunk r5918)Zac Medico2007-02-071-0/+1
| | | | svn path=/main/branches/2.1.2/; revision=5919
* For bug #165349, use the portage_versions regex (via pkgsplit) instead of ↵Zac Medico2007-02-051-24/+1
| | | | | | the incompatible ones that repoman currently uses. (trunk r5887:5888) svn path=/main/branches/2.1.2/; revision=5900
* Can't delete variable that doesn't exist anymore (bug #164280) (trunk ↵Zac Medico2007-01-281-4/+12
| | | | | | r5816:5817 and r5820:5821) svn path=/main/branches/2.1.2/; revision=5822
* demote KEYWORDS.missing to a warning to make KEYWORDS='' valid (trunk ↵v2.1.2-r4Zac Medico2007-01-241-0/+1
| | | | | | r5767:5768) svn path=/main/branches/2.1.2/; revision=5771
* Replace mktemp with mkstemp since the former is deprecated for security reasons.Zac Medico2007-01-161-4/+4
| | | | svn path=/main/trunk/; revision=5669
* Fix broken commitmessagefile handling.Zac Medico2007-01-161-9/+13
| | | | svn path=/main/trunk/; revision=5668
* For consistency, just use os.environ.Zac Medico2007-01-161-1/+1
| | | | svn path=/main/trunk/; revision=5667
* Make repoman commit removals together with the other changes (instead of ↵Zac Medico2007-01-161-3/+8
| | | | | | with the final Manifest commit). svn path=/main/trunk/; revision=5666
* Enable repoman to commit a Manifest alone instead of bailing out with ↵Zac Medico2007-01-161-7/+7
| | | | | | "Didn't find any changed files". svn path=/main/trunk/; revision=5661
* purge string module from repomanAlec Warner2007-01-121-39/+39
| | | | svn path=/main/trunk/; revision=5603
* Don't automatically fix digests in --pretend mode.Zac Medico2007-01-071-2/+5
| | | | svn path=/main/trunk/; revision=5480
* Fix the digestentry.unused check so that it works properly when old-style ↵Zac Medico2007-01-061-4/+9
| | | | | | files/digest-* don't exist. svn path=/main/trunk/; revision=5477
* For bug #160310, remove the line continuation syntax check since it's still ↵Zac Medico2007-01-061-19/+0
| | | | | | possible for it to generate false positives. svn path=/main/trunk/; revision=5471
* For bug #160310, allow \ inside `` quotes in order to prevent a false Line ↵Zac Medico2007-01-061-2/+3
| | | | | | continuation ("\") Syntax Error. svn path=/main/trunk/; revision=5470
* Make repoman use portage.normalize_path instead of os.path.normpath. This ↵Zac Medico2007-01-051-7/+7
| | | | | | might solve an issue with incorrect repolevel detection that was reported by drizzt. svn path=/main/trunk/; revision=5463
* Optimize dep_zapdeps to work without a vartree when called by repoman.Zac Medico2007-01-021-1/+1
| | | | svn path=/main/trunk/; revision=5444
* For bug #159224, use separate xmatch caches for each value of ACCEPT_KEYWORDS.Zac Medico2006-12-311-5/+11
| | | | svn path=/main/trunk/; revision=5438
* Only write repo.stats and repo.fails when the repoman user has write access ↵Zac Medico2006-12-231-12/+8
| | | | | | to /var/cache/edb. svn path=/main/trunk/; revision=5360
* Make repoman cache per-profile xmatch results.Zac Medico2006-12-161-2/+6
| | | | svn path=/main/trunk/; revision=5301
* Add an allow_blockers parameter to isvalidatom so that the behavior is ↵Zac Medico2006-12-101-1/+1
| | | | | | optional. Thanks to Brian Harring for the suggestion. svn path=/main/trunk/; revision=5264
* Clean up depstring/atom splitting and filtering.Zac Medico2006-12-091-2/+6
| | | | svn path=/main/trunk/; revision=5243
* Use portage.isvalidatom() for atom validation in repoman.Zac Medico2006-12-091-1/+1
| | | | svn path=/main/trunk/; revision=5240
* Remove all traces of FEATURES=cvs since code for that feature no longer ↵Zac Medico2006-12-081-7/+0
| | | | | | exists (apparently since portage-2.1). svn path=/main/trunk/; revision=5228
* Make repoman bail out if it's unable to generate the Manifest.Zac Medico2006-12-071-2/+3
| | | | svn path=/main/trunk/; revision=5200
* Make `repoman fix` work with the new ebuild Manifest checks during depend phase.Zac Medico2006-12-041-1/+1
| | | | svn path=/main/trunk/; revision=5167