summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Remove portage.const._ENABLE_XATTR.v2.2.0_alpha85Zac Medico2012-02-042-8/+2
|
* repoman: support git commit --gpg-signZac Medico2012-02-041-2/+8
| | | | | | | In order to sign commits with git, you will need Git >=1.7.9 and your key will have to be configured by `git config user.signingkey key_id`. Also, the repository will need to have "sign-commits = true" in metadata/layout.conf. This will fix bug #333687.
* Honor repos.conf for overlay priority, bug 402099Daniel Hornung2012-02-031-2/+2
| | | | Signed-off-by: Zac Medico <zmedico@gentoo.org>
* LinkageMapELF: handle null bytes in NEEDED.ELF.2Zac Medico2012-01-311-0/+7
| | | | | This avoids an error from os.stat: TypeError: must be encoded string without NULL bytes, not str
* Use consistent indentation in output of `emerge -p --columns ${package}`Arfrever Frehtes Taifersar Arahesis2012-01-281-2/+2
| | | | regardless of ROOT.
* Delete needless parentheses.Arfrever Frehtes Taifersar Arahesis2012-01-281-5/+5
|
* Don't print ::${repository} for main repository in output ofArfrever Frehtes Taifersar Arahesis2012-01-283-31/+39
| | | | | `emerge -pv ${package}` by default. Add --verbose-main-repo-display option, which enables printing ::${repository} for main repository.
* Apply INSTALL_MASK prior to reading the treeBrian Harring2012-01-271-9/+9
| | | | | | | | If this isn't done, collision-protect uses the old cached filelist, leading to it complaining about things that INSTALL_MASK sorted already. BUGS=chromium-os:25060 TEST=emerge sudo && emerge chromeos-base
* Fix display of installed version for packages, which have multiple slotsArfrever Frehtes Taifersar Arahesis2012-01-231-2/+3
| | | | installed. Follow-up to commit 8118be36842a2db2eb72538e21a3b343773b3365.
* Make the second part of_emerge.resolver.output.Display.verbose_size()Arfrever Frehtes Taifersar Arahesis2012-01-221-26/+24
| | | | | conditional on self.quiet_repo_display instead of earlier returning if self.quiet_repo_display is False. No functional changes.
* Print [${old_version}::${old_repository}] in output of `emerge -pv ${package}`Arfrever Frehtes Taifersar Arahesis2012-01-221-1/+3
| | | | | when ${old_version} is the same as ${new_version}, but ${old_repository} is different than ${new_repository}.
* Print ::${repository} in output of `emerge -pv ${package}` by default.Arfrever Frehtes Taifersar Arahesis2012-01-213-18/+46
| | | | Add --quiet-repo-display option, which enables previous, more quiet output.
* Fix --changed-use interaction with bug 297549.Zac Medico2012-01-201-8/+16
| | | | | | | | The automatic --binpkg-respect-use code (from bug #297549) was inappropriately overriding --changed-use and triggering behavior like --newuse, as reported here: http://archives.gentoo.org/gentoo-dev/msg_6070ab87737d7e16a5cec2a72c9111fd.xml
* fix comment garbage from last commitZac Medico2012-01-171-1/+1
|
* xml/metadata.py: handle ExpatErrorZac Medico2012-01-171-2/+9
|
* Support repository dependencies in EAPI="4-python".Arfrever Frehtes Taifersar Arahesis2012-01-163-5/+15
|
* create_world_atom: multi-repo portdbapi aux_getZac Medico2012-01-151-4/+31
| | | | | This handles a KeyError raised from portdbapi.aux_get() when one of the repositories has a corrupt ebuild.
* add support for compressing debug sections to save spaceMike Frysinger2012-01-142-3/+5
| | | | | | | | | | | Since binutils/gdb can compress the .debug* sections with zlib into .zdebug*, we should be able to save quite a bit of space -- on my system, I saw /usr/lib/debug/ go from ~20GB to ~7.5GB. This requires binutils/gdb to be built with USE=zlib which is why this defaults to off. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Apply INSTALL_MASK prior to collision-protect.Zac Medico2012-01-143-11/+26
| | | | It may be useful to avoid collisions in some scenarios.
* test_config: fix AttributeError: 'str'Zac Medico2012-01-121-1/+2
|
* depgraph: account for unevaluated_atom in cacheZac Medico2012-01-121-1/+1
|
* depgraph: unevaluated parent atom in debug outputZac Medico2012-01-121-2/+5
|
* Add --human-readable to rsync opts for bug 269410Zac Medico2012-01-121-0/+1
|
* read_corresponding_eapi_file: unicode, bug 398587Zac Medico2012-01-111-1/+3
|
* quickpkg: add leading ./ to names for bug 398543Zac Medico2012-01-111-1/+1
|
* portage.debug.trace_handler.__init__(): Fix compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2012-01-111-2/+2
|
* ExtendedAtomDict: fix for python-traceZac Medico2012-01-101-4/+7
|
* env_update: ldsoconf_update flag not reliableZac Medico2012-01-091-4/+0
| | | | | | | The ldsoconf_update flag was not a reliable indicator of whether or not ldconfig needs to be called, since ld.so.conf can have lines like "include ld.so.conf.d/*.conf" that pull in outside content which may have changed without being detected.
* Set REPOSITORY variable in ebuild environment in EAPI="4-python".Arfrever Frehtes Taifersar Arahesis2012-01-083-7/+15
|
* Set portage-1 as default profile format for repositories using EAPI="4-python".Arfrever Frehtes Taifersar Arahesis2012-01-081-1/+5
|
* Set eapi attribute on portage.repository.config.RepoConfig objects.Arfrever Frehtes Taifersar Arahesis2012-01-081-5/+8
|
* getlibpaths: regex for includeZac Medico2012-01-031-2/+6
|
* Support include directives in ld.so.conf.Michał Górny2012-01-031-1/+12
|
* RepoConfigLoader: don't mix duplicate repo configv2.2.0_alpha84Zac Medico2011-12-281-18/+17
| | | | | | | | RepoConfig.update() was being used to copy attributes from one instance to another, possibly leading to inappropriate mixing of layout.conf attributes from separate copies of the same repo. This is common with repoman, for example, when temporarily overriding an rsync repo with another copy of the same repo from CVS.
* RepoConfig.update(): copy more attributesZac Medico2011-12-273-10/+15
| | | | | | | | | | This fixes a regression since commit 10246cd535f909dda8bd05de617c32d2b8a56b4a which caused layout.conf settings such as thin-manifests to be ignored for repositories that had repos.conf settings that did not specify the repository location. In order to trigger this case, ResolverPlayground has been modified to omit the location of each repository in the repos.conf file that it generates.
* portage.repository.config.RepoConfigLoader: Rename _add_overlays() toArfrever Frehtes Taifersar Arahesis2011-12-251-2/+2
| | | | _add_repositories().
* Add FEATURES=config-protect-if-modified support.Zac Medico2011-12-242-1/+15
| | | | | This causes the CONFIG_PROTECT behavior to be skipped for files that have not been modified since they were installed.
* FakeVartree: implement self.dbapi._aux_cache_keysZac Medico2011-12-241-0/+1
| | | | This will fix bug #395879.
* Fix a typo in a doc string.Arfrever Frehtes Taifersar Arahesis2011-12-241-1/+1
|
* AbstractPollTask: note PipeReaderArrayTestCasev2.2.0_alpha82Zac Medico2011-12-231-2/+2
|
* depgraph.py: remove unused variablesZac Medico2011-12-231-3/+1
|
* _pty.py: remove unused _tested_pty variableZac Medico2011-12-221-2/+0
|
* _pty.py: remove _test_pty_eof()Zac Medico2011-12-222-175/+8
| | | | | | | | | | | If array.fromfile() is not used, then _test_pty_eof() is useless. This function was for runtime detection of python issue 5380: http://bugs.python.org/issue5380 However, array.fromfile() use has since been abandoned due to bugs that exist in all known versions of Python (including Python 2.7 and Python 3.2). See PipeReaderArrayTestCase, for example.
* config.setcpv(): use dbapi._aux_cache_keysZac Medico2011-12-221-1/+4
| | | | | This helps to avoid triggering the environment.bz2 extraction in vardbapi.aux_get().
* _aux_env_search: decode unicode moreZac Medico2011-12-221-0/+3
|
* fetch: don't apply permissions to symlinksZac Medico2011-12-221-9/+16
| | | | | | We don't want to modify anything outside of the primary DISTDIR, and symlinks typically point to PORTAGE_RO_DISTDIRS. This will fix bug #395705.
* search.py: use _aux_cache_keys moreZac Medico2011-12-211-1/+1
| | | | | This helps to avoid triggering the environment.bz2 extraction in vardbapi.aux_get().
* vardbapi._aux_get: unicode EAPI keyZac Medico2011-12-211-1/+1
|
* vardbapi._aux_get: search environment in one passZac Medico2011-12-211-43/+53
|
* vardbapi._aux_get: account for _aux_cache_keys_reZac Medico2011-12-211-1/+2
|