summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Implement REPLACING_VERSIONS and REPLACED_BY_VERSIONSebastian Luther2010-04-106-1/+38
|
* Fix deprecated config.getvirtuals() usage that's triggered byZac Medico2010-04-101-1/+1
| | | | gentoolkit-0.2.x.
* Make spawning of `id -G portage` happen lazily when userpriv_groups is firstZac Medico2010-04-101-17/+22
| | | | accessed.
* Handle IOError when trying to cache the Packages file from the binhost.Zac Medico2010-04-091-1/+1
|
* When caching Packages file from binhost, ignore failure to write in casesZac Medico2010-04-091-2/+1
| | | | when the cache directory is not writable.
* Use tbz2.unpackinfo() to unpack the xpak when running pkg_pretend, since weZac Medico2010-04-071-7/+4
| | | | need evironment.bz2 to get unpacked here.
* In _run_pkg_pretend(), write ebuild bytes from tbz2.getfile() in binary modeZac Medico2010-04-071-1/+1
| | | | for python3 compatibility.
* Eliminate redundant code in Scheduler._run_pkg_pretend() and remove unusedZac Medico2010-04-071-44/+19
| | | | quiet_config variables.
* Handle pkg_pretend output properlySebastian Luther2010-04-072-16/+46
|
* Make ensure_dirs() behave correctly for DragonFly when EPERM is raised forZac Medico2010-04-061-7/+12
| | | | makedir('/'). Thanks to Naohiro Aota <naota@elisp.net> for the initial patch.
* Cleanup $T earlier to prevent old messages from being displayed - bug 279041Sebastian Luther2010-04-062-3/+4
|
* Remove PORTAGE_USERNAME and PORTAGE_GROUPNAME support for now since antarusZac Medico2010-04-064-11/+7
| | | | says he wants it to work via make.conf, requiring redesign.
* also check quoting on the Prefix variables added in EAPI=3, thanks jlec for ↵Fabian Groffen2010-04-051-0/+3
| | | | the suggestion
* For clarity, make egencache --help and man page refer to --config-rootZac Medico2010-04-022-2/+3
| | | | parameter as PORTAGE_CONFIGROOT. Thanks to Brian Harring.
* Merge remote branch 'fews-portage-branch/pkg_pretend'Zac Medico2010-04-023-5/+86
|\
| * Implement emerge part of pkg_pretendSebastian Luther2010-04-023-5/+86
| |
* | Add a test which calls bash -n on all scripts with bash shebang.Zac Medico2010-04-022-1/+44
| |
* | Handle missing $PORTDIR/metadata/herds.xml. Thanks to Arfrever for reporting.Zac Medico2010-04-023-6/+18
| |
* | Update copyright header.Zac Medico2010-04-021-1/+1
| |
* | Make RebuiltBinaries only select binary packages with non-empty BUILD_TIME.Zac Medico2010-04-021-1/+1
|/
* Update copyright header.Zac Medico2010-04-011-1/+1
|
* Update copyright header.Zac Medico2010-04-011-1/+1
|
* Allow running pkg_info on non-installed packagesSebastian Luther2010-03-312-20/+98
|
* Add DEFINED_PHASES to the dbapi caches and _emerge.Package.metadataSebastian Luther2010-03-304-6/+12
|
* Move all imports to top.Zac Medico2010-03-281-11/+9
|
* Remove unused variables/imports and extra whitespace.Zac Medico2010-03-281-13/+11
|
* Add support for package sets to quickpkgSebastian Luther2010-03-282-141/+189
| | | | | | | | Split quickpkg_atom out of quickpkg_main to handle single atoms. Create quickpkg_set to handle sets that calls quickpkg_atom. Use a dict called 'infos' to return information about skipped config files, etc. Move imports to global scope. Update --help message and man page.
* Add support for probing shebangs and compiling python scripts that don'tZac Medico2010-03-271-4/+31
| | | | end with py.
* Make sure portage.VERSION is saved in the mtimedb as type str rather thanZac Medico2010-03-271-2/+3
| | | | ObjectProxy.
* Ignore *.py[co]Zac Medico2010-03-271-0/+1
|
* Implement __unicode__ for python2.Zac Medico2010-03-271-0/+3
|
* If portage.VERSION == HEAD then use a proxy to lazily call git describe --tagsZac Medico2010-03-272-1/+19
| | | | if it's accessed.
* Add PORTAGE_USERNAME and PORTAGE_GROUPNAME to the environment whitelist andZac Medico2010-03-262-4/+6
| | | | filter them from the saved environment.
* Process help and version actions asap. Thanks to Brian Harring.Zac Medico2010-03-261-9/+10
|
* Use PORTAGE_USERNAME when populating userpriv_groups.Zac Medico2010-03-251-1/+1
|
* Implement PortageException.__unicode__ so the string formatin operator willZac Medico2010-03-251-1/+5
| | | | work correctly with unicode strings in python2.
* Remove unsed check_KV() function. Thanks to Brian Harring.Zac Medico2010-03-252-15/+1
|
* Remove obsolete reference to nonexistent functions like newdepend inZac Medico2010-03-251-2/+1
| | | | save_ebuild_env. Thanks to Brian Harring.
* Add back executable bits, accidentally removed in previous commit.Zac Medico2010-03-2473-0/+0
|
* Remove all svn $Id keywords.Zac Medico2010-03-24312-312/+0
|
* Don't use $Id or $Rev for version strings since that doesn't work with git.Zac Medico2010-03-243-3/+3
|
* Use git (repo in current working directory) instead of svn.Zac Medico2010-03-231-26/+29
|
* Add support for PORTAGE_USERNAME and PORTAGE_GROUPNAME environmentZac Medico2010-03-232-2/+6
| | | | | variables. Thanks to Alec Warner <antarus@g.o> for submitting the initial PORTAGE_USERNAME patch from chromiumos-overlay.
* Add check of herds in metadata.xmlSebastian Pipping2010-03-233-1/+135
|
* Prepare further checks on metadata.xmlSebastian Pipping2010-03-232-5/+14
|
* install_qa_check: make sure init.d and conf.d files do not have syntax ↵Mike Frysinger2010-03-231-0/+9
| | | | | | errors in them #310805 svn path=/main/trunk/; revision=15843
* Show masking reasons for --binpkg-respect-use. Thanks to Sebastian LutherZac Medico2010-03-211-0/+2
| | | | | | (few) for this patch. svn path=/main/trunk/; revision=15840
* Bug #309149 - Unify look of eend used in bash & python code, additionallyZac Medico2010-03-202-12/+6
| | | | | | | fixing few inconsistences in bash code. Thanks to Michał Górny <gentoo@mgorny.alt.pl> for this patch. svn path=/main/trunk/; revision=15839
* Fix typo.Zac Medico2010-03-191-1/+1
| | | | svn path=/main/trunk/; revision=15835
* Note that use.local.desc is automatically generated, and refer to GLEP 56.Zac Medico2010-03-191-2/+5
| | | | svn path=/main/trunk/; revision=15834