portage.git
13 years agoRemove extended package set configuration docs. v2.1.10.34
Zac Medico [Fri, 3 Jun 2011 12:28:16 +0000 (05:28 -0700)]
Remove extended package set configuration docs.

Extended package sets configuration is disabled in the stable branch.

13 years agoRemove FEATURES=preserve-libs config/docs.
Zac Medico [Fri, 3 Jun 2011 12:15:50 +0000 (05:15 -0700)]
Remove FEATURES=preserve-libs config/docs.

Support for FEATURES=preserve-libs is disabled in the stable branch.

13 years agoportage.const: toggle constants for stable branch
Zac Medico [Fri, 3 Jun 2011 12:05:53 +0000 (05:05 -0700)]
portage.const: toggle constants for stable branch

_ENABLE_DYN_LINK_MAP    = False
_ENABLE_PRESERVE_LIBS   = False
_ENABLE_REPO_NAME_WARN  = False
_ENABLE_SET_CONFIG      = False
_SANDBOX_COMPAT_LEVEL   = "16"

13 years agoEnable emerge --quiet-build by default. v2.2.0_alpha74
Zac Medico [Fri, 11 Nov 2011 15:42:11 +0000 (07:42 -0800)]
Enable emerge --quiet-build by default.

See discussion on the gentoo-dev mailing list:

http://archives.gentoo.org/gentoo-dev/msg_4f0401066abe2dc04458a952ac2a17bd.xml

13 years agoMove ccache/distcc PATH code to doebuild_env. v2.2.0_alpha73
Zac Medico [Thu, 10 Nov 2011 03:11:35 +0000 (19:11 -0800)]
Move ccache/distcc PATH code to doebuild_env.

13 years agoUse local EPREFIX for uniformity.
Zac Medico [Wed, 9 Nov 2011 18:48:36 +0000 (10:48 -0800)]
Use local EPREFIX for uniformity.

The EPREFIX variable is not readonly in EAPI 0, 1, and 2, so we can
declare EPREFIX as a local variable. We must be careful not to let this
variable leak into the environment of ebuild/eclass functions that we
call, since bash propagates local variables to nested function calls.

13 years agoUse local ED for uniformity.
Zac Medico [Wed, 9 Nov 2011 18:42:00 +0000 (10:42 -0800)]
Use local ED for uniformity.

The ED variable is not readonly in EAPI 0, 1, and 2, so we can declare
ED as a local variable. We must be careful not to let this variable
leak into the environment of ebuild/eclass functions that we call,
since bash propagates local variables to nested function calls.

13 years agoUse get(REQUIRED_USE) for emphasis.
Zac Medico [Wed, 9 Nov 2011 18:13:17 +0000 (10:13 -0800)]
Use get(REQUIRED_USE) for emphasis.

None of these cases should raise KeyError, but use get(REQUIRED_USE)
anyway to emphasize that care must be taken.

13 years agodepgraph: fix possible REQUIRED_USE KeyError
Zac Medico [Wed, 9 Nov 2011 03:23:22 +0000 (19:23 -0800)]
depgraph: fix possible REQUIRED_USE KeyError

This goes with commit a0961708ced50c90497811058eda6f4513d2986d.

13 years ago_doebuild_path: fix EAPI 3 helpers PATH
Zac Medico [Wed, 9 Nov 2011 02:41:16 +0000 (18:41 -0800)]
_doebuild_path: fix EAPI 3 helpers PATH

13 years agophase-functions.sh: remove stray echo
Zac Medico [Wed, 9 Nov 2011 02:36:24 +0000 (18:36 -0800)]
phase-functions.sh: remove stray echo

13 years agoInclude EPREFIX directories in PATH.
Zac Medico [Wed, 9 Nov 2011 00:21:07 +0000 (16:21 -0800)]
Include EPREFIX directories in PATH.

This relocates the PATH generation code from ebuild.sh to
doebuild_environment, which helps to eliminate duplicate code.

13 years agohas/best_version: fix grammar in docs
Zac Medico [Tue, 8 Nov 2011 19:28:02 +0000 (11:28 -0800)]
has/best_version: fix grammar in docs

13 years agoecompressdir: remove 'continue' from loop logic
Zac Medico [Tue, 8 Nov 2011 19:24:35 +0000 (11:24 -0800)]
ecompressdir: remove 'continue' from loop logic

Hopefully this helps us avoid errors in loop logic like bug #389047.

