aboutsummaryrefslogtreecommitdiff
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* fix the Dependencies.graph_depends() api return value not being correct.dol-sen2011-05-221-22/+19
|
* fix bug 368113 dupe'd USE flagsdol-sen2011-05-191-1/+2
|
* Revert "uniqify the list of returned use flags in uses.py. Bug 368113"dol-sen2011-05-191-1/+1
| | | | | | in favour of fixing it at the source so all of gentoolkit's modules benefit. This reverts commit 674776f13984d40a1cd7eb6929be81618708e1fa.
* uniqify the list of returned use flags in uses.py. Bug 368113Paul Varner2011-05-201-1/+1
|
* add keywords formatter option.dol-sen2011-05-181-1/+9
|
* found a better spot to set piping wrap width so as to disable for all piping ↵gentoolkit-0.3.0.3dol-sen2011-05-161-1/+3
| | | | | regardless of the --no-pipe option which would turn off setting 'quiet' on. Signed-off-by: dol-sen <brian.dolbec@gmail.com>
* add CONFIG['termWidth'] setting to the no-pipe option to effectively turn ↵dol-sen2011-05-161-0/+1
| | | | | off textwraping. This fixes issues with scripts parsing output.
* fix py3 compatibility issues in eshowkw.dol-sen2011-05-164-13/+18
|
* analyse namespace change to enalyze and standardize the spelling to use the ↵dol-sen2011-05-116-46/+46
| | | | 'z' variant.
* Change eprefix.py to only look at portage for the value of EPREFIXPaul Varner2011-04-181-19/+9
|
* temporary fix for a test failure due to the added dotfiles check.gentoolkit-0.3.0Brian Dolbec2011-04-101-1/+1
| | | | Need to add proper test data and checks for it.
* Fix extend_realpaths in FileOwner class. (Bug 96515)Paul Varner2011-03-311-1/+1
| | | | | | | Removed the os.path.islink check since it oly returns true if the last part of the path is a symbolic link. We want to add the realpath to the list if it already doesn't exist in the list, since that indicates that something in the path is a symbolic link.
* add the Homepage to epkginfo/equery meta's Upstream option as per idl0r's ↵Brian Dolbec2011-03-171-0/+10
| | | | request.
* add a dotfile check and only delete hidden (.dotfile's) during a destructive ↵Brian Dolbec2011-03-081-2/+14
| | | | search.
* decorate some functions as @staticmethodBrian Dolbec2011-02-241-3/+6
|
* move mysettings out of __getMaskStatus() into __init__() so it is only done ↵Brian Dolbec2011-02-241-12/+21
| | | | | once = 1/7th the time to run. decorate functions not needing self with @staticmethod.
* WhitespaceChristian Ruppert2011-02-241-1/+1
|
* Fix package.mask checkChristian Ruppert2011-02-241-1/+1
| | | | | getmaskingstatus() returns an array so it always returned False if the array has multiple items
* fix some alignment mismatchesBrian Dolbec2011-02-231-6/+6
|
* fix the rebuild_keywords slot appended bug.Brian Dolbec2011-02-232-24/+41
| | | | | re-factor rebuild_use to do the same slotted packages entries. fix some errors where I edited rebuild_use instead of rebuild_keywords print statements.
* code the rebuild keywords module.Brian Dolbec2011-02-232-28/+181
| | | | Add date and time info to the header generated. add -s, --slot option.
* Merge branch 'gentoolkit' of ↵Brian Dolbec2011-02-102-22/+32
|\ | | | | | | git+ssh://git.overlays.gentoo.org/proj/gentoolkit into gentoolkit
| * Some whitespace to visualy separate the codeTomas Chvatal2011-01-311-0/+2
| |
| * Align the suffix for revision correctly.Tomas Chvatal2011-01-311-2/+4
| |
| * Align revision nicely so it is space separated and easier to spot.Tomas Chvatal2011-01-301-23/+28
| |
| * Fix unicode vs. bytes issue in glsa-check (#341293)Andy Kittner2011-01-281-0/+1
| |
* | apply djanderson's idea for a simpler/better fix to bug 353430 and commit ↵Brian Dolbec2011-02-103-22/+13
|/ | | | | | 000ce49860b253ad6c917c5a58bc0ff31225134a for use conditionals causing errors in equery results.
* fix the missing unset flags issue due to my misleading variable name for ↵Brian Dolbec2011-01-253-9/+21
| | | | "cleaned unset flags".
* fix a missed function rename for an assignmentBrian Dolbec2011-01-251-3/+3
|
* fix the setting of the quiet option properly this timeBrian Dolbec2011-01-252-2/+16
|
* Fix missing quiet option passing into the analyse moduleBrian Dolbec2011-01-251-1/+2
|
* Add a leading '-' to disabled USE flags.Brian Dolbec2011-01-251-2/+2
|
* Modify printers to use the newly split out CpvValuesWrapper and add a ↵Brian Dolbec2011-01-252-38/+51
| | | | print_pkg_quiet()
* Add a new cpv and values textwrapping classBrian Dolbec2011-01-251-0/+39
|
* fix a missed rename and relocationof some importsBrian Dolbec2011-01-251-3/+3
|
* Add a new packages module to analyseBrian Dolbec2011-01-243-34/+128
|
* Make the ignorance of local settings complete.Tomas Chvatal2011-01-232-5/+6
|
* Ignore local_settings for package maks.Tomas Chvatal2011-01-232-7/+5
|
* Make shadow checker aware of mask status.Tomas Chvatal2011-01-201-18/+28
|
* create a new uniqify_atoms() to properly handle a list of atom instances.Brian Dolbec2011-01-093-4/+22
| | | set the reverse dependency lookup to use it.
* remove the use of uniqify as it does not work correctly with atoms.Brian Dolbec2011-01-091-1/+2
|
* Add testfile for eclean tests to repository.Paul Varner2011-01-061-0/+0
|
* Add gentoolkitNonZeroExit exceptionPaul Varner2011-01-062-4/+13
| | | | | | | | | | This exception should only be used when an error is not fatal and the absence of information means no data was found. The return_code parameter can be used to set the exit value. Have the equery list module when in quiet mode return an exit status of 3. This is needed to prevent 'euse -I' from printing many 'No installed packages matching ...' error messages.
* equery list: do not raise GentoolkitNoMatches exception in quiet modePaul Varner2011-01-051-1/+10
|
* Set the encoding to 'utf_8', if the encoding returned byPaul Varner2011-01-011-0/+9
| | | | locale.getpreferredencoding() is unknown to python. (Bug 350156)
* Remove use_cache parameter from setcpv call since it is deprecated.FuzzyRay2010-12-281-1/+1
| | | | Bug 349342
* Drop useless comment linescarabeus2010-12-041-1/+1
| | | | svn path=/trunk/gentoolkit/; revision=872
* Update sorting algorithm to order slots properly if package with lower slot ↵scarabeus2010-12-041-27/+23
| | | | | | has higher version. svn path=/trunk/gentoolkit/; revision=871
* Properly get versions for all packages in all repositories so versions from ↵scarabeus2010-11-271-9/+61
| | | | | | different repos does not shadow each other svn path=/trunk/gentoolkit/; revision=870
* Fix cpv.py to handle prefix ebuild inter-revisions. Bug 313295fuzzyray2010-11-221-1/+3
| | | | svn path=/trunk/gentoolkit/; revision=865