Zac Medico [Tue, 31 Mar 2009 22:16:51 +0000 (22:16 -0000)]
Add parsing code for --jobs and --load-average.
svn path=/main/trunk/; revision=13263
Zac Medico [Tue, 31 Mar 2009 20:14:03 +0000 (20:14 -0000)]
Add a new egencache --rsync option which enables a stat collision workaround
for cases in which the content of a cache entry changes and neither the file
mtime nor size changes (preventing rsync from detecting changes). See bug
#139134. This option should only be needed for distribution via something
like rsync, which relies on timestamps and file sizes to detect changes. It's
not needed with git since that uses a more thorough mechanism which allows it
to detect changed inode numbers (described in racy-git.txt in the git
technical docs).
svn path=/main/trunk/; revision=13262
Zac Medico [Tue, 31 Mar 2009 16:46:32 +0000 (16:46 -0000)]
Bug #263370 - In create_message(), use email.header.Header to wrap the
subject, as a workaround so that long subject lines are wrapped correctly
by <=python-2.6 (gentoo bug #263370, python issue #1974).
svn path=/main/trunk/; revision=13261
Zac Medico [Tue, 31 Mar 2009 08:51:19 +0000 (08:51 -0000)]
Bug #261377 - Add a new 'egencache' tool to generate metadata cache for
distribution. It only have the most basic functionality now, and more
features will be added later.
Usage: egencache [options] --update [atom] ...
Options:
-h, --help show this help message and exit
--update update metadata/cache/ (generate as necessary)
--cache-dir=CACHE_DIR
location of the metadata cache
--config-root=CONFIG_ROOT
location of portage config files
--jobs=JOBS max ebuild processes to spawn
--load-average=LOAD_AVERAGE
max load allowed when spawning multiple jobs
svn path=/main/trunk/; revision=13260
Zac Medico [Tue, 31 Mar 2009 07:38:08 +0000 (07:38 -0000)]
When in --quiet mode, still show a message for failures in
MetadataRegen._metadata_exit().
svn path=/main/trunk/; revision=13259
Zac Medico [Tue, 31 Mar 2009 07:12:00 +0000 (07:12 -0000)]
In MetadataRegen._metadata_exit(), notify the consumer of failures (in this
case the metadata argument is None).
svn path=/main/trunk/; revision=13258
Mike Frysinger [Tue, 31 Mar 2009 06:16:26 +0000 (06:16 -0000)]
reword the qa execstack notice since it can be triggered by pt_load sections and not stacks
svn path=/main/trunk/; revision=13257
Zac Medico [Tue, 31 Mar 2009 05:50:15 +0000 (05:50 -0000)]
Add a "consumer" keyword parameter to the MetadataRegen constructor which
can be used to pass in a callback that is called for each ebuild that is
processed (allowing access to the ebuild metadata).
svn path=/main/trunk/; revision=13256
Zac Medico [Mon, 30 Mar 2009 23:15:25 +0000 (23:15 -0000)]
Add support in MetadataRegen for cleansing stale cache when only a subset
of packages are processed.
svn path=/main/trunk/; revision=13255
Zac Medico [Mon, 30 Mar 2009 22:34:00 +0000 (22:34 -0000)]
Add a cp_iter keyword argument to the MetadataRegen constructor, which can be
used to do a regen for a subset of packages. TODO: Add support to cleanse
cache for the specific cp values that are processed.
svn path=/main/trunk/; revision=13254
Zac Medico [Mon, 30 Mar 2009 21:54:39 +0000 (21:54 -0000)]
Fix --newuse code to compare installed package USE to the USE that a binary
package was built with (instead of config["PORTAGE_USE"]).
svn path=/main/trunk/; revision=13253
Zac Medico [Mon, 30 Mar 2009 19:46:41 +0000 (19:46 -0000)]
Bug #264291 - Fix inappropriate build dir creation for emerge --fetchonly.
svn path=/main/trunk/; revision=13252
Zac Medico [Mon, 30 Mar 2009 06:44:20 +0000 (06:44 -0000)]
Implement _use_dep.__repr__(). Thanks to Douglass Anderson for the suggestion.
svn path=/main/trunk/; revision=13251
Zac Medico [Mon, 30 Mar 2009 05:59:23 +0000 (05:59 -0000)]
Update dep_getusedeps() docstring. Thanks to Douglass Anderson
<dja@gendja.com>.
svn path=/main/trunk/; revision=13250
Zac Medico [Sun, 29 Mar 2009 22:52:54 +0000 (22:52 -0000)]
Fix bug in old-style virtuals code from previous commit.
svn path=/main/trunk/; revision=13249
Zac Medico [Sun, 29 Mar 2009 22:26:53 +0000 (22:26 -0000)]
Inside depgraph.validate_blockers(), prevent false positives in PROVIDE
virtual blocker matches that can occur for packages for packages that don't
actual have the appropriate value in PROVIDE (triggered by profile 'virtuals'
settings). Thanks to Ned Ludd <solar@g.o> for reporting.
svn path=/main/trunk/; revision=13248
Zac Medico [Sun, 29 Mar 2009 19:32:57 +0000 (19:32 -0000)]
Document --root and --config-root.
svn path=/main/trunk/; revision=13247
Zac Medico [Sun, 29 Mar 2009 19:26:50 +0000 (19:26 -0000)]
Add a --root option that sets $ROOT (complements the --config-root option).
svn path=/main/trunk/; revision=13246
Zac Medico [Sun, 29 Mar 2009 19:15:01 +0000 (19:15 -0000)]
Add support for --rdeps-only and --root-deps options which are useful in
combination with $ROOT. Thanks to Ned Ludd <solar@g.o> for the initial
patch.
svn path=/main/trunk/; revision=13245
Zac Medico [Sun, 29 Mar 2009 04:09:11 +0000 (04:09 -0000)]
In order to eliminate the possibility of integer overflay, replace things like
((ret+=$?)) with ((ret|=$?)). Thanks to zong_sharo for the suggestion.
svn path=/main/trunk/; revision=13242
Zac Medico [Sat, 28 Mar 2009 19:35:46 +0000 (19:35 -0000)]
Bug #243220 - Show messages in emerge.log when old versions are uninstalled
for AUTOCLEAN. This reverts behavior so that messages which used to be
generated prior to portage-2.1.5.x (when AUTOCLEAN was moved from emerge to
dblink.treewalk()) are generated once again.
svn path=/main/trunk/; revision=13241
Zac Medico [Sat, 28 Mar 2009 01:39:49 +0000 (01:39 -0000)]
Don't show the package counter for "Uninstalling" messages.
svn path=/main/trunk/; revision=13240
Zac Medico [Sat, 28 Mar 2009 01:17:57 +0000 (01:17 -0000)]
Add (x of y ) package counter in the "Installing" message, similar to the
counter show in the "Emerging" message. Thanks to Ned Ludd <solar@g.o> for
the suggestion.
svn path=/main/trunk/; revision=13239
Zac Medico [Fri, 27 Mar 2009 09:40:15 +0000 (09:40 -0000)]
Make the argument hash in config.setcpv() a little stronger.
svn path=/main/trunk/; revision=13232
Zac Medico [Fri, 27 Mar 2009 07:23:05 +0000 (07:23 -0000)]
Fix typo in comment.
svn path=/main/trunk/; revision=13230
Zac Medico [Fri, 27 Mar 2009 07:01:21 +0000 (07:01 -0000)]
In config.setcpv(), make sure the current args are really identical to the
previous args before returning early.
svn path=/main/trunk/; revision=13227
Zac Medico [Fri, 27 Mar 2009 06:56:23 +0000 (06:56 -0000)]
Inside config.setcpv(), don't clear out self.configdict['pkg'] entirely
since some values need to be reused sometimes.
svn path=/main/trunk/; revision=13226
Zac Medico [Fri, 27 Mar 2009 05:48:47 +0000 (05:48 -0000)]
In portdbapi.findname2(), move some of the path joining out of the loop.
svn path=/main/trunk/; revision=13224
Zac Medico [Fri, 27 Mar 2009 04:46:20 +0000 (04:46 -0000)]
In dyn_unpack(), don't force a new unpack when the ebuild mtime is newer
than $WORKDIR, since that may be too touchy. The user can easily call
the clean phase explicitly if they really want it.
svn path=/main/trunk/; revision=13222
Zac Medico [Fri, 27 Mar 2009 03:12:23 +0000 (03:12 -0000)]
When copying symlink targets to temp files, use a private temp dir inside
$T instead of using $T directly.
svn path=/main/trunk/; revision=13202
Zac Medico [Fri, 27 Mar 2009 03:02:30 +0000 (03:02 -0000)]
For consistency in output with other helpers, check for file existence
before calling install.
svn path=/main/trunk/; revision=13201
Zac Medico [Thu, 26 Mar 2009 21:17:18 +0000 (21:17 -0000)]
Move checks for /usr/lib/distcc/bin and /usr/lib/ccache/bin to the python
side and don't add distcc to CC and CXX when /usr/lib/distcc/bin doesn't exist
since that won't necessarily work. Thanks to Jeroen Roovers <jer@g.o> for
reporting the issue with adding distcc to CC.
svn path=/main/trunk/; revision=13198
Zac Medico [Thu, 26 Mar 2009 20:42:56 +0000 (20:42 -0000)]
Make StaticFileSet.multiBuilder() filter hidden files and directories. Thanks
to oahong for reporting.
svn path=/main/trunk/; revision=13193
Zac Medico [Thu, 26 Mar 2009 18:55:11 +0000 (18:55 -0000)]
In config.regenerate(), always synchronize self.features with self['FEATURES'].
svn path=/main/trunk/; revision=13189
Zac Medico [Thu, 26 Mar 2009 18:41:10 +0000 (18:41 -0000)]
In config.setcpv(), clear out self.configdict["pkg"] to make sure that no
preexisting metadata leaks through here.
svn path=/main/trunk/; revision=13188
Zac Medico [Thu, 26 Mar 2009 01:40:22 +0000 (01:40 -0000)]
Bug #227265 - Make pkgsplit() allow multiple consecutive hyphens in package
names, and add corresponding test cases.
svn path=/main/trunk/; revision=13187
Zac Medico [Wed, 25 Mar 2009 23:50:16 +0000 (23:50 -0000)]
Add test case for consecutive hyphens.
svn path=/main/trunk/; revision=13186
Zac Medico [Wed, 25 Mar 2009 23:46:10 +0000 (23:46 -0000)]
Bug #227265 - Make pkgsplit() allow "versiony looking parts" in package names,
for pms compliance. Also, add corresponding test cases.
svn path=/main/trunk/; revision=13185
Zac Medico [Wed, 25 Mar 2009 20:26:56 +0000 (20:26 -0000)]
Source bashrc after PATH tweaks inside ebuild_main().
svn path=/main/trunk/; revision=13184
Zac Medico [Wed, 25 Mar 2009 20:13:56 +0000 (20:13 -0000)]
Move distcc and ccache PATH setup later, after EAPI is guaranteed to be known,
so that it's possible to do indepenent EAPI-specific PATH modifications prior
to the distcc/ccache modifications.
svn path=/main/trunk/; revision=13183
Zac Medico [Wed, 25 Mar 2009 01:23:04 +0000 (01:23 -0000)]
Fix domo and doexe to return non-zero if there are any errors. Thanks to
zong_sharo for reporting.
svn path=/main/trunk/; revision=13182
Zac Medico [Wed, 25 Mar 2009 00:34:18 +0000 (00:34 -0000)]
Remove unused tar_opts variable inside unpack(). Thanks to zong_sharo for
reporting.
svn path=/main/trunk/; revision=13181
Zac Medico [Tue, 24 Mar 2009 18:15:41 +0000 (18:15 -0000)]
Note that --noreplace takes precedence over options such as --newuse.
svn path=/main/trunk/; revision=13180
Zac Medico [Tue, 24 Mar 2009 18:10:49 +0000 (18:10 -0000)]
Note that --noreplace takes precedence over options such as --newuse.
svn path=/main/trunk/; revision=13179
Zac Medico [Tue, 24 Mar 2009 17:24:34 +0000 (17:24 -0000)]
Update code for removing noauto from FEATURES since config.features is a
set instead of a list now.
svn path=/main/trunk/; revision=13178
Zac Medico [Tue, 24 Mar 2009 04:37:51 +0000 (04:37 -0000)]
Remove redundant EAPI assingment inside doebuild_environment().
svn path=/main/trunk/; revision=13176
Zac Medico [Tue, 24 Mar 2009 02:48:27 +0000 (02:48 -0000)]
Add support for FEATURES=parse-eapi-glep-55. This feature is only intended for
experimental purposes and should not be enabled under normal circumstances.
svn path=/main/trunk/; revision=13175
Zac Medico [Mon, 23 Mar 2009 21:36:31 +0000 (21:36 -0000)]
If a package is masked by EAPI then don't show any other masking reasons.
svn path=/main/trunk/; revision=13174
Zac Medico [Mon, 23 Mar 2009 21:16:27 +0000 (21:16 -0000)]
Add support for FEATURES=parse-eapi-ebuild-head, which is similar to GLEP 55
except that the EAPI is parsed from the head of the ebuild (first 30 lines).
This feature is only intended for experimental purposes and should not be
enabled under normal circumstances.
svn path=/main/trunk/; revision=13173
Zac Medico [Mon, 23 Mar 2009 05:49:17 +0000 (05:49 -0000)]
When calling doebuild() to spawn the 'depend' phase, just call config.setcpv()
since that should be enough (no need for separate reset or reload calls).
svn path=/main/trunk/; revision=13170
Zac Medico [Mon, 23 Mar 2009 05:26:45 +0000 (05:26 -0000)]
Fix misc typos in comments.
svn path=/main/trunk/; revision=13168
Zac Medico [Mon, 23 Mar 2009 01:27:51 +0000 (01:27 -0000)]
Only check for ebuild/eclass modification when a relevant phase is called.
svn path=/main/trunk/; revision=13150
Zac Medico [Mon, 23 Mar 2009 00:57:29 +0000 (00:57 -0000)]
Use a separate if/then to group boolean or'd expressions together, rather
than a subshell.
svn path=/main/trunk/; revision=13149
Zac Medico [Mon, 23 Mar 2009 00:44:23 +0000 (00:44 -0000)]
Make ebuild(1) detect ebuild/eclass changes and automatically source the
ebuild atain in this case (even though $T/environment may already exist).
This should help avoid confusion by ensuring that the latest changes to
the ebuild/eclasses are reflected in the environment.
svn path=/main/trunk/; revision=13148
Zac Medico [Sun, 22 Mar 2009 23:54:49 +0000 (23:54 -0000)]
Add "prepare" to the list of phases that trigger a warning about stale
${T}/environment.
svn path=/main/trunk/; revision=13147
Zac Medico [Sun, 22 Mar 2009 23:47:49 +0000 (23:47 -0000)]
When triggering a fresh unpack inside dyn_unpack(), remove the
.prepared, .configured and .installed files along with the others.
svn path=/main/trunk/; revision=13146
Zac Medico [Sun, 22 Mar 2009 23:21:38 +0000 (23:21 -0000)]
Replace xrange() usage with normal iteration and enumerate() where
appropriate. Thanks to Douglass Anderson <dja@gendja.com> for the
initial patch.
svn path=/main/trunk/; revision=13145
Zac Medico [Sun, 22 Mar 2009 22:05:47 +0000 (22:05 -0000)]
Inside spawn(), avoid redundant os.access() and stat() calls on commonly
spawned binaries such as BASH_BINARY, SANDBOX_BINARY, and FAKEROOT_BINARY.
Thanks to Piotr Jaroszyński <peper@g.o> for reporting.
svn path=/main/trunk/; revision=13144
Zac Medico [Sun, 22 Mar 2009 21:31:23 +0000 (21:31 -0000)]
Inside config.environ(), skip stat call on $T/environment for phases such
as 'clean' and 'depend' where environment filtering isn't needed. Thanks to
Piotr Jaroszyński <peper@g.o> for reporting.
svn path=/main/trunk/; revision=13143
Zac Medico [Sun, 22 Mar 2009 08:42:19 +0000 (08:42 -0000)]
Remove pointless usage of xrange(). Thanks to Douglass Anderson
<dja@gendja.com> for this patch.
svn path=/main/trunk/; revision=13142
Zac Medico [Sun, 22 Mar 2009 08:37:07 +0000 (08:37 -0000)]
Add a temporary workaround for bug #263081 (partially reverts r12757).
svn path=/main/trunk/; revision=13141
Zac Medico [Sun, 22 Mar 2009 06:33:49 +0000 (06:33 -0000)]
Fix argument validation to allow file paths. Thanks to Arfrever for reporting.
svn path=/main/trunk/; revision=13140
Zac Medico [Fri, 20 Mar 2009 08:28:19 +0000 (08:28 -0000)]
Normalize try/except indentation for compatibility with 2to3.
svn path=/main/trunk/; revision=13139
Zac Medico [Thu, 19 Mar 2009 21:44:26 +0000 (21:44 -0000)]
Fix try/except indentation so that 2to3 will recognize it.
svn path=/main/trunk/; revision=13138
Zac Medico [Thu, 19 Mar 2009 21:42:25 +0000 (21:42 -0000)]
Fix try/except indentation so that 2to3 will recognize it.
svn path=/main/trunk/; revision=13137
Zac Medico [Wed, 18 Mar 2009 23:46:28 +0000 (23:46 -0000)]
Make sure mysettings.setcpv() always gets called when necessary inside
doebuild_environment().
svn path=/main/trunk/; revision=13136
Zac Medico [Wed, 18 Mar 2009 22:31:39 +0000 (22:31 -0000)]
Add docstrings for the fd_pipes and returnpid parameters of doebuild().
svn path=/main/trunk/; revision=13135
Zac Medico [Wed, 18 Mar 2009 21:57:12 +0000 (21:57 -0000)]
Make config.features a set instead of a list.
svn path=/main/trunk/; revision=13134
Zac Medico [Wed, 18 Mar 2009 01:43:41 +0000 (01:43 -0000)]
Update copyright headers.
svn path=/main/trunk/; revision=13131
Zac Medico [Wed, 18 Mar 2009 01:32:48 +0000 (01:32 -0000)]
In order to avoid possible duplicate elog messages when using ebuild(1) to
call the same phase multiple times, wipe out elog log files for the current
phase just before executing the phase. Thanks to Mike Frysinger <vapier@g.o>
for reporting.
svn path=/main/trunk/; revision=13130
Zac Medico [Tue, 17 Mar 2009 19:30:35 +0000 (19:30 -0000)]
Validate argument atoms earlier for build actions.
svn path=/main/trunk/; revision=13126
Zac Medico [Tue, 17 Mar 2009 06:39:39 +0000 (06:39 -0000)]
Remove portage.internal docs (goes with previous commit).
svn path=/main/trunk/; revision=13119
Zac Medico [Tue, 17 Mar 2009 05:52:27 +0000 (05:52 -0000)]
Bug #262365 - Punt the prepalldocs check until there is an alternative
available in EAPI 3.
svn path=/main/trunk/; revision=13118
Zac Medico [Tue, 17 Mar 2009 05:41:37 +0000 (05:41 -0000)]
Punt fix-db.py since it's not really needed. It's been broken since 2.1.6
and nobody noticed until bug #262132 was filed.
svn path=/main/trunk/; revision=13117
Zac Medico [Tue, 17 Mar 2009 05:35:50 +0000 (05:35 -0000)]
Bug #262485 - Handle InvalidAtom from dep_expand().
svn path=/main/trunk/; revision=13116
Zac Medico [Tue, 17 Mar 2009 01:18:21 +0000 (01:18 -0000)]
Do not create hardlinks when merging CONFIG_PROTECTed files since config
files shouldn't be hardlinked to eachother (for example, shadow installs
several identical config files inside /etc/pam.d/). Thanks to Caleb Cushing
<xenoterracide@gmail.com> for reporting.
svn path=/main/trunk/; revision=13115
Mike Frysinger [Sun, 15 Mar 2009 02:19:06 +0000 (02:19 -0000)]
add m68k diff from kolla
svn path=/main/trunk/; revision=13114
Zac Medico [Sat, 14 Mar 2009 19:27:26 +0000 (19:27 -0000)]
Add make.conf for amd64-fbsd submitted by Timothy Redaelli <drizzt@g.o>.
svn path=/main/trunk/; revision=13113
Zac Medico [Fri, 13 Mar 2009 19:45:01 +0000 (19:45 -0000)]
Bug #262365 - Make the "portage.internal" category (prepalldocs check) a
warning instead of fatal.
svn path=/main/trunk/; revision=13109
Zac Medico [Fri, 13 Mar 2009 18:37:23 +0000 (18:37 -0000)]
Tweak grammar.
svn path=/main/trunk/; revision=13108
Zac Medico [Fri, 13 Mar 2009 00:10:11 +0000 (00:10 -0000)]
Add missing brackets to [:upper:] and [:lower:] in _sb_append_var() tr
arguments.
svn path=/main/trunk/; revision=13104
Zac Medico [Thu, 12 Mar 2009 18:41:27 +0000 (18:41 -0000)]
Filter _sb_append_var in save_ebuild_env().
svn path=/main/trunk/; revision=13091
Mike Frysinger [Thu, 12 Mar 2009 12:15:30 +0000 (12:15 -0000)]
cleanup sandbox env var handling -- make sure we dont insert empty : sections and avoid unnecessary eval usage
svn path=/main/trunk/; revision=13090
Zac Medico [Thu, 12 Mar 2009 06:32:32 +0000 (06:32 -0000)]
Bug #261670 - Automatically revert the CHOST metadata to the initial value
after src_install, in case the ebuild has changed it.
svn path=/main/trunk/; revision=13088
Zac Medico [Thu, 12 Mar 2009 05:34:49 +0000 (05:34 -0000)]
Update docstring for EbuildBuildDir.clean_log().
svn path=/main/trunk/; revision=13072
Zac Medico [Thu, 12 Mar 2009 05:32:59 +0000 (05:32 -0000)]
Bug #261992 - Replace the EbuildBuildDir.clean() method with a clean_log()
method since log cleanup is all that's currently needed and shutil.rmtree()
can fail with "OSError: [Errno 36] File name too long" due to strange file
names, or on FreeBSD it can fail with EPERM due to file flags in $D.
svn path=/main/trunk/; revision=13071
Zac Medico [Thu, 12 Mar 2009 05:20:48 +0000 (05:20 -0000)]
Bug #261992 - Inside Binpkg._prefetch_exit(), avoid potention issues with
shutil.rmtree() by just doing a minimal cleanup.
svn path=/main/trunk/; revision=13070
Zac Medico [Thu, 12 Mar 2009 04:25:01 +0000 (04:25 -0000)]
Make dyn_clean ignore FEATURES=keepwork when [[ $EMERGE_FROM = binary ]]
and remove shutil.rmtree() call from Binpkg._clean_exit() since dyn_clean
is guaranteed to do a full clean now.
svn path=/main/trunk/; revision=13069
Zac Medico [Thu, 12 Mar 2009 03:48:10 +0000 (03:48 -0000)]
When translating portage uid/gid to root uid/gid after src_install on
FreeBSD, temporarily remove all file flags inside $D in order to avoid
EPERM errors. Thanks to Timothy Redaelli <drizzt@g.o> for reporting.
svn path=/main/trunk/; revision=13068
Zac Medico [Thu, 12 Mar 2009 02:40:28 +0000 (02:40 -0000)]
Use posix compatible find -perm arguments. Thanks to Timothy Redaelli
<drizzt@g.o> for reporting.
svn path=/main/trunk/; revision=13067
Zac Medico [Thu, 12 Mar 2009 01:45:52 +0000 (01:45 -0000)]
Also add an einfo binary.
svn path=/main/trunk/; revision=13066
Zac Medico [Thu, 12 Mar 2009 01:44:02 +0000 (01:44 -0000)]
Bug #262096 - Add separate eerror, elog, eqawarn, and ewarn binaries for
use by non-bash programs running inside the ebuild environment, such as
sandbox.
svn path=/main/trunk/; revision=13065
Zac Medico [Thu, 12 Mar 2009 00:43:00 +0000 (00:43 -0000)]
Use ${x##*/} instead of calling basename.
svn path=/main/trunk/; revision=13064
Zac Medico [Thu, 12 Mar 2009 00:28:45 +0000 (00:28 -0000)]
Move ebuild helpers into an ebuild-helpers subdirectory.
svn path=/main/trunk/; revision=13063
Zac Medico [Thu, 12 Mar 2009 00:25:50 +0000 (00:25 -0000)]
Use absolute imports instead of relative.
svn path=/main/trunk/; revision=13062
Zac Medico [Wed, 11 Mar 2009 23:59:13 +0000 (23:59 -0000)]
Bug #262211 - Avoid triggering an InvalidAtom exception inside the Package
constructor when SLOT is empty.
svn path=/main/trunk/; revision=13061
Zac Medico [Wed, 11 Mar 2009 23:49:03 +0000 (23:49 -0000)]
Bug #262211 - Make vardbapi.aux_get() translate empty SLOT to 0 since other
code expects non-empty SLOT (for generation package slot atoms).
svn path=/main/trunk/; revision=13060
Zac Medico [Wed, 11 Mar 2009 22:28:16 +0000 (22:28 -0000)]
Bug #262012 - Only trigger the slot conflict message about --newuse when
the installed version is the same as the new one. If they are different
versions then there's some other problem.
svn path=/main/trunk/; revision=13059
Zac Medico [Wed, 11 Mar 2009 08:07:21 +0000 (08:07 -0000)]
Add new xpak.5 man page by Lars Hartmann <lars<at>chaotika<dot>org>.
svn path=/main/trunk/; revision=13056
Zac Medico [Tue, 10 Mar 2009 08:15:57 +0000 (08:15 -0000)]
Don't default env=os.environ directly in the config constructor because
that makes it show environment variables in api docs generated by epydoc.
svn path=/main/trunk/; revision=12824