Zac Medico [Wed, 11 Mar 2009 03:44:14 +0000 (03:44 -0000)]
Make DepPriority.__str__() indicate optional deps. (trunk r12586)
svn path=/main/branches/2.1.6/; revision=12867
Zac Medico [Wed, 11 Mar 2009 03:44:00 +0000 (03:44 -0000)]
Inside depgraph._serialize_tasks(), simplify the logic which delays selection
of root nodes. (trunk r12585)
svn path=/main/branches/2.1.6/; revision=12866
Zac Medico [Wed, 11 Mar 2009 03:40:57 +0000 (03:40 -0000)]
For python-3.0 compatibility, make dict-like classes modify their keys(),
items(), and values() methods appropriatly for the current python version.
(trunk r12584)
svn path=/main/branches/2.1.6/; revision=12865
Zac Medico [Wed, 11 Mar 2009 03:40:36 +0000 (03:40 -0000)]
Warn about WANT_AUTO(CONF|MAKE)=latest settings since they are redundant.
Thanks to Petteri Räty <betelgeuse@g.o> for the initial patch. (trunk r12583)
svn path=/main/branches/2.1.6/; revision=12864
Zac Medico [Wed, 11 Mar 2009 03:40:20 +0000 (03:40 -0000)]
Fix the priorities display in digraph.debug_print() so it shows the highest
priority (since multiple priorities are now supported). (trunk r12582)
svn path=/main/branches/2.1.6/; revision=12863
Zac Medico [Wed, 11 Mar 2009 03:39:50 +0000 (03:39 -0000)]
Fix Scheduler._find_system_deps() so that it only traverses runtime deps.
(trunk r12581)
svn path=/main/branches/2.1.6/; revision=12862
Zac Medico [Wed, 11 Mar 2009 03:39:31 +0000 (03:39 -0000)]
Add support in digraph for multiple priorities per edge and support for
callable ignore_priority arguments that can be used for finer grained
filtering. (trunk r12580)
svn path=/main/branches/2.1.6/; revision=12861
Zac Medico [Wed, 11 Mar 2009 03:39:14 +0000 (03:39 -0000)]
Add UnmergeDepPriority.optional attribute, to avoid traceback. (trunk r12579)
svn path=/main/branches/2.1.6/; revision=12860
Zac Medico [Wed, 11 Mar 2009 03:38:48 +0000 (03:38 -0000)]
Bug #256616 - Also consider deep runtime dependencies of system packages when
adding packages to merge_wait_queue. (trunk r12578)
svn path=/main/branches/2.1.6/; revision=12859
Zac Medico [Wed, 11 Mar 2009 03:38:21 +0000 (03:38 -0000)]
For optional deps pulled in by --with-bdeps=y, set DepPriority.buildtime to
False. (trunk r12577)
svn path=/main/branches/2.1.6/; revision=12858
Zac Medico [Wed, 11 Mar 2009 03:37:34 +0000 (03:37 -0000)]
Add a DepPriority.optional attribute for optional build time deps that are
pulled in by --with-bdeps=y. (trunk r12576)
svn path=/main/branches/2.1.6/; revision=12857
Zac Medico [Wed, 11 Mar 2009 03:36:37 +0000 (03:36 -0000)]
Make emerge --regen return non-zero if that are any failures. Thanks to Daniel
Robbins for reporting. (trunk r12575)
svn path=/main/branches/2.1.6/; revision=12856
Zac Medico [Wed, 11 Mar 2009 03:36:24 +0000 (03:36 -0000)]
Use portage.util.cmp_sort_key for python-3.0 compatibility. (trunk r12574)
svn path=/main/branches/2.1.6/; revision=12855
Zac Medico [Wed, 11 Mar 2009 03:36:10 +0000 (03:36 -0000)]
Use portage.util.cmp_sort_key for python-3.0 compatibility. (trunk r12573)
svn path=/main/branches/2.1.6/; revision=12854
Zac Medico [Wed, 11 Mar 2009 03:35:50 +0000 (03:35 -0000)]
Use portage.util.cmp_sort_key for python-3.0 compatibility. (trunk r12572)
svn path=/main/branches/2.1.6/; revision=12853
Zac Medico [Wed, 11 Mar 2009 03:35:29 +0000 (03:35 -0000)]
Add a cmp_sort_key class which makes it easier to port code for python-3.0
compatibility. It works by generating key objects which use the given cmp
function to implement their __lt__ method. (trunk r12571)
svn path=/main/branches/2.1.6/; revision=12852
Zac Medico [Wed, 11 Mar 2009 03:33:03 +0000 (03:33 -0000)]
In depgraph._serialize_tasks(), when separating uninstall nodes from leaf
nodes, do it earlier so that it covers more code paths. (trunk r12570)
svn path=/main/branches/2.1.6/; revision=12851
Zac Medico [Wed, 11 Mar 2009 03:32:45 +0000 (03:32 -0000)]
Bug #256616 - Since dependencies on system packages are frequently unspecified,
merge them only when no builds are executing. When a system package finishes
building, it's added to a wait queue that is only processed when the number
of running builds drops to zero. All pending merges are then processed before
any new builds are allowed to start. (trunk r12569)
svn path=/main/branches/2.1.6/; revision=12850
Zac Medico [Wed, 11 Mar 2009 03:32:05 +0000 (03:32 -0000)]
Fix logic inside depgraph._serialize_tasks() to avoid the circular runtime
deps path in some cases when it's not appropriate. This solves a case that
was reported, in which the perl was merged before libperl due do perl and
lots of it's deps being selected all at once. In this case, so many packages
were selected at once that the cmp_circular_bias() sort did not order them
very well (though it normally works fine with a smaller number of packages).
Thanks to Daniel Robbins for reporting this issue and helping me reproduce
it. (trunk r12568)
svn path=/main/branches/2.1.6/; revision=12849
Zac Medico [Wed, 11 Mar 2009 03:31:39 +0000 (03:31 -0000)]
Implement Manifest2Entry.__ne__() so that comparisons inside Manifest.write()
work properly (to avoid rewriting an identical manifest when possible).
(trunk r12567)
svn path=/main/branches/2.1.6/; revision=12848
Zac Medico [Wed, 11 Mar 2009 03:30:14 +0000 (03:30 -0000)]
Always ignore hidden files when generating Manifests. Thanks to Christian
Ruppert for reporting. (trunk r12566)
svn path=/main/branches/2.1.6/; revision=12847
Zac Medico [Wed, 11 Mar 2009 03:29:40 +0000 (03:29 -0000)]
Fix color in merge list [ebuild ] display, so it's the same regardless of
$ROOT. (trunk r12560)
svn path=/main/branches/2.1.6/; revision=12846
Zac Medico [Wed, 11 Mar 2009 03:29:04 +0000 (03:29 -0000)]
(trunk r12559)
svn path=/main/branches/2.1.6/; revision=12845
Zac Medico [Wed, 11 Mar 2009 03:27:55 +0000 (03:27 -0000)]
In EbuildFetcher._start(), don't touch the build dir when in prefetch mode.
In this case, logging goes to emerge-fetch.log and the builddir should not be
touched since otherwise it could interfere with another instance of the same
cpv concurrently being built for a different $ROOT (currently, builds only
cooperate with prefetchers that are spawned for the same $ROOT). Thanks to
Daniel Robbins for reporting this issue. (trunk r12558)
svn path=/main/branches/2.1.6/; revision=12844
Zac Medico [Wed, 11 Mar 2009 03:27:27 +0000 (03:27 -0000)]
When scheduling builds in parallel for --jobs, avoid potential build dir
collisions in cases when the same exact cpv needs to be merged to multiple
$ROOTs (like when building stages). Thanks for Daniel Robbins for reporting
this issue and troubleshooting it. (trunk r12557)
svn path=/main/branches/2.1.6/; revision=12843
Zac Medico [Wed, 11 Mar 2009 03:26:55 +0000 (03:26 -0000)]
Fix die() usage in ebuild phase examples. Thanks to Jeremy Olexa
<darkside@g.o> for this patch. (trunk r12556)
svn path=/main/branches/2.1.6/; revision=12842
Zac Medico [Wed, 11 Mar 2009 03:26:32 +0000 (03:26 -0000)]
Add messages before and after the src_prepare phase. Thanks to Arfrever for
this patch. (trunk r12555)
svn path=/main/branches/2.1.6/; revision=12841
Zac Medico [Wed, 11 Mar 2009 03:26:10 +0000 (03:26 -0000)]
Remove the emerge-fetch.log lock message code from fetch() since this is
handled by the EbuildBuild class when it synchronizes with the prefetcher.
(trunk r12554)
svn path=/main/branches/2.1.6/; revision=12840
Zac Medico [Wed, 11 Mar 2009 03:25:45 +0000 (03:25 -0000)]
Inside fetch(), only mention /var/log/emerge-fetch.log in locking messages
when called by emerge. (trunk r12553)
svn path=/main/branches/2.1.6/; revision=12839
Zac Medico [Wed, 11 Mar 2009 03:25:16 +0000 (03:25 -0000)]
Inside depgraph._dep_expand(), filter use dbapi.cp_list() to filter out
any results from dbapi.cp_all() that happen to not contain any ebuilds.
Thanks to Jeremy Olexa <darkside@g.o> for reporting. (trunk r12552)
svn path=/main/branches/2.1.6/; revision=12838
Zac Medico [Wed, 11 Mar 2009 03:24:21 +0000 (03:24 -0000)]
Add an ignore_priority parameter to digraph.parent_nodes(). (trunk r12551)
svn path=/main/branches/2.1.6/; revision=12837
Zac Medico [Wed, 11 Mar 2009 03:23:58 +0000 (03:23 -0000)]
Fix typo in previous commit. (trunk r12550)
svn path=/main/branches/2.1.6/; revision=12836
Zac Medico [Wed, 11 Mar 2009 03:23:43 +0000 (03:23 -0000)]
Inside depgraph._add_dep(), drop unnecessary build-time deps if there is
no package available to satisfy it. (trunk r12549)
svn path=/main/branches/2.1.6/; revision=12835
Zac Medico [Wed, 11 Mar 2009 03:23:16 +0000 (03:23 -0000)]
Inside depgraph.loadResumeCommand(), always enable deep traversal of
dependencies. This is necessary for correct --keep-going or --resume operation
in case a package from a group of circularly dependent packages fails.
(trunk r12548)
svn path=/main/branches/2.1.6/; revision=12834
Zac Medico [Wed, 11 Mar 2009 03:22:52 +0000 (03:22 -0000)]
Inside depgraph.loadResumeCommand(), when appropriate, complete the graph
before analyzing any unsatisfied deps that may exist. (trunk r12547)
svn path=/main/branches/2.1.6/; revision=12833
Zac Medico [Wed, 11 Mar 2009 03:22:25 +0000 (03:22 -0000)]
Make depgraph._add_dep() ignore fewer dependencies when not in --deep mode, by
making it so that it will always account for dependencies on packages that are
already installed. (trunk r12546)
svn path=/main/branches/2.1.6/; revision=12832
Zac Medico [Wed, 11 Mar 2009 03:21:20 +0000 (03:21 -0000)]
Make listdir(ignorecvs=True) ignore .git directories. Thanks to Christian
Ruppert for the suggestion. (trunk r12545)
svn path=/main/branches/2.1.6/; revision=12831
Zac Medico [Wed, 11 Mar 2009 03:21:01 +0000 (03:21 -0000)]
Fix interaction between ignorelist and ignorecvs parameters inside cacheddir().
Thanks to Christian Ruppert for reporting. (trunk r12544)
svn path=/main/branches/2.1.6/; revision=12830
Zac Medico [Wed, 11 Mar 2009 03:20:18 +0000 (03:20 -0000)]
Bug #199408 - Always enable the skip_masked and skip_unsatisfied for the
resume_depgraph() function. This will cause emerge --resume to automatically
drop masked packages (without the need to specify --skipfirst). (trunk r12543)
svn path=/main/branches/2.1.6/; revision=12829
Zac Medico [Wed, 11 Mar 2009 03:19:54 +0000 (03:19 -0000)]
In depgraph.loadResumeCommand(), account for unsatisfied dependencies of
installed packages if they are in the subgraph of dependencies of a package
which is scheduled to be installed. (trunk r12542)
svn path=/main/branches/2.1.6/; revision=12828
Zac Medico [Wed, 11 Mar 2009 03:18:49 +0000 (03:18 -0000)]
Inside depgraph.loadResumeCommand(), ignore unsatisified dependencies that
are pulled in by installed packages. This is needed in order to avoid having
--keep-going bail out needlessly when one of a group of circularly dependent
packages fails to install after one or more of the group have already been
installed. TODO: Add sanity checks to make sure that it's really safe to
ignore all the deps that can be ignored by this code. (trunk r12541)
svn path=/main/branches/2.1.6/; revision=12827
Zac Medico [Wed, 11 Mar 2009 03:17:50 +0000 (03:17 -0000)]
When in --keep-going mode, don't suppress the list of failed packages display
at the end when there is only one failure, since the failure may have occurred
much earlier and the related output may not be visible any longer.
(trunk r12540)
svn path=/main/branches/2.1.6/; revision=12826
Zac Medico [Fri, 20 Feb 2009 03:01:56 +0000 (03:01 -0000)]
Fix svn:keywords again.
svn path=/main/branches/2.1.6/; revision=12660
Zac Medico [Thu, 19 Feb 2009 22:52:30 +0000 (22:52 -0000)]
Add back Rev to svn:keywords (accidentally removed when setting Id). Thanks
to ABCD for reporting.
svn path=/main/branches/2.1.6/; revision=12657
Zac Medico [Wed, 18 Feb 2009 22:52:56 +0000 (22:52 -0000)]
Set svn:keywords Id on all files.
svn path=/main/branches/2.1.6/; revision=12627
Zac Medico [Sun, 18 Jan 2009 23:43:54 +0000 (23:43 -0000)]
Bug #255358 - Add new RDEPEND.implicit warning to detect the caes where DEPEND
is set and RDEPEND is unset in the ebuild, since this triggers implicit
RDEPEND=$DEPEND assignment. (trunk r12529)
svn path=/main/branches/2.1.6/; revision=12537
Zac Medico [Sun, 18 Jan 2009 23:43:41 +0000 (23:43 -0000)]
Fix false positive in the 'unused local USE-description' warning. Thanks to
Alexis Ballier <aballier@g.o> for reporting. (trunk r12524)
svn path=/main/branches/2.1.6/; revision=12536
Zac Medico [Sun, 18 Jan 2009 23:43:13 +0000 (23:43 -0000)]
Identify which package has unused local USE descriptions, in case more than
one package is being scanned. Thanks to Thomas Sachau <tommy@g.o> for reporting.
(trunk r12523)
svn path=/main/branches/2.1.6/; revision=12535
Zac Medico [Sun, 18 Jan 2009 23:43:01 +0000 (23:43 -0000)]
Revert chown behavior change from the previous commit, so that chown will
not be called on a pre-existing file. (trunk r12522)
svn path=/main/branches/2.1.6/; revision=12534
Zac Medico [Sun, 18 Jan 2009 23:42:53 +0000 (23:42 -0000)]
Bug #255101 - Fix 'Permission denied' error handling in
NewsManager.getUnreadItems(). If there's no permission to lock the unread
file, skip the lock and try to read the file anyway. (trunk r12521)
svn path=/main/branches/2.1.6/; revision=12533
Zac Medico [Sun, 18 Jan 2009 23:42:31 +0000 (23:42 -0000)]
Call depgraph._set_args() inside _load_favorites(), to eliminate duplicate
code. (trunk r12520)
svn path=/main/branches/2.1.6/; revision=12532
Zac Medico [Sun, 18 Jan 2009 23:42:14 +0000 (23:42 -0000)]
Drop the kernel version from the commit message for all platforms. Thanks to
Fabian Groffen <grobian@g.o> for the suggestion. (trunk r12519)
svn path=/main/branches/2.1.6/; revision=12531
Zac Medico [Sun, 18 Jan 2009 23:42:03 +0000 (23:42 -0000)]
Don't show the running Linux kernel version in the commit message, since it
might leak information that would be useful to attackers. Thanks to Ned Ludd
<solar@g.o> for the suggestion. (trunk r12518)
svn path=/main/branches/2.1.6/; revision=12530
Zac Medico [Wed, 14 Jan 2009 07:48:49 +0000 (07:48 -0000)]
Fix repoman conditionals inside _expand_new_virtuals() to use
config.local_config instead of checking for portdbapi type. (trunk r12514)
svn path=/main/branches/2.1.6/; revision=12515
Zac Medico [Wed, 14 Jan 2009 03:59:53 +0000 (03:59 -0000)]
Add some more variables to config._env_blacklist to ensure that they never
leak in from the calling environment. (trunk r12503)
svn path=/main/branches/2.1.6/; revision=12513
Zac Medico [Wed, 14 Jan 2009 03:59:43 +0000 (03:59 -0000)]
Make sure spawn() always initializes opt_name because later code assumes that it is.
(trunk r12502)
svn path=/main/branches/2.1.6/; revision=12512
Zac Medico [Wed, 14 Jan 2009 03:59:31 +0000 (03:59 -0000)]
In spawn(), put the full cpv in opt_name, instead of just $PF. Thanks to
Diego Pettenò <flameeyes@g.o> for the suggestion. (trunk r12501)
svn path=/main/branches/2.1.6/; revision=12511
Zac Medico [Wed, 14 Jan 2009 03:58:33 +0000 (03:58 -0000)]
Bug #254825 - Add a note about the need to use `ebuild --force <ebuild file>
manifest` to update distfiles digests. (trunk r12500)
svn path=/main/branches/2.1.6/; revision=12510
Zac Medico [Wed, 14 Jan 2009 03:58:08 +0000 (03:58 -0000)]
Inside digestgen(), don't unnecessarily call fetch() in cases when the there
are no hashes for comparison and the file already exists in $DISTDIR.
(trunk r12499)
svn path=/main/branches/2.1.6/; revision=12509
Zac Medico [Wed, 14 Jan 2009 03:57:56 +0000 (03:57 -0000)]
Bug #254825 - Improve messages that are displayed when manifest generation
bails out due to a changed distfile digest. (trunk r12498)
svn path=/main/branches/2.1.6/; revision=12508
Zac Medico [Wed, 14 Jan 2009 03:57:29 +0000 (03:57 -0000)]
Bug #254860 - Add another missing str -> atom conversion inside
_expand_new_virtuals(). (trunk r12497)
svn path=/main/branches/2.1.6/; revision=12507
Zac Medico [Wed, 14 Jan 2009 03:56:53 +0000 (03:56 -0000)]
Use a new 'usersync' feature to control dropping of privileges for --sync,
since it's fairly common for people to have inconsistent permissions between
$PORTDIR and contained files/directories. (trunk r12496)
svn path=/main/branches/2.1.6/; revision=12506
Zac Medico [Wed, 14 Jan 2009 03:56:38 +0000 (03:56 -0000)]
Bug #254860 - Inside _expand_new_virtuals(), generate instances of Atom
instead of plain strings, so calling code can assume that only Atom instances
will be returned when strict mode is enabled. (trunk r12495)
svn path=/main/branches/2.1.6/; revision=12505
Zac Medico [Wed, 14 Jan 2009 03:56:21 +0000 (03:56 -0000)]
Simplify depgraph._select_pkg_from_graph() by using match_pkgs(). (trunk r12494)
svn path=/main/branches/2.1.6/; revision=12504
Zac Medico [Mon, 12 Jan 2009 17:48:50 +0000 (17:48 -0000)]
When selecting greedy package inside depgraph._greedy_slots(), make sure
the selected packages have the same cp as the highest selected version.
(trunk r12490)
svn path=/main/branches/2.1.6/; revision=12491
Zac Medico [Mon, 12 Jan 2009 17:37:07 +0000 (17:37 -0000)]
Mention the blocker_lookahead parameter in the depgraph._greedy_slots()
docstring. (trunk r12488)
svn path=/main/branches/2.1.6/; revision=12489
Zac Medico [Mon, 12 Jan 2009 16:51:36 +0000 (16:51 -0000)]
When checking for conflicts between packages inside depgraph._greedy_slots(),
never double-check any of the pairs. (trunk r12486)
svn path=/main/branches/2.1.6/; revision=12487
Zac Medico [Mon, 12 Jan 2009 09:51:27 +0000 (09:51 -0000)]
Invalidate some more caches inside depgraph._set_args(). (trunk r12484)
svn path=/main/branches/2.1.6/; revision=12485
Zac Medico [Mon, 12 Jan 2009 08:32:05 +0000 (08:32 -0000)]
Replace @world with plain 'world'.
svn path=/main/branches/2.1.6/; revision=12483
Zac Medico [Mon, 12 Jan 2009 08:29:23 +0000 (08:29 -0000)]
Bug #241808 - When loading options for --resume, discard the --color option
so it doesn't override the current setting. (trunk r12428)
svn path=/main/branches/2.1.6/; revision=12482
Zac Medico [Mon, 12 Jan 2009 08:29:02 +0000 (08:29 -0000)]
Fix comment about the greedy slots code. (trunk r12429)
svn path=/main/branches/2.1.6/; revision=12481
Zac Medico [Mon, 12 Jan 2009 08:28:45 +0000 (08:28 -0000)]
Make the greedy slot atom code from bug #150361 look ahead for conflicts
between the packages that will be pulled in. If a conflict is discovered,
drop the greedy slot atom for the older slot. This solves a problem reported
by kde4 users when running `emerge -u <atom>` for a package that has the
kdeprefix flag disabled. In this case, the newer slot blocks the older slot.
In order to allow the older slot to be automatically uninstalled, the atom
for the older slot needs to be excluded from the graph. Thanks to Maciej
Mrozowski for testing this patch. (trunk r12427)
svn path=/main/branches/2.1.6/; revision=12480
Zac Medico [Mon, 12 Jan 2009 08:28:23 +0000 (08:28 -0000)]
Fix a TypeError which occurs in pretend commit mode when vcs is None. Thanks
to Fabian Groffen <grobian@g.o> for reporting. (trunk r12426)
svn path=/main/branches/2.1.6/; revision=12479
Zac Medico [Mon, 12 Jan 2009 08:28:04 +0000 (08:28 -0000)]
If necessary, use /proc/loadavg to emulate os.getloadavg(). (trunk r12422)
svn path=/main/branches/2.1.6/; revision=12478
Zac Medico [Mon, 12 Jan 2009 08:27:48 +0000 (08:27 -0000)]
When displaying parents of unsolved blockers, prefer parents that are not
directly involved in a conflict. (trunk r12421)
svn path=/main/branches/2.1.6/; revision=12477
Zac Medico [Mon, 12 Jan 2009 08:27:18 +0000 (08:27 -0000)]
When displaying parents of unsolved blockers, reduce noise by pruning packages
that are only pulled in by other conflict packages. (trunk r12420)
svn path=/main/branches/2.1.6/; revision=12476
Zac Medico [Mon, 12 Jan 2009 08:26:45 +0000 (08:26 -0000)]
Enable use.{mask,force} and package.use.{mask,forc} as-directory in profiles.
(trunk r12419)
svn path=/main/branches/2.1.6/; revision=12475
Zac Medico [Mon, 12 Jan 2009 08:26:29 +0000 (08:26 -0000)]
Bug #254421 - Make dir_get_metadata() handle 'Connection refused' socket.error
from ftplib connection attempt. (trunk r12418)
svn path=/main/branches/2.1.6/; revision=12474
Zac Medico [Mon, 12 Jan 2009 08:26:20 +0000 (08:26 -0000)]
Inside action_sync(), check for the git binary when necessary and bail out
with a helpful message if it doesn't exist. Thanks to Caleb Cushing
<xenoterracide@gmail.com> for the initial patch. (trunk r12417)
svn path=/main/branches/2.1.6/; revision=12473
Zac Medico [Mon, 12 Jan 2009 08:26:07 +0000 (08:26 -0000)]
Add a "quiet" parameter to the EOutput constructor, and also flush
stderr/stdout stream in the constructor. (trunk r12416)
svn path=/main/branches/2.1.6/; revision=12472
Zac Medico [Mon, 12 Jan 2009 08:25:56 +0000 (08:25 -0000)]
Use ebegin/eend to indicate when waiting for a lock and when it's acquired.
Thanks to Petteri Räty <belegeuse@g.o> for the suggestion. (trunk r12415)
svn path=/main/branches/2.1.6/; revision=12471
Zac Medico [Mon, 12 Jan 2009 08:25:35 +0000 (08:25 -0000)]
Inside config._getKeywords(), ignore -* in KEYWORDS, to prevent it from
causing preceeding values to be discarded. (trunk r12414)
svn path=/main/branches/2.1.6/; revision=12470
Zac Medico [Mon, 12 Jan 2009 08:24:58 +0000 (08:24 -0000)]
Add a new 'metadata.warning' category and a check which detects local USE
descriptions that are not used in any ebuilds. Thanks to Markus Meier
<maekke@g.o> for the initial patch. (trunk r12413)
svn path=/main/branches/2.1.6/; revision=12469
Zac Medico [Mon, 12 Jan 2009 08:24:29 +0000 (08:24 -0000)]
Bug #55321 - Add support for package.keywords in profiles. In profiles,
package.keywords modifies effective KEYWORDS values for a given ebuild. This
behavior is notably different from /etc/portage/package.keywords, which
instead modifies effective ACCEPT_KEYWORDS. (trunk r12409:12412)
svn path=/main/branches/2.1.6/; revision=12468
Zac Medico [Mon, 12 Jan 2009 08:22:20 +0000 (08:22 -0000)]
* Enable the recursive option in profile package.use parsing.
* Enable package.umask in all the same locations as package.mask. (trunk r12409)
svn path=/main/branches/2.1.6/; revision=12467
Zac Medico [Mon, 12 Jan 2009 08:21:52 +0000 (08:21 -0000)]
When there are unresolved blockers, display the conflicting packages along
with the packages that pulled them in (similar to the slot conflict display).
This is helpful for troubleshooting cases in which blockers don't solve
automatically and the reasons are not apparent from the normal merge list
display. (trunk r12408)
svn path=/main/branches/2.1.6/; revision=12466
Zac Medico [Mon, 12 Jan 2009 08:21:24 +0000 (08:21 -0000)]
Remove unused myblocker_parents variable inside depgraph._serialize_tasks().
(trunk r12406)
svn path=/main/branches/2.1.6/; revision=12465
Zac Medico [Mon, 12 Jan 2009 08:21:06 +0000 (08:21 -0000)]
Don't assume that the package metadata contains a "repository" key.
(trunk r12404)
svn path=/main/branches/2.1.6/; revision=12464
Zac Medico [Mon, 12 Jan 2009 08:20:47 +0000 (08:20 -0000)]
When merging a package from an overlay, append 'from $repository' to the
'>>> Emerging' message (where $repository is the repo_name of the source
repository). Thanks to Jeroen Roovers <jer@g.o> for the suggestion.
(trunk r12403)
svn path=/main/branches/2.1.6/; revision=12463
Zac Medico [Mon, 12 Jan 2009 08:20:30 +0000 (08:20 -0000)]
Make die() to show a message indicating the repository that an ebuild came
from, and do it during any phase for both ebuilds and binary packages. Now
PORTAGE_REPO_NAME is initialized inside config.setcpv() for both ebuilds
and binary packages, so it's always available inside ebuild.sh. (trunk r12402)
svn path=/main/branches/2.1.6/; revision=12462
Zac Medico [Mon, 12 Jan 2009 08:20:03 +0000 (08:20 -0000)]
Bug #253563 - Replace hardcoded green/red color strings with GOOD/BAD. Thanks
to Vsevolod Kozlov <sevakda@gmail.com> for the initial patch. (trunk r12401)
svn path=/main/branches/2.1.6/; revision=12461
Zac Medico [Mon, 12 Jan 2009 08:19:48 +0000 (08:19 -0000)]
Add some blank lines around the messages that suggest --without-mask and
--include-dev. Thanks to Ryan Hill <dirtyepic@g.o> for the suggestion.
(trunk r12400)
svn path=/main/branches/2.1.6/; revision=12460
Zac Medico [Mon, 12 Jan 2009 08:19:37 +0000 (08:19 -0000)]
Bug #253745 - Remove collision-protect from the sample FEATURES list since
protect-owned is enabled by default now. (trunk r12399)
svn path=/main/branches/2.1.6/; revision=12459
Zac Medico [Mon, 12 Jan 2009 08:19:22 +0000 (08:19 -0000)]
Bug #253800 - Fix FETCHCOMMAND examples for SRC_URI arrow compatibility.
(trunk r12398)
svn path=/main/branches/2.1.6/; revision=12458
Zac Medico [Mon, 12 Jan 2009 08:19:04 +0000 (08:19 -0000)]
Bug #253745 - Note that you need to ensure that neither protect-owned nor
collision-protect are enabled if you want to disable collision protection
completely. (trunk r12397)
svn path=/main/branches/2.1.6/; revision=12457
Zac Medico [Mon, 12 Jan 2009 08:18:36 +0000 (08:18 -0000)]
Bug #250469 - Fix unpack() so that deb2targz is called in a way such that
$DISTDIR write access is not required. (trunk r12389)
svn path=/main/branches/2.1.6/; revision=12456
Zac Medico [Mon, 12 Jan 2009 08:18:19 +0000 (08:18 -0000)]
Bug #254114 - Fix ValueError triggered by missing COUNTER. Also, fix broken
mtime check inside FakeVartree._sync(). (trunk r12388)
svn path=/main/branches/2.1.6/; revision=12455
Zac Medico [Mon, 12 Jan 2009 08:17:50 +0000 (08:17 -0000)]
Bug #252354 - Ensure that hardlinked files are not processed multiple times
when necessary. (trunk r12384:12387)
svn path=/main/branches/2.1.6/; revision=12454
Zac Medico [Mon, 12 Jan 2009 08:15:03 +0000 (08:15 -0000)]
Fix _setitem() to write the same format that's currently distributed in the
rsync tree. (trunk r12383)
svn path=/main/branches/2.1.6/; revision=12453
Zac Medico [Mon, 12 Jan 2009 08:14:44 +0000 (08:14 -0000)]
Remove print statement from previous commit. (trunk r12382)
svn path=/main/branches/2.1.6/; revision=12452