Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:prefix commit in: /
Date: Sun, 13 Aug 2017 07:21:07
Message-Id: 1502608822.cb6b68d4b7659fe601d8149b257925673eb9e03c.grobian@gentoo
1 commit: cb6b68d4b7659fe601d8149b257925673eb9e03c
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 13 07:20:22 2017 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 13 07:20:22 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=cb6b68d4
7
8 Merge remote-tracking branch 'overlays-gentoo-org/master' into prefix
9
10 .editorconfig | 14 +++
11 .travis.yml | 4 +-
12 NEWS | 15 +++
13 RELEASE-NOTES | 14 +++
14 bin/ebuild-helpers/doman | 1 +
15 bin/install-qa-check.d/80multilib-strict | 7 +-
16 bin/misc-functions.sh | 6 +-
17 bin/phase-helpers.sh | 45 +++++---
18 bin/quickpkg | 62 ++++++++---
19 cnf/make.globals | 3 +-
20 man/emerge.1 | 7 ++
21 man/make.conf.5 | 25 +++++
22 man/portage.5 | 27 ++++-
23 pym/_emerge/BinpkgExtractorAsync.py | 43 +++++++-
24 pym/_emerge/actions.py | 16 +++
25 pym/_emerge/depgraph.py | 117 +++++++++++++++++----
26 pym/_emerge/main.py | 9 ++
27 pym/_emerge/search.py | 24 ++++-
28 pym/portage/const.py | 3 +-
29 pym/portage/dbapi/bintree.py | 18 ++--
30 pym/portage/dep/dep_check.py | 6 +-
31 pym/portage/localization.py | 2 +-
32 .../package/ebuild/_config/KeywordsManager.py | 4 +-
33 pym/portage/package/ebuild/_config/UseManager.py | 5 +-
34 .../package/ebuild/_config/special_env_vars.py | 3 +-
35 pym/portage/package/ebuild/config.py | 27 +++++
36 pym/portage/package/ebuild/doebuild.py | 34 +++++-
37 pym/portage/sync/modules/git/__init__.py | 8 +-
38 pym/portage/sync/modules/git/git.py | 37 ++++++-
39 pym/portage/sync/modules/rsync/__init__.py | 3 +-
40 pym/portage/sync/modules/rsync/rsync.py | 12 +++
41 pym/portage/sync/syncbase.py | 5 +-
42 pym/portage/tests/emerge/test_simple.py | 5 +-
43 .../tests/resolver/test_autounmask_binpkg_use.py | 64 +++++++++++
44 .../resolver/test_autounmask_keep_keywords.py | 72 +++++++++++++
45 pym/portage/util/_urlopen.py | 12 +++
46 pym/portage/util/compression_probe.py | 45 ++++++--
47 repoman/RELEASE-NOTES | 12 +++
48 repoman/bin/repoman | 4 +-
49 repoman/man/repoman.1 | 20 +++-
50 repoman/pym/repoman/actions.py | 55 ++++++++--
51 repoman/pym/repoman/argparser.py | 16 ++-
52 repoman/pym/repoman/main.py | 4 +-
53 repoman/pym/repoman/modules/scan/ebuild/checks.py | 5 +
54 .../pym/repoman/modules/scan/keywords/keywords.py | 26 ++++-
55 .../repoman/modules/scan/metadata/pkgmetadata.py | 10 ++
56 repoman/pym/repoman/qa_data.py | 1 +
57 repoman/pym/repoman/scanner.py | 2 +-
58 repoman/pym/repoman/tests/runTests.py | 4 +-
59 repoman/runtests | 4 +-
60 repoman/setup.py | 2 +-
61 setup.py | 8 +-
62 52 files changed, 844 insertions(+), 133 deletions(-)
63
64 diff --cc bin/misc-functions.sh
65 index a9306043d,079369313..d143b6b7e
66 --- a/bin/misc-functions.sh
67 +++ b/bin/misc-functions.sh
68 @@@ -1111,11 -478,13 +1111,13 @@@ __dyn_package()
69 [ -z "${PORTAGE_BINPKG_TMPFILE}" ] && \
70 die "PORTAGE_BINPKG_TMPFILE is unset"
71 mkdir -p "${PORTAGE_BINPKG_TMPFILE%/*}" || die "mkdir failed"
72 + [ -z "${PORTAGE_COMPRESSION_COMMAND}" ] && \
73 + die "PORTAGE_COMPRESSION_COMMAND is unset"
74 tar $tar_options -cf - $PORTAGE_BINPKG_TAR_OPTS -C "${PROOT}" . | \
75 - $PORTAGE_BZIP2_COMMAND -c > "$PORTAGE_BINPKG_TMPFILE"
76 + $PORTAGE_COMPRESSION_COMMAND -c > "$PORTAGE_BINPKG_TMPFILE"
77 assert "failed to pack binary package: '$PORTAGE_BINPKG_TMPFILE'"
78 PYTHONPATH=${PORTAGE_PYTHONPATH:-${PORTAGE_PYM_PATH}} \
79 - "${PORTAGE_PYTHON:-/usr/bin/python}" "$PORTAGE_BIN_PATH"/xpak-helper.py recompose \
80 + "${PORTAGE_PYTHON:-@PREFIX_PORTAGE_PYTHON@}" "$PORTAGE_BIN_PATH"/xpak-helper.py recompose \
81 "$PORTAGE_BINPKG_TMPFILE" "$PORTAGE_BUILDDIR/build-info"
82 if [ $? -ne 0 ]; then
83 rm -f "${PORTAGE_BINPKG_TMPFILE}"