summaryrefslogtreecommitdiff
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* - do not calculate source with of isolated-functions (for die function)Fabian Groffen2009-10-031-16/+16
| | | | | | | | | | | as we don't print it - move paths to the bottom and print ${S} as it's often necessary when a package fails. - move error message up directly after the message it says it failed (printing it below the code snippet usually just repeats the message) svn path=/main/trunk/; revision=14483
* only calculate spacing width for that part of the stack that we're going to ↵Fabian Groffen2009-10-031-1/+8
| | | | | | print svn path=/main/trunk/; revision=14482
* Remove libtool from RDEPEND.suspect list, since libltdl.so is validly used byZac Medico2009-10-011-1/+0
| | | | | | | some packages at runtime. Thanks to Samuli Suominen <ssuominen@g.o> for reporting. svn path=/main/trunk/; revision=14470
* Add --tolerant option (already in use on master rsync mirror), requested byZac Medico2009-09-301-0/+5
| | | | | | robbat2. svn path=/main/trunk/; revision=14469
* Fix TypeError in clear_screen() in dispatch-conf which occurs when Python 3 ↵Arfrever Frehtes Taifersar Arahesis2009-09-271-1/+2
| | | | | | is used (bug #286682). svn path=/main/trunk/; revision=14450
* Fix formatting of sizes with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-251-1/+1
| | | | svn path=/main/trunk/; revision=14429
* Use imp.reload() instead of reload() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-251-1/+2
| | | | svn path=/main/trunk/; revision=14426
* Use list comprehensions instead of filter() or map() in some places for ↵Arfrever Frehtes Taifersar Arahesis2009-09-253-12/+10
| | | | | | compatibility with Python 3. svn path=/main/trunk/; revision=14421
* Avoid unicode errors in python 3. Thanks to Arfrever for reporting.Zac Medico2009-09-241-0/+8
| | | | svn path=/main/trunk/; revision=14400
* Fix "TypeError: object of type 'filter' has no len()".Arfrever Frehtes Taifersar Arahesis2009-09-231-2/+2
| | | | svn path=/main/trunk/; revision=14395
* Bug #285979 - Replace references to CDEPEND with UNUSED_00, to make it clearZac Medico2009-09-232-3/+1
| | | | | | that this key really is unused. svn path=/main/trunk/; revision=14393
* Replace doct.keys() usage with __iter__(), since it behaves identically inZac Medico2009-09-224-9/+9
| | | | | | both python 2.x and 3.x. svn path=/main/trunk/; revision=14379
* Define long as int when Python 3 is used.Arfrever Frehtes Taifersar Arahesis2009-09-211-0/+3
| | | | svn path=/main/trunk/; revision=14343
* Use dict.(keys|values|items)() instead of ↵Arfrever Frehtes Taifersar Arahesis2009-09-216-18/+18
| | | | | | | | dict.(iterkeys|itervalues|iteritems)() for compatibility with Python 3. (2to3-3.1 -f dict -nw ${FILES}) svn path=/main/trunk/; revision=14327
* Support both Python 2 and 3 in portage._unicode_encode() and ↵Arfrever Frehtes Taifersar Arahesis2009-09-211-1/+1
| | | | | | | | portage._unicode_decode(). Update decoding in some files. svn path=/main/trunk/; revision=14321
* Use range() instead of xrange() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-213-4/+4
| | | | | | (2to3-3.1 -f xrange -nw ${FILES}) svn path=/main/trunk/; revision=14317
* Define basestring as str when Python 3 is used.Arfrever Frehtes Taifersar Arahesis2009-09-211-0/+3
| | | | svn path=/main/trunk/; revision=14316
* Use filter() and zip() instead of itertools.ifilter() and itertools.izip() ↵Arfrever Frehtes Taifersar Arahesis2009-09-213-6/+4
| | | | | | | | for compatibility with Python 3. (2to3-3.1 -f itertools -f itertools_imports -nw ${FILES}) svn path=/main/trunk/; revision=14314
* Update system imports for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-203-17/+22
| | | | svn path=/main/trunk/; revision=14294
* Update syntax of numbers for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-204-7/+7
| | | | | | (2to3-3.1 -f numliterals -nw ${FILES}) svn path=/main/trunk/; revision=14292
* Support print() function with Python 2 in some files.Arfrever Frehtes Taifersar Arahesis2009-09-2016-2/+39
| | | | svn path=/main/trunk/; revision=14291
* Update syntax of calls to print() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2013-219/+218
| | | | | | (2to3-3.1 -f print -nw ${FILES}) svn path=/main/trunk/; revision=14290
* Update syntax of 'except' statements for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2014-46/+46
| | | | | | (2to3-3.1 -f except -nw ${FILES}) svn path=/main/trunk/; revision=14289
* Use isjustname() where appropriate.Zac Medico2009-09-121-1/+2
| | | | svn path=/main/trunk/; revision=14236
* Fix false positives in gcc QA with debug mode some more. Thanks again toZac Medico2009-09-081-3/+3
| | | | | | Amit Dor-Shifer <amitds@oversi.com> for reporting. svn path=/main/trunk/; revision=14218
* Fix code from previous commit so it's guaranteed to always properly resetZac Medico2009-09-081-2/+6
| | | | | | debug state. svn path=/main/trunk/; revision=14215
* In debug mode, avoid showing gcc QA search strings in the trace, so they won'tZac Medico2009-09-081-0/+4
| | | | | | | trigger false positives. Thanks to Amit Dor-Shifer <amitds@oversi.com> for reporting. svn path=/main/trunk/; revision=14214
* add note that this file does not seem to deal with ROOT at allFabian Groffen2009-09-051-0/+2
| | | | svn path=/main/trunk/; revision=14190
* Fix usage of VDB_PATHFabian Groffen2009-09-052-2/+2
| | | | svn path=/main/trunk/; revision=14187
* Add dev-util/gperf to list of suspected run-time dependencies (bug #283357).Arfrever Frehtes Taifersar Arahesis2009-09-011-0/+1
| | | | svn path=/main/trunk/; revision=14175
* Many packages use setuptools at run-time, so remove it from list of ↵Arfrever Frehtes Taifersar Arahesis2009-08-291-1/+0
| | | | | | suspected run-time dependencies. svn path=/main/trunk/; revision=14170
* make sure we can deal with arches like x86-fbsd, like is done in ↵Fabian Groffen2009-08-241-1/+1
| | | | | | bin/ebuild-helpers/prepstrip svn path=/main/trunk/; revision=14151
* Add a LIVEVCS.unmasked category for ebuilds that have non-empty KEYWORDS andZac Medico2009-08-231-1/+26
| | | | | | | are not masked in the global package.mask. Thanks to Diego E. Pettenò for the suggestion. svn path=/main/trunk/; revision=14132
* Avoid potential empty lines in warnings about missing SONAMEs or NEEDED ↵Arfrever Frehtes Taifersar Arahesis2009-08-211-0/+2
| | | | | | entries. Found by Zac Medico. svn path=/main/trunk/; revision=14119
* Rename QA_NEEDED to QA_DT_NEEDED.Arfrever Frehtes Taifersar Arahesis2009-08-211-6/+6
| | | | svn path=/main/trunk/; revision=14117
* Add support for QA_SONAME variable (bug #281964). Add support for QA_NEEDED ↵Arfrever Frehtes Taifersar Arahesis2009-08-211-5/+50
| | | | | | variable. svn path=/main/trunk/; revision=14115
* Support QA_DT_HASH_${ARCH} and QA_PRESTRIPPED_${ARCH} (bug #271416).Arfrever Frehtes Taifersar Arahesis2009-08-213-0/+5
| | | | svn path=/main/trunk/; revision=14114
* Use _encodings['repo.content'] for decoding profiles.desc, ChangeLog,Zac Medico2009-08-191-5/+11
| | | | | | metadata.xml, and ebuilds. svn path=/main/trunk/; revision=14098
* Add 'return False' which was missing from the previous commit.Arfrever Frehtes Taifersar Arahesis2009-08-171-0/+1
| | | | svn path=/main/trunk/; revision=14076
* Print a warning when nonexistent files have been passed to dohtml.Arfrever Frehtes Taifersar Arahesis2009-08-171-1/+3
| | | | svn path=/main/trunk/; revision=14075
* Use elog in _eapi0_pkg_nofetch().Zac Medico2009-08-151-2/+2
| | | | svn path=/main/trunk/; revision=14068
* Remove ACCEPT_PROPERTIES filtering since it's filtered on the python side.Zac Medico2009-08-151-1/+1
| | | | svn path=/main/trunk/; revision=14065
* Add ACCEPT_PROPERTIES variable which has default value * and can be set inMounir Lamouri2009-08-111-1/+1
| | | | | | | make.conf or /etc/portage/package.properties. If ACCEPT_PROPERTIES doesn't match ebuild PROPERTIES, the ebuild is masked. svn path=/main/trunk/; revision=13997
* Update imports to import portage.os (with unicode wrappers), and useZac Medico2009-08-1113-14/+25
| | | | | | _unicode_encode() and _unicode_decode() where appropriate. svn path=/main/trunk/; revision=13993
* This is an unused commandline interface to xpak.xpak().Zac Medico2009-08-101-18/+0
| | | | svn path=/main/trunk/; revision=13988
* Add portage ImportError sys.path insertion.Zac Medico2009-08-101-0/+7
| | | | svn path=/main/trunk/; revision=13987
* This is an uneeded script for parsing ldd output.Zac Medico2009-08-101-44/+0
| | | | svn path=/main/trunk/; revision=13986
* This definitely obsolete.Zac Medico2009-08-101-31/+0
| | | | svn path=/main/trunk/; revision=13985
* This is an obsolete shell script for applying package moves vardb entry.Zac Medico2009-08-101-20/+0
| | | | svn path=/main/trunk/; revision=13984
* This script is obsolete since manifest 2.Zac Medico2009-08-101-100/+0
| | | | svn path=/main/trunk/; revision=13983