13 years agotests/emerge: best/has_version with prefix EAPI
Zac Medico [Tue, 8 Nov 2011 16:13:32 +0000 (08:13 -0800)]
tests/emerge: best/has_version with prefix EAPI

13 years agotest_multislot: fix EAPI
Zac Medico [Mon, 7 Nov 2011 21:38:33 +0000 (13:38 -0800)]
test_multislot: fix EAPI

13 years agodepgraph._queue_disjunctive_deps(): Pass EAPI to portage.dep.Atom().
Arfrever Frehtes Taifersar Arahesis [Mon, 7 Nov 2011 21:14:39 +0000 (22:14 +0100)]
depgraph._queue_disjunctive_deps(): Pass EAPI to portage.dep.Atom().

13 years agobest/has_version: fix eroot assignment
Zac Medico [Mon, 7 Nov 2011 20:42:28 +0000 (12:42 -0800)]
best/has_version: fix eroot assignment

13 years agoOnly support ROOT override for best/has_version.
Zac Medico [Mon, 7 Nov 2011 20:19:53 +0000 (12:19 -0800)]
Only support ROOT override for best/has_version.

In the context of ebuilds, ROOT=/ override is the only common case, so
it makes sense to only support ROOT overrides.

13 years agoAllow repository dependencies in command line arguments for --config and --info actions.
Arfrever Frehtes Taifersar Arahesis [Mon, 7 Nov 2011 20:11:31 +0000 (21:11 +0100)]
Allow repository dependencies in command line arguments for --config and --info actions.

13 years agoFix best/has_version ROOT override for EAPI 3-4.
Zac Medico [Mon, 7 Nov 2011 19:16:09 +0000 (11:16 -0800)]
Fix best/has_version ROOT override for EAPI 3-4.

This has been broken since commit
ab484dc9a2612aa6709fad3ff926c8589a706637. In order to support prefix,
callers will have to override EROOT instead.

13 years agoFix breakage from last commit.
Zac Medico [Mon, 7 Nov 2011 18:33:47 +0000 (10:33 -0800)]
Fix breakage from last commit.

13 years agoAvoid initial spaces in some variables.
Arfrever Frehtes Taifersar Arahesis [Mon, 7 Nov 2011 18:28:05 +0000 (19:28 +0100)]
Avoid initial spaces in some variables.

13 years agoREQUIRED_USE: don't save in built packages
Zac Medico [Mon, 7 Nov 2011 15:27:23 +0000 (07:27 -0800)]
REQUIRED_USE: don't save in built packages

It should be safe to assume that REQUIRED_USE is satisfied if the
package is built, so it's a waste to save it. Also, fix code which
assumes that built Package instances have a REQUIRED_USE key in their
metadata.

13 years agoenvironment.bz2: filter more variables
Zac Medico [Mon, 7 Nov 2011 08:45:01 +0000 (00:45 -0800)]
environment.bz2: filter more variables

13 years agosave_ebuild_env: filter more functions
Zac Medico [Mon, 7 Nov 2011 08:32:18 +0000 (00:32 -0800)]
save_ebuild_env: filter more functions

dyn_pretend
helpers_die
nonfatal
register_success_hook

13 years agoHandle empty PORTAGE_COMPRESS for bug #389047.
Zac Medico [Mon, 7 Nov 2011 08:14:29 +0000 (00:14 -0800)]
Handle empty PORTAGE_COMPRESS for bug #389047.

This fixes a case where empty PORTAGE_COMPRESS made ecompressdir forget
to call restore_skip_dirs, such that docompress -x resulted in files
not being installed due to hide_skip_dirs hiding them permanently.

13 years agoemerge --changelog: ChangeLog-YYYY, bug #389611
Zac Medico [Mon, 7 Nov 2011 07:37:33 +0000 (23:37 -0800)]
emerge --changelog: ChangeLog-YYYY, bug #389611

13 years agoRespect --usepkgonly in suggestions, bug #389617
Zac Medico [Mon, 7 Nov 2011 06:32:30 +0000 (22:32 -0800)]
Respect --usepkgonly in suggestions, bug #389617

13 years agoAdd emerge --moo action for bug #389609.
Zac Medico [Mon, 7 Nov 2011 06:01:51 +0000 (22:01 -0800)]
Add emerge --moo action for bug #389609.

