portage.git
15 years agoAdd missing noiselevel argument in writemsg_stdout() calls.
Zac Medico [Sat, 8 Aug 2009 22:06:14 +0000 (22:06 -0000)]
Add missing noiselevel argument in writemsg_stdout() calls.

svn path=/main/trunk/; revision=13954

15 years agoUse writemsg_stdout() for safe unicode output.
Zac Medico [Sat, 8 Aug 2009 22:03:54 +0000 (22:03 -0000)]
Use writemsg_stdout() for safe unicode output.

svn path=/main/trunk/; revision=13953

15 years agoMove global portage import to the top and add writemsg and
Zac Medico [Sat, 8 Aug 2009 21:45:57 +0000 (21:45 -0000)]
Move global portage import to the top and add writemsg and
writemsg_stdout imports for safe unicode output.

svn path=/main/trunk/; revision=13952

15 years agoSimplify command introspection inside usage().
Zac Medico [Sat, 8 Aug 2009 21:34:52 +0000 (21:34 -0000)]
Simplify command introspection inside usage().

svn path=/main/trunk/; revision=13951

15 years agoIn Task.__str__(), emulate tuple.__str__, but don't show 'foo' as u'foo' for
Zac Medico [Sat, 8 Aug 2009 21:18:15 +0000 (21:18 -0000)]
In Task.__str__(), emulate tuple.__str__, but don't show 'foo' as u'foo' for
unicode strings.

svn path=/main/trunk/; revision=13950

15 years agoAccount for hardlinks when computing SIZE metadata.
Zac Medico [Sat, 8 Aug 2009 19:24:56 +0000 (19:24 -0000)]
Account for hardlinks when computing SIZE metadata.

svn path=/main/trunk/; revision=13949

15 years agoUse writemsg_stdout() for safe unicode output.
Zac Medico [Fri, 7 Aug 2009 22:37:44 +0000 (22:37 -0000)]
Use writemsg_stdout() for safe unicode output.

svn path=/main/trunk/; revision=13948

15 years agoOpen repo_name in text mode (unicode).
Zac Medico [Fri, 7 Aug 2009 21:03:11 +0000 (21:03 -0000)]
Open repo_name in text mode (unicode).

svn path=/main/trunk/; revision=13947

15 years agoIn config.__setitem__(), convert keys/values to unicode in order to avoid
Zac Medico [Fri, 7 Aug 2009 08:47:47 +0000 (08:47 -0000)]
In config.__setitem__(), convert keys/values to unicode in order to avoid
potential UnicodeDecodeError exceptions later.

svn path=/main/trunk/; revision=13946

15 years agoConvert environment variables to unicode inside the config constructor, in
Zac Medico [Fri, 7 Aug 2009 08:31:39 +0000 (08:31 -0000)]
Convert environment variables to unicode inside the config constructor, in
order to avoid potential UnicodeDecodeError exceptions later.

svn path=/main/trunk/; revision=13945

15 years agoMake spawn decode unicode in order to avoid a potential UnicodeEncodeError
Zac Medico [Fri, 7 Aug 2009 08:21:56 +0000 (08:21 -0000)]
Make spawn decode unicode in order to avoid a potential UnicodeEncodeError
from os.execve().

svn path=/main/trunk/; revision=13944

15 years agoIn getconfig(), specify utf_8 encoding for py3k.
Zac Medico [Thu, 6 Aug 2009 22:44:45 +0000 (22:44 -0000)]
In getconfig(), specify utf_8 encoding for py3k.

svn path=/main/trunk/; revision=13943

15 years agoIn shlex_split(), don't encode unicode for py3k. Thanks to Arfrever.
Zac Medico [Thu, 6 Aug 2009 22:39:16 +0000 (22:39 -0000)]
In shlex_split(), don't encode unicode for py3k. Thanks to Arfrever.

svn path=/main/trunk/; revision=13942

15 years agoMake getconfig() return unicode type and remove corresponding env_update()
Zac Medico [Thu, 6 Aug 2009 21:58:41 +0000 (21:58 -0000)]
Make getconfig() return unicode type and remove corresponding env_update()
workaround from bug #280460.

svn path=/main/trunk/; revision=13941

15 years agoFix filter_loglevels() and filter_phases() to work with unicode.
Zac Medico [Thu, 6 Aug 2009 21:57:31 +0000 (21:57 -0000)]
Fix filter_loglevels() and filter_phases() to work with unicode.

svn path=/main/trunk/; revision=13940

15 years agoAdd a new portage.util.shlex_split() function to wrap all shlex.split() calls,
Zac Medico [Thu, 6 Aug 2009 21:47:56 +0000 (21:47 -0000)]
Add a new portage.util.shlex_split() function to wrap all shlex.split() calls,
since shlex.split() doesn't behave well with unicode strings.

svn path=/main/trunk/; revision=13939

15 years agoFilter PORTAGE_NONFATAL from the environment where appropriate.
Zac Medico [Thu, 6 Aug 2009 20:57:08 +0000 (20:57 -0000)]
Filter PORTAGE_NONFATAL from the environment where appropriate.

svn path=/main/trunk/; revision=13938

15 years agoBug #280521 - Update selinux support to use the libselinux swig wrapper api
Zac Medico [Thu, 6 Aug 2009 20:54:53 +0000 (20:54 -0000)]
Bug #280521 - Update selinux support to use the libselinux swig wrapper api
instead of python-selinux. Thanks to Chris PeBenito <pebenito@gentoo.org>
for the initial patch which I've tweaked with whitespace changes and
unicode support.

svn path=/main/trunk/; revision=13937

15 years agoImplement nonfatal().
Arfrever Frehtes Taifersar Arahesis [Thu, 6 Aug 2009 20:48:05 +0000 (20:48 -0000)]
Implement nonfatal().

svn path=/main/trunk/; revision=13936

15 years agoBug #277537 - Synchronize order of PATH elements with the order defined by
Zac Medico [Thu, 6 Aug 2009 19:26:48 +0000 (19:26 -0000)]
Bug #277537 - Synchronize order of PATH elements with the order defined by
/etc/profile (promote paths under /usr to the front). Thanks to Michał Górny
<gentoo@mgorny.alt.pl>.

svn path=/main/trunk/; revision=13935

15 years agoBug #277544 - Add missing -c switch in bzip2 arguments. Thanks to Michał Górny
Zac Medico [Thu, 6 Aug 2009 19:06:12 +0000 (19:06 -0000)]
Bug #277544 - Add missing -c switch in bzip2 arguments. Thanks to Michał Górny
<gentoo@mgorny.alt.pl> for the patch.

svn path=/main/trunk/; revision=13934

15 years agoInside _post_src_install_uid_fix() (since we're already walking the files
Zac Medico [Thu, 6 Aug 2009 18:55:44 +0000 (18:55 -0000)]
Inside _post_src_install_uid_fix() (since we're already walking the files
here), compute total size of installed files and save it as SIZE in the vardb.
This will be useful for the packagekit backend.

svn path=/main/trunk/; revision=13933

15 years agoConvert unicode if necessary before writing to stdout.
Zac Medico [Thu, 6 Aug 2009 09:27:54 +0000 (09:27 -0000)]
Convert unicode if necessary before writing to stdout.

svn path=/main/trunk/; revision=13932

15 years agoAdd unicode conversions in various logging code.
Zac Medico [Thu, 6 Aug 2009 09:18:49 +0000 (09:18 -0000)]
Add unicode conversions in various logging code.

svn path=/main/trunk/; revision=13931

15 years agoConvert paths to unicode when working with CONTENTS.
Zac Medico [Thu, 6 Aug 2009 08:25:23 +0000 (08:25 -0000)]
Convert paths to unicode when working with CONTENTS.

svn path=/main/trunk/; revision=13930

15 years agoFix broken os.walk call in _post_src_install_uid_fix().
Zac Medico [Thu, 6 Aug 2009 07:00:36 +0000 (07:00 -0000)]
Fix broken os.walk call in _post_src_install_uid_fix().

svn path=/main/trunk/; revision=13929

15 years agoUse realpath to resolve __file__ when searching for test inside main().
Zac Medico [Thu, 6 Aug 2009 05:47:03 +0000 (05:47 -0000)]
Use realpath to resolve __file__ when searching for test inside main().

svn path=/main/trunk/; revision=13928

15 years agoRemove odd os.getcwd() call used inside main() when searching for tests.
Zac Medico [Thu, 6 Aug 2009 05:37:52 +0000 (05:37 -0000)]
Remove odd os.getcwd() call used inside main() when searching for tests.

svn path=/main/trunk/; revision=13927

15 years agoDo not pass unicode strings into os.walk calls, since it can cause
Zac Medico [Thu, 6 Aug 2009 05:35:14 +0000 (05:35 -0000)]
Do not pass unicode strings into os.walk calls, since it can cause
internal os.path.join calls to raise UnicodeDecodeError.

svn path=/main/trunk/; revision=13926

15 years agoFix transposition of CodecInfo streamreader and streamwriter attributes
Zac Medico [Thu, 6 Aug 2009 01:05:43 +0000 (01:05 -0000)]
Fix transposition of CodecInfo streamreader and streamwriter attributes
inside _gen_missing_encodings(). This solves 'TypeError: an integer is
required' exceptions from codecs.open().readlines([sizehint]), triggered
when python is built with USE=build (stage 1). Thanks to Daniel Robbins
for reporting.

svn path=/main/trunk/; revision=13925

15 years agoFix UnicodeEncodeError in vardbapi._owners_cache._hash_str(), reported by
Zac Medico [Wed, 5 Aug 2009 18:46:46 +0000 (18:46 -0000)]
Fix UnicodeEncodeError in vardbapi._owners_cache._hash_str(), reported by
jlec on irc.

svn path=/main/trunk/; revision=13924

15 years agoBug #280460 - Fix UnicodeDecodeError in env_update() due to non-unicode
Zac Medico [Wed, 5 Aug 2009 18:07:45 +0000 (18:07 -0000)]
Bug #280460 - Fix UnicodeDecodeError in env_update() due to non-unicode
strings from getconfig(). TODO: Make getconfig() return unicode.

svn path=/main/trunk/; revision=13921

15 years agocorrect pointer, as pointed out by darkside in IRC
Fabian Groffen [Wed, 5 Aug 2009 17:43:10 +0000 (17:43 -0000)]
correct pointer, as pointed out by darkside in IRC

svn path=/main/trunk/; revision=13920

15 years agoFix insert_optional_args() to properly handle thinks like -Dk which require
Zac Medico [Wed, 5 Aug 2009 04:59:10 +0000 (04:59 -0000)]
Fix insert_optional_args() to properly handle thinks like -Dk which require
multiple substitutions of default arguments.

svn path=/main/trunk/; revision=13919

15 years agos/utf8/utf_8/ for consistency v2.2_rc36
Zac Medico [Wed, 5 Aug 2009 00:35:11 +0000 (00:35 -0000)]
s/utf8/utf_8/ for consistency

svn path=/main/trunk/; revision=13917

15 years agoFix the FEATURES=parse-eapi-ebuild-head regex to handle comments on the same
Zac Medico [Wed, 5 Aug 2009 00:27:15 +0000 (00:27 -0000)]
Fix the FEATURES=parse-eapi-ebuild-head regex to handle comments on the same
line, like this:

EAPI=2 #foo

Thanks to Markus Meier <maekke@gentoo.org> for reporting.

svn path=/main/trunk/; revision=13916

15 years agoOpen ld.so.conf as text (unicode).
Zac Medico [Wed, 5 Aug 2009 00:17:15 +0000 (00:17 -0000)]
Open ld.so.conf as text (unicode).

svn path=/main/trunk/; revision=13915

15 years agoIn _check_build_log(), open the log in text mode (unicode).
Zac Medico [Wed, 5 Aug 2009 00:12:39 +0000 (00:12 -0000)]
In _check_build_log(), open the log in text mode (unicode).

svn path=/main/trunk/; revision=13914

15 years agoOpen file in text mode (unicode) where appropriate.
Zac Medico [Wed, 5 Aug 2009 00:09:15 +0000 (00:09 -0000)]
Open file in text mode (unicode) where appropriate.

svn path=/main/trunk/; revision=13913

15 years agoOpen all files in binary mode for py3k compatibility.
Zac Medico [Tue, 4 Aug 2009 23:19:45 +0000 (23:19 -0000)]
Open all files in binary mode for py3k compatibility.

svn path=/main/trunk/; revision=13912

15 years agoFix bindbapi.aux_get and aux_update to work with py3k/unicode.
Zac Medico [Tue, 4 Aug 2009 23:07:57 +0000 (23:07 -0000)]
Fix bindbapi.aux_get and aux_update to work with py3k/unicode.

svn path=/main/trunk/; revision=13911

15 years agoAvoid UnicodeEncodeError with unicode package.mask comments. Thanks to
Zac Medico [Tue, 4 Aug 2009 22:45:47 +0000 (22:45 -0000)]
Avoid UnicodeEncodeError with unicode package.mask comments. Thanks to
Thanks to Scott Moreau (soreau) for reporting.

svn path=/main/trunk/; revision=13910

15 years agoFix vardbapi._aux_get() to always return unicode.
Zac Medico [Tue, 4 Aug 2009 21:40:32 +0000 (21:40 -0000)]
Fix vardbapi._aux_get() to always return unicode.

svn path=/main/trunk/; revision=13909

15 years agoFix tar_contents() to open files in binary mode for py3k compatibility.
Zac Medico [Tue, 4 Aug 2009 21:14:58 +0000 (21:14 -0000)]
Fix tar_contents() to open files in binary mode for py3k compatibility.

svn path=/main/trunk/; revision=13908

15 years agoAlways return unicode from vardbapi.aux_get().
Zac Medico [Tue, 4 Aug 2009 21:12:22 +0000 (21:12 -0000)]
Always return unicode from vardbapi.aux_get().

svn path=/main/trunk/; revision=13907

15 years agoDecode arguments to unicode if necessary (needed at least for unicode file
Zac Medico [Tue, 4 Aug 2009 20:00:20 +0000 (20:00 -0000)]
Decode arguments to unicode if necessary (needed at least for unicode file
names passed to the owners command).

svn path=/main/trunk/; revision=13906

15 years agoBug #280269 - Fix Atom.__str__ so that it doesn't try to encode a unicode
Zac Medico [Tue, 4 Aug 2009 19:40:57 +0000 (19:40 -0000)]
Bug #280269 - Fix Atom.__str__ so that it doesn't try to encode a unicode
string (resulting in UnicodeEncodeError). If an Atom instance is passed into
the constructor, just return the given instance.

svn path=/main/trunk/; revision=13905

15 years agoBug #280269 - Decode commandline arguments to unicode when necessary.
Zac Medico [Tue, 4 Aug 2009 19:27:24 +0000 (19:27 -0000)]
Bug #280269 - Decode commandline arguments to unicode when necessary.

svn path=/main/trunk/; revision=13904

15 years agoBug #280269 - Fix StaticFileSet.multiBuilder() to handle unicode filenames.
Zac Medico [Tue, 4 Aug 2009 19:20:34 +0000 (19:20 -0000)]
Bug #280269 - Fix StaticFileSet.multiBuilder() to handle unicode filenames.

svn path=/main/trunk/; revision=13903

15 years agoOpen CONTENTS in text mode (to avoid UnicodeEncodeError). Thanks to Markos
Zac Medico [Tue, 4 Aug 2009 18:45:48 +0000 (18:45 -0000)]
Open CONTENTS in text mode (to avoid UnicodeEncodeError). Thanks to Markos
Chandras <hwoarang@gentoo.org> for reporting.

svn path=/main/trunk/; revision=13902

15 years agoOpen log files in text mode (to avoid UnicodeEncodeError). Thanks to Markos
Zac Medico [Tue, 4 Aug 2009 18:26:27 +0000 (18:26 -0000)]
Open log files in text mode (to avoid UnicodeEncodeError). Thanks to Markos
Chandras <hwoarang@gentoo.org> for reporting.

svn path=/main/trunk/; revision=13901

15 years agoAvoid UnicodeEncodeError in writemsg(). Thanks to Markos Chandras
Zac Medico [Tue, 4 Aug 2009 18:09:46 +0000 (18:09 -0000)]
Avoid UnicodeEncodeError in writemsg(). Thanks to Markos Chandras
<hwoarang@gentoo.org> for reporting.

svn path=/main/trunk/; revision=13900

15 years agoBug #280275 - Fix exception: AttributeError: 'config' object has no attribute
Zac Medico [Tue, 4 Aug 2009 16:30:10 +0000 (16:30 -0000)]
Bug #280275 - Fix exception: AttributeError: 'config' object has no attribute
'_license_groups'.

svn path=/main/trunk/; revision=13898

15 years agoBug #280320 - Fix broken _emerge.main ImportError handler..
Zac Medico [Tue, 4 Aug 2009 16:05:50 +0000 (16:05 -0000)]
Bug #280320 - Fix broken _emerge.main ImportError handler..

svn path=/main/trunk/; revision=13895

15 years agoRevert the code from bug #278729 for now since it need to be redone in order
Zac Medico [Tue, 4 Aug 2009 09:14:46 +0000 (09:14 -0000)]
Revert the code from bug #278729 for now since it need to be redone in order
to account for the issue described in comment #3.

svn path=/main/trunk/; revision=13894

15 years agoIn the dep_zapdeps() code from bug #278729, set all_use_satisfied = False
Zac Medico [Tue, 4 Aug 2009 08:44:28 +0000 (08:44 -0000)]
In the dep_zapdeps() code from bug #278729, set all_use_satisfied = False
if the choice includes an unavailable package.

svn path=/main/trunk/; revision=13893

15 years agoFix dep_zapdeps exception 'ValueError: need more than 3 values to unpack'
Zac Medico [Tue, 4 Aug 2009 07:19:17 +0000 (07:19 -0000)]
Fix dep_zapdeps exception 'ValueError: need more than 3 values to unpack'
from r13888.

svn path=/main/trunk/; revision=13892

15 years agoBug #280259 - Fix emaint to call binarytree._load_pkgindex() for unicode
Zac Medico [Tue, 4 Aug 2009 07:09:35 +0000 (07:09 -0000)]
Bug #280259 - Fix emaint to call binarytree._load_pkgindex() for unicode
handling.

svn path=/main/trunk/; revision=13891

15 years agoBug #280259 - Fix binarytree to always open the Packages file as unicode.
Zac Medico [Tue, 4 Aug 2009 07:02:57 +0000 (07:02 -0000)]
Bug #280259 - Fix binarytree to always open the Packages file as unicode.

svn path=/main/trunk/; revision=13890

15 years agoBug #280259 - Use codecs.open() when reading the Packages file inside
Zac Medico [Tue, 4 Aug 2009 06:45:46 +0000 (06:45 -0000)]
Bug #280259 - Use codecs.open() when reading the Packages file inside
binarytree.inject(), in order to avoid a UnicodeDecodeError when the
file is later written as a unicode stream (via atomic_ofstream).

svn path=/main/trunk/; revision=13889

15 years agoFix a regression caused by the code from bug #278729, which causes incorrect
Zac Medico [Tue, 4 Aug 2009 06:18:13 +0000 (06:18 -0000)]
Fix a regression caused by the code from bug #278729, which causes incorrect
preference evaluation for cases like kde-base/nepomuk:
  || (
    >=dev-libs/soprano-2.3.0[clucene,dbus,raptor,redland]
    >=dev-libs/soprano-2.3.0[clucene,dbus,raptor,java]
  )

In cases like this we need to prefer the choice which is already satisfied
by current USE configuration. Thanks to Maciej Mrozowski <reavertm@poczta.fm>
for reporting.

svn path=/main/trunk/; revision=13888

15 years agoSet "emerge" xterm title at the beginning of running emerge.
Arfrever Frehtes Taifersar Arahesis [Tue, 4 Aug 2009 01:24:48 +0000 (01:24 -0000)]
Set "emerge" xterm title at the beginning of running emerge.

svn path=/main/trunk/; revision=13887

15 years agoAdd a PDEPEND.suspect category. v2.2_rc34 v2.2_rc35
Zac Medico [Tue, 4 Aug 2009 00:13:08 +0000 (00:13 -0000)]
Add a PDEPEND.suspect category.

svn path=/main/trunk/; revision=13884

15 years agoFix NameError from r13880. Thanks to Arfrever for reporting.
Zac Medico [Mon, 3 Aug 2009 23:43:52 +0000 (23:43 -0000)]
Fix NameError from r13880. Thanks to Arfrever for reporting.

svn path=/main/trunk/; revision=13883

15 years agoMake the USE=test RDEPEND check (bug #236786) also apply to PDEPEND.
Zac Medico [Mon, 3 Aug 2009 22:27:31 +0000 (22:27 -0000)]
Make the USE=test RDEPEND check (bug #236786) also apply to PDEPEND.

svn path=/main/trunk/; revision=13882

15 years agoBug #278729 - Inside dep_zapdeps(), ignore USE dependencies since we don't
Zac Medico [Mon, 3 Aug 2009 21:20:22 +0000 (21:20 -0000)]
Bug #278729 - Inside dep_zapdeps(), ignore USE dependencies since we don't
want USE settings to adversely affect || preference evaluation. Drop invalid
atoms inside _expand_new_virtuals() since we only want real Atom instances
inside dep_zapdeps().

svn path=/main/trunk/; revision=13881

15 years agoBug #278729 - Add an Atom.without_use attribute which is identical to the
Zac Medico [Mon, 3 Aug 2009 20:49:09 +0000 (20:49 -0000)]
Bug #278729 - Add an Atom.without_use attribute which is identical to the
atom itself, except without any USE dependencies.

svn path=/main/trunk/; revision=13880

15 years agoRemove the code from bug #278895 since we're going to need a daemon process
Zac Medico [Mon, 3 Aug 2009 20:13:17 +0000 (20:13 -0000)]
Remove the code from bug #278895 since we're going to need a daemon process
in the ebuild's login session in order to pass signals from the controlling
terminal to the detached session. A simple fifo-based approach in ebuild.sh
does not seem to work since bash's read builtin occasionally loses the fifo
data when it's 'Interrupted system call'. Maybe a python script will work
better for the session leader/daemon. NOTE: The daemon will also be useful
for implementing a fifo-based die helper (to replace the current signal-
based approach).

svn path=/main/trunk/; revision=13879

15 years agoOnly treat non-negative integers as valid in insert_optional_args().
Zac Medico [Sat, 1 Aug 2009 20:02:37 +0000 (20:02 -0000)]
Only treat non-negative integers as valid in insert_optional_args().

svn path=/main/trunk/; revision=13874

15 years agoAdd support for --usepkg=n so that it's possible to disable it on
Zac Medico [Sat, 1 Aug 2009 19:58:52 +0000 (19:58 -0000)]
Add support for --usepkg=n so that it's possible to disable it on
the command line after it's been enabled in EMERGE_DEFAULT_OPTS.
Also do the same for --usepkgonly, --getbinpkg, and --getbinpkgonly.

svn path=/main/trunk/; revision=13873

15 years agoAdd support for --complete-graph=n so that it's possible to disable it on
Zac Medico [Sat, 1 Aug 2009 18:58:23 +0000 (18:58 -0000)]
Add support for --complete-graph=n so that it's possible to disable it on
the command line after it's been enabled in EMERGE_DEFAULT_OPTS.

svn path=/main/trunk/; revision=13872

15 years agoIn the _check_build_log(), exclude output from dev-libs/yaz-3.0.47 which
Zac Medico [Fri, 31 Jul 2009 15:20:28 +0000 (15:20 -0000)]
In the _check_build_log(), exclude output from dev-libs/yaz-3.0.47 which
looks like this:

Configuration:
  Automake:                   ${SHELL} /var/tmp/portage/dev-libs/yaz-3.0.47/work/yaz-3.0.47/config/missing --run automake-1.10

Thanks to Robin H. Johnson <robbat2@gentoo.org> for reporting.

svn path=/main/trunk/; revision=13870

15 years agoIn depgraph._show_slot_collision_notice(), display $ROOT (if not /) with each
Zac Medico [Thu, 30 Jul 2009 23:58:41 +0000 (23:58 -0000)]
In depgraph._show_slot_collision_notice(), display $ROOT (if not /) with each
slot atom.

svn path=/main/trunk/; revision=13865

15 years agoBug #276264 - Advise manual removal of the metadata/cache/ direcory when using
Zac Medico [Thu, 30 Jul 2009 23:09:29 +0000 (23:09 -0000)]
Bug #276264 - Advise manual removal of the metadata/cache/ direcory when using
eclass-overrides.

svn path=/main/trunk/; revision=13864

15 years agoAdd a python-based setsid script for use with USERLAND=BSD.
Zac Medico [Thu, 30 Jul 2009 22:08:40 +0000 (22:08 -0000)]
Add a python-based setsid script for use with USERLAND=BSD.

svn path=/main/trunk/; revision=13863

15 years agoFix breakage in owners() handling of abs paths.
Zac Medico [Thu, 30 Jul 2009 21:45:00 +0000 (21:45 -0000)]
Fix breakage in owners() handling of abs paths.

svn path=/main/trunk/; revision=13862

15 years agoMove the setsid code (from bug #278895) as early as possible.
Zac Medico [Thu, 30 Jul 2009 21:29:45 +0000 (21:29 -0000)]
Move the setsid code (from bug #278895) as early as possible.

svn path=/main/trunk/; revision=13861

15 years agoUpdating find_updated_config_files function description
Mounir Lamouri [Thu, 30 Jul 2009 20:59:09 +0000 (20:59 -0000)]
Updating find_updated_config_files function description

svn path=/main/trunk/; revision=13860

15 years agoRename get_updated_config_files() to find_updated_config_files() and make
Zac Medico [Thu, 30 Jul 2009 20:48:08 +0000 (20:48 -0000)]
Rename get_updated_config_files() to find_updated_config_files() and make
it an iterator of tuples.

svn path=/main/trunk/; revision=13859

15 years agoAdd get_updated_config_files in portage API
Mounir Lamouri [Thu, 30 Jul 2009 20:36:02 +0000 (20:36 -0000)]
Add get_updated_config_files in portage API
chk_updated_cfg_files in _emerge API is now using get_updated_config_files
It lets other app to get updated config files without ouputs

svn path=/main/trunk/; revision=13858

15 years agoInside die(), only send the signal for subshell die support when we are
Zac Medico [Thu, 30 Jul 2009 07:31:06 +0000 (07:31 -0000)]
Inside die(), only send the signal for subshell die support when we are
actually in a subshell.

svn path=/main/trunk/; revision=13857

15 years agoBug #278895 - Make ebuild.sh clean up orphaned processes that may have been
Zac Medico [Thu, 30 Jul 2009 07:29:34 +0000 (07:29 -0000)]
Bug #278895 - Make ebuild.sh clean up orphaned processes that may have been
left behind by ebuild phases. This works by using setsid to create a new
login session for the ebuild.sh process, and `kill -s SIGHUP 0` to send
a SIGHUP signal to all processes in the session. The setsid is currently
not done on the python side since that would cause the sandbox process in
the session, and sandbox produces a warning message if it catches a SIGHUP
signal.

svn path=/main/trunk/; revision=13856

15 years agoFix depgraph._show_missed_update() to keep each $ROOT separate.
Zac Medico [Wed, 29 Jul 2009 22:44:21 +0000 (22:44 -0000)]
Fix depgraph._show_missed_update() to keep each $ROOT separate.

svn path=/main/trunk/; revision=13855

15 years agoAccount for $ROOT inside depgraph._show_missed_update_unsatisfied_dep().
Zac Medico [Wed, 29 Jul 2009 07:04:41 +0000 (07:04 -0000)]
Account for $ROOT inside depgraph._show_missed_update_unsatisfied_dep().

svn path=/main/trunk/; revision=13854

15 years agoRemove redundant loop inside depgraph._show_missed_update_slot_conflicts().
Zac Medico [Tue, 28 Jul 2009 23:32:19 +0000 (23:32 -0000)]
Remove redundant loop inside depgraph._show_missed_update_slot_conflicts().

svn path=/main/trunk/; revision=13853

15 years agoWhen backtracking due to an unsatisfied dependency, show a normal unsatisfied
Zac Medico [Tue, 28 Jul 2009 23:27:52 +0000 (23:27 -0000)]
When backtracking due to an unsatisfied dependency, show a normal unsatisfied
dependency message for the given atom. Thanks to Thomas Sachau
<tommy@gentoo.org> for reporting.

svn path=/main/trunk/; revision=13852

15 years agoFix --onlydeps breakage. Thanks to Arfrever for reporting.
Zac Medico [Sat, 25 Jul 2009 09:33:18 +0000 (09:33 -0000)]
Fix --onlydeps breakage. Thanks to Arfrever for reporting.

svn path=/main/trunk/; revision=13851

15 years agoBug #270040 - Make repoman parse the categories file from the overlay.
Zac Medico [Wed, 22 Jul 2009 18:26:52 +0000 (18:26 -0000)]
Bug #270040 - Make repoman parse the categories file from the overlay.

svn path=/main/trunk/; revision=13850

15 years agoAdd comment in calc_depclean() about topological sort optimization that
Zac Medico [Tue, 21 Jul 2009 20:33:11 +0000 (20:33 -0000)]
Add comment in calc_depclean() about topological sort optimization that
minimizes issues with implicit deps.

svn path=/main/trunk/; revision=13846

15 years agoAlways pass encodings='utf_8' to codecs.open(), since otherwise it can
Zac Medico [Mon, 20 Jul 2009 23:50:20 +0000 (23:50 -0000)]
Always pass encodings='utf_8' to codecs.open(), since otherwise it can
return non-unicode strings (at least in some cases, observed with
python-2.6.2). Don't use unicode in portage.util.getconfig() for now,
since shlex doesn't seem to support it (spurious \0 characters). If we
use unicode for config variables, it breaks shlex.split() calls on those
variables due to the same issue (spurious \0 characters).

svn path=/main/trunk/; revision=13845

15 years agoFEATURES=unmerge-logs
Zac Medico [Mon, 20 Jul 2009 22:43:41 +0000 (22:43 -0000)]
FEATURES=unmerge-logs
Keep logs from successful unmerge phases. This is relevant only when
PORT_LOGDIR is set.

Thanks to Diego Pettenò <flameeyes@gentoo.org> for the suggestion.

svn path=/main/trunk/; revision=13844

15 years agoRemove empty log files inside dblink.unmerge(). Thanks to Diego Pettenò
Zac Medico [Mon, 20 Jul 2009 22:13:32 +0000 (22:13 -0000)]
Remove empty log files inside dblink.unmerge(). Thanks to Diego Pettenò
<flameeyes@gentoo.org> for reporting.

svn path=/main/trunk/; revision=13843

15 years agoSkip Blocker instances inside _add_prefetchers().
Zac Medico [Mon, 20 Jul 2009 22:11:40 +0000 (22:11 -0000)]
Skip Blocker instances inside _add_prefetchers().

svn path=/main/trunk/; revision=13842

15 years agoMove mtimedb resume list code from action_build() to
Zac Medico [Mon, 20 Jul 2009 21:21:22 +0000 (21:21 -0000)]
Move mtimedb resume list code from action_build() to
Scheduler._save_resume_list().

svn path=/main/trunk/; revision=13841

15 years agoUse a lazy reference to sys.stdout, in case the API consumer has
Zac Medico [Mon, 20 Jul 2009 20:43:48 +0000 (20:43 -0000)]
Use a lazy reference to sys.stdout, in case the API consumer has
temporarily overridden stdout.

svn path=/main/trunk/; revision=13840

15 years agoMake portage.listdir() and dbapi.cp_list() return unicode.
Zac Medico [Mon, 20 Jul 2009 20:24:24 +0000 (20:24 -0000)]
Make portage.listdir() and dbapi.cp_list() return unicode.

svn path=/main/trunk/; revision=13839

15 years agoFix Scheduler bug:
Mounir Lamouri [Mon, 20 Jul 2009 20:23:16 +0000 (20:23 -0000)]
Fix Scheduler bug:
the scheduler was adding prefetcher even for uninstall tasks

svn path=/main/trunk/; revision=13838

15 years agoIn grablines(), specify encoding=sys.getdefaultencoding() in the codecs.open()
Zac Medico [Mon, 20 Jul 2009 18:57:18 +0000 (18:57 -0000)]
In grablines(), specify encoding=sys.getdefaultencoding() in the codecs.open()
parameters, since otherwise readlines doesn't return unicode (at least in
some cases, observed with python-2.6.2). Also, fix grabfile() to return
unicode when it normalizes whitespace.

svn path=/main/trunk/; revision=13837

15 years agoUse codecs.open for unicode support in FileLoader.load().
Zac Medico [Mon, 20 Jul 2009 17:50:07 +0000 (17:50 -0000)]
Use codecs.open for unicode support in FileLoader.load().

svn path=/main/trunk/; revision=13836

15 years agoIn _check_manifests(), skip uninstall operations.
Zac Medico [Sun, 19 Jul 2009 22:12:14 +0000 (22:12 -0000)]
In _check_manifests(), skip uninstall operations.

svn path=/main/trunk/; revision=13835