13 years agoruntests.sh: use 0 to control arg parse loop
Zac Medico [Sun, 6 Nov 2011 05:43:34 +0000 (22:43 -0700)]
runtests.sh: use 0 to control arg parse loop

13 years agoEnable colors during the depend phase.
Zac Medico [Sat, 5 Nov 2011 18:53:20 +0000 (11:53 -0700)]
Enable colors during the depend phase.

13 years agophase-helpers.sh: fix best/has_version for prefix
Zac Medico [Wed, 2 Nov 2011 04:57:10 +0000 (21:57 -0700)]
phase-helpers.sh: fix best/has_version for prefix

13 years agotest_dodir: fix breakage from last commit
Zac Medico [Wed, 2 Nov 2011 02:26:56 +0000 (19:26 -0700)]
test_dodir: fix breakage from last commit

We have to set the EAPI for prefix code to work.

13 years agoAdd EPREFIX and ED support in all ebuild helpers.
Zac Medico [Wed, 2 Nov 2011 02:17:19 +0000 (19:17 -0700)]
Add EPREFIX and ED support in all ebuild helpers.

This allows our prefix tests to use helpers like insinto, doins, and dosym.

13 years agoMerge install_qa_check_prefix from prefix branch.
Zac Medico [Wed, 2 Nov 2011 01:47:56 +0000 (18:47 -0700)]
Merge install_qa_check_prefix from prefix branch.

13 years ago_profile_node: use collections.namedtuple v2.2.0_alpha72
Zac Medico [Sun, 30 Oct 2011 07:15:57 +0000 (00:15 -0700)]
_profile_node: use collections.namedtuple

13 years agonews.py: remove unused 'updates' variable
Zac Medico [Sun, 30 Oct 2011 07:08:22 +0000 (00:08 -0700)]
news.py: remove unused 'updates' variable

13 years ago_legacy_globals: fix grammar in comment
Zac Medico [Sun, 30 Oct 2011 06:52:42 +0000 (23:52 -0700)]
_legacy_globals: fix grammar in comment

13 years agoFix typos in comments.
Arfrever Frehtes Taifersar Arahesis [Sun, 30 Oct 2011 06:40:52 +0000 (07:40 +0100)]
Fix typos in comments.

13 years agogit_sync_timestamps: validation_chf == mtime
Zac Medico [Sun, 30 Oct 2011 06:20:53 +0000 (23:20 -0700)]
git_sync_timestamps: validation_chf == mtime

13 years agoegencache: tweak redundant write check condition
Zac Medico [Sun, 30 Oct 2011 05:24:58 +0000 (22:24 -0700)]
egencache: tweak redundant write check condition

We can use the raise_stat_collision attribute to determine when it is
necessary to check for redundant writes.

13 years agoenv_update: lstrip os.sep in join with eprefix
Zac Medico [Sun, 30 Oct 2011 00:25:42 +0000 (17:25 -0700)]
env_update: lstrip os.sep in join with eprefix

13 years agoportagetree: remove broken depcheck method
Zac Medico [Sat, 29 Oct 2011 23:52:06 +0000 (16:52 -0700)]
portagetree: remove broken depcheck method

It called dep_check without the required third argument.

13 years agoUse dbapi._known_keys more.
Zac Medico [Sat, 29 Oct 2011 23:43:21 +0000 (16:43 -0700)]
Use dbapi._known_keys more.

13 years agocache/template.__getitem__: filter INHERITED
Zac Medico [Sat, 29 Oct 2011 23:10:13 +0000 (16:10 -0700)]
cache/template.__getitem__: filter INHERITED

Never return INHERITED, since portdbapi.aux_get() will generate it
automatically from _eclasses_, and we want to omit it in comparisons
between cache entries like those that egencache uses to avoid redundant
writes (see commit 0e120da008c9d0d41c9372c81145c6e153028a6d).

13 years agoaction_metadata: clean up src entry validation
Zac Medico [Sat, 29 Oct 2011 22:43:35 +0000 (15:43 -0700)]
action_metadata: clean up src entry validation

This eliminates a bunch of redundant eclasses code that we handle with
template.validate_entry() instead.

13 years agoEbuildMetadataPhase: use /dev/null for stdin
Zac Medico [Sat, 29 Oct 2011 21:41:38 +0000 (14:41 -0700)]
EbuildMetadataPhase: use /dev/null for stdin

13 years agoactions.py: remove unused variables
Zac Medico [Sat, 29 Oct 2011 21:31:00 +0000 (14:31 -0700)]
actions.py: remove unused variables

13 years agoaction_metadata: use auxdbkeys to compare entries
Zac Medico [Sat, 29 Oct 2011 20:55:07 +0000 (13:55 -0700)]
action_metadata: use auxdbkeys to compare entries

This borrows the approach that egencache uses since commit
0e120da008c9d0d41c9372c81145c6e153028a6d.

13 years agoegencache: avoid redundant md5-dict writes
Zac Medico [Sat, 29 Oct 2011 20:36:23 +0000 (13:36 -0700)]
egencache: avoid redundant md5-dict writes

The pms cache already does this automatically, since __setitem__ calls
are used to detect stat collisions in order to solve bug #139134.

13 years agoegencache: ensure correct porttrees
Zac Medico [Sat, 29 Oct 2011 19:38:51 +0000 (12:38 -0700)]
egencache: ensure correct porttrees

The GenCache class assumes that portdb.porttrees[0] is the desired
tree, so assert that it is true. The behavior should have already been
correct, since PORTDIR_OVERLAY was already set to an empty string when
necessary.

13 years agoegencache: fix StatCollision handling breakage
Zac Medico [Sat, 29 Oct 2011 18:56:14 +0000 (11:56 -0700)]
egencache: fix StatCollision handling breakage

This has been broken since the _eclasses_ structure changed in commit
2ed1cb53cc4158af08c22d466b15b9a9a7767212.

13 years agoegencache: update ebuild_hash.mtime after utime
Zac Medico [Sat, 29 Oct 2011 18:33:27 +0000 (11:33 -0700)]
egencache: update ebuild_hash.mtime after utime

13 years agoemerge --metadata: support md5-dict
Zac Medico [Sat, 29 Oct 2011 17:48:30 +0000 (10:48 -0700)]
emerge --metadata: support md5-dict

This adds support to action_metadata() for use of arbitrary validation
methods, which were introduced in commit
2ed1cb53cc4158af08c22d466b15b9a9a7767212.

13 years agoman/portage.5: profile-formats example
Zac Medico [Sat, 29 Oct 2011 08:16:11 +0000 (01:16 -0700)]
man/portage.5: profile-formats example

13 years agoman/portage.5: cache-formats example
Zac Medico [Sat, 29 Oct 2011 08:11:09 +0000 (01:11 -0700)]
man/portage.5: cache-formats example

13 years agoegencache: multiple cache-formats support
Zac Medico [Sat, 29 Oct 2011 07:59:02 +0000 (00:59 -0700)]
egencache: multiple cache-formats support

If layout.conf contains "cache-formats = md5-dict pms", egencache will
now write both formats.

13 years agogit_sync_timestamps: fix breakage
Zac Medico [Sat, 29 Oct 2011 06:57:29 +0000 (23:57 -0700)]
git_sync_timestamps: fix breakage

This has been broken since metadbmodule support was removed in commit
d4ea29bf6a3ce35d49e0f54f9173e3a6e42da2d6.

13 years agoRepoConfig: add iter_pregenerated_caches method
Zac Medico [Sat, 29 Oct 2011 06:15:21 +0000 (23:15 -0700)]
RepoConfig: add iter_pregenerated_caches method

This will be used by egencache to generate cache for all supported
formats.

13 years agoquickpkg: fix regression in hardlink support
Zac Medico [Sat, 29 Oct 2011 05:35:01 +0000 (22:35 -0700)]
quickpkg: fix regression in hardlink support

Hardlink support has been broken since commit
4198da0184aaec30c41f2e5d2c7af71c4d35b662, which omitted the hardlink
logic from TarFile.gettarinfo().

13 years agoFix an issue where emerge will abort when merge starts if we have a file in our Manif...
Daniel Robbins [Sat, 29 Oct 2011 04:06:00 +0000 (04:06 +0000)]
Fix an issue where emerge will abort when merge starts if we have a file in our Manifest that does not exist on disk, even with thin-manifest enabled.

13 years agoDeprecate unused 'virtual' constructor parameters
Zac Medico [Sat, 29 Oct 2011 04:17:11 +0000 (21:17 -0700)]
Deprecate unused 'virtual' constructor parameters

13 years ago_trees_dict: define __slots__
Zac Medico [Sat, 29 Oct 2011 03:34:34 +0000 (20:34 -0700)]
_trees_dict: define __slots__

13 years agoportageq: refer to <eroot> instead of <root>
Zac Medico [Sat, 29 Oct 2011 03:26:18 +0000 (20:26 -0700)]
portageq: refer to <eroot> instead of <root>

Since commit a715b65f7bd36409c1283e6911265d1f4405ab7a, portageq takes
EROOT as the first argument of commands that require a root argument.
So, update the docs to refer to <eroot> instead of <root>.

13 years agoUse EROOT to validate path arguments.
Zac Medico [Sat, 29 Oct 2011 03:20:29 +0000 (20:20 -0700)]
Use EROOT to validate path arguments.

13 years agoUse any() instead of list(filter()).
Zac Medico [Sat, 29 Oct 2011 03:10:23 +0000 (20:10 -0700)]
Use any() instead of list(filter()).

13 years agoUse bytes instead of unicode with isinstance.
Zac Medico [Sat, 29 Oct 2011 00:12:11 +0000 (17:12 -0700)]
Use bytes instead of unicode with isinstance.

This is preferred since the bytes type is available in all supported
python versions, while the unicode type is only available in python2.

13 years agoResolverPlayground: remove unused root attribute
Zac Medico [Fri, 28 Oct 2011 22:20:35 +0000 (15:20 -0700)]
ResolverPlayground: remove unused root attribute

13 years agoconfig: discard profiles_complex attribute
Zac Medico [Fri, 28 Oct 2011 22:06:50 +0000 (15:06 -0700)]
config: discard profiles_complex attribute

Like LocationsManager, it's only used in the constructor, so there's
no need to hold a reference after the constructor completes.

13 years agoCheck for bytes instead of unicode in args.
Zac Medico [Fri, 28 Oct 2011 20:13:07 +0000 (13:13 -0700)]
Check for bytes instead of unicode in args.

This simplifies the checks since the bytes type is available in all
supported python versions, while the unicode type is only available in
python2.

13 years agoquickpkg: fix unicode for bug #388773
Zac Medico [Fri, 28 Oct 2011 18:03:02 +0000 (11:03 -0700)]
quickpkg: fix unicode for bug #388773

13 years agoSetConfig: use read_file/readfp for unicode
Zac Medico [Fri, 28 Oct 2011 07:21:05 +0000 (00:21 -0700)]
SetConfig: use read_file/readfp for unicode

13 years agoRepoConfigLoader: python3.2 readfp deprecation
Zac Medico [Fri, 28 Oct 2011 07:17:25 +0000 (00:17 -0700)]
RepoConfigLoader: python3.2 readfp deprecation

13 years agoRepoConfigLoader: use readfp for unicode
Zac Medico [Fri, 28 Oct 2011 06:48:44 +0000 (23:48 -0700)]
RepoConfigLoader: use readfp for unicode

13 years agoRepoConfigLoader: sort layout.conf attributes
Zac Medico [Fri, 28 Oct 2011 06:20:26 +0000 (23:20 -0700)]
RepoConfigLoader: sort layout.conf attributes

13 years agoRepoConfigLoader: support incremental aliases
Zac Medico [Fri, 28 Oct 2011 06:17:19 +0000 (23:17 -0700)]
RepoConfigLoader: support incremental aliases

This allows a user to discard unwanted aliases that are specified in
a repo's layout.conf.

13 years agoRepoConfigLoader: comment on masters override
Zac Medico [Fri, 28 Oct 2011 05:38:31 +0000 (22:38 -0700)]
RepoConfigLoader: comment on masters override

13 years agoRepoConfig.update(): getattr/setattr loop
Zac Medico [Fri, 28 Oct 2011 05:30:34 +0000 (22:30 -0700)]
RepoConfig.update(): getattr/setattr loop

13 years agoparse_layout_conf: comment on masters fallback
Zac Medico [Fri, 28 Oct 2011 05:14:51 +0000 (22:14 -0700)]
parse_layout_conf: comment on masters fallback

13 years agoFix profile-formats spelling in messages.
Zac Medico [Fri, 28 Oct 2011 04:55:28 +0000 (21:55 -0700)]
Fix profile-formats spelling in messages.

13 years agoMaskManager: portage-1-compat warnings.warn
Zac Medico [Fri, 28 Oct 2011 02:48:16 +0000 (19:48 -0700)]
MaskManager: portage-1-compat warnings.warn

13 years agostacklevel=3 for properties warnings
Zac Medico [Fri, 28 Oct 2011 02:32:49 +0000 (19:32 -0700)]
stacklevel=3 for properties warnings

There's an extra level for the @property wrapper.

13 years agoFix mydcfg from last commit.
Zac Medico [Fri, 28 Oct 2011 02:15:34 +0000 (19:15 -0700)]
Fix mydcfg from last commit.

13 years agoconfig: remove cruft
Zac Medico [Fri, 28 Oct 2011 02:04:25 +0000 (19:04 -0700)]
config: remove cruft

The mygcfg and packages_list attributes are both useless.

13 years agograb_pmask: use local repo_config reference
Zac Medico [Fri, 28 Oct 2011 01:45:19 +0000 (18:45 -0700)]
grab_pmask: use local repo_config reference

The previous code worked, but it looked wrong because it was using the
'repo' variable from the parent scope.

13 years agoFix missed ROOT -> EROOT changes.
Zac Medico [Fri, 28 Oct 2011 01:17:55 +0000 (18:17 -0700)]
Fix missed ROOT -> EROOT changes.

These go along with commit a715b65f7bd36409c1283e6911265d1f4405ab7a.

13 years agocreate_trees: ensure trees is _trees_dict type
Zac Medico [Fri, 28 Oct 2011 00:53:51 +0000 (17:53 -0700)]
create_trees: ensure trees is _trees_dict type

13 years agoLocationsManager: extensible _profile_node object
Zac Medico [Thu, 27 Oct 2011 20:49:40 +0000 (13:49 -0700)]
LocationsManager: extensible _profile_node object

Use immutable object attrubutes instead of tuples, for extensibility.

13 years agoparse_layout_conf: grab repo_name for error msgs
Zac Medico [Thu, 27 Oct 2011 19:41:42 +0000 (12:41 -0700)]
parse_layout_conf: grab repo_name for error msgs

This allows us to avoid duplicate warnings for 'unspecified' repo since
parse_layout_conf is initially called without specifying the repo in
LocationsManager.load_profiles().

13 years agoFix profile-formats spelling in messages.
Zac Medico [Thu, 27 Oct 2011 19:02:26 +0000 (12:02 -0700)]
Fix profile-formats spelling in messages.

13 years agoLocationsManager._addProfile: realpath parents
Zac Medico [Thu, 27 Oct 2011 18:49:20 +0000 (11:49 -0700)]
LocationsManager._addProfile: realpath parents

If it seems that a parent may point outside of the current repo,
realpath it.

13 years agoLocationsManager.load_profiles: realpath repos
Zac Medico [Thu, 27 Oct 2011 18:29:33 +0000 (11:29 -0700)]
LocationsManager.load_profiles: realpath repos

Since we already call realpath on make.profile, we also need to call
realpath on the repo paths that we compare its nodes to.

13 years agoLocationsManager: portage-1-compat warnings.warn
Zac Medico [Thu, 27 Oct 2011 17:22:33 +0000 (10:22 -0700)]
LocationsManager: portage-1-compat warnings.warn

13 years agoparse_layout_conf: fix profile-formats warning
Zac Medico [Thu, 27 Oct 2011 17:10:53 +0000 (10:10 -0700)]
parse_layout_conf: fix profile-formats warning

13 years agofix previous commit to call ensure_dirs
Zac Medico [Thu, 27 Oct 2011 16:46:04 +0000 (09:46 -0700)]
fix previous commit to call ensure_dirs

13 years agoRun pkg_pretend in PORTAGE_TMPDIR for bug #388593
Zac Medico [Thu, 27 Oct 2011 16:31:33 +0000 (09:31 -0700)]
Run pkg_pretend in PORTAGE_TMPDIR for bug #388593

13 years agorepoman: add opts and repo config debug output
Zac Medico [Thu, 27 Oct 2011 05:55:42 +0000 (22:55 -0700)]
repoman: add opts and repo config debug output

13 years agorepoman: add opts and repo config debug output
Zac Medico [Thu, 27 Oct 2011 05:52:04 +0000 (22:52 -0700)]
repoman: add opts and repo config debug output

13 years agoparse_layout_conf: fix inverted update-changelog
Zac Medico [Thu, 27 Oct 2011 05:32:34 +0000 (22:32 -0700)]
parse_layout_conf: fix inverted update-changelog

The logic got inverted when parse_layout_conf was split out in commit
0be173a54a5248cfd70a3543d7099d2dd3ee254b.