From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 38BEA13888F for ; Sun, 4 Oct 2015 11:38:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83E9421C05F; Sun, 4 Oct 2015 11:38:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C567821C05C for ; Sun, 4 Oct 2015 11:38:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B61F7340A27 for ; Sun, 4 Oct 2015 11:38:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 142A24D9 for ; Sun, 4 Oct 2015 11:38:31 +0000 (UTC) From: "Thomas Sachau" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Sachau" Message-ID: <1443958644.0c879b950b70c54cd672ddc0541744d7785ee04b.tommy@gentoo> Subject: [gentoo-commits] proj/portage:multilib commit in: / X-VCS-Repository: proj/portage X-VCS-Committer: tommy X-VCS-Committer-Name: Thomas Sachau X-VCS-Revision: 0c879b950b70c54cd672ddc0541744d7785ee04b X-VCS-Branch: multilib Date: Sun, 4 Oct 2015 11:38:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b7ec2305-a5d1-49c3-84ab-3b7daa9fec5c X-Archives-Hash: 9d5522b7c81b69471a0a3c9240842f38 commit: 0c879b950b70c54cd672ddc0541744d7785ee04b Author: Thomas Sachau gentoo org> AuthorDate: Sun Oct 4 11:37:24 2015 +0000 Commit: Thomas Sachau gentoo org> CommitDate: Sun Oct 4 11:37:24 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=0c879b95 Merge tag 'v2.2.22' into multilib New Release NEWS | 6 + RELEASE-NOTES | 11 + bin/egencache | 4 +- bin/repoman | 3164 +------------------- man/ebuild.5 | 9 +- pym/portage/dbapi/virtual.py | 8 +- pym/portage/repository/config.py | 2 +- pym/portage/sync/controller.py | 8 +- pym/portage/tests/repoman/test_simple.py | 6 +- pym/repoman/_portage.py | 25 + pym/repoman/_subprocess.py | 82 + pym/repoman/_xml.py | 101 + pym/repoman/actions.py | 835 ++++++ pym/repoman/argparser.py | 221 ++ pym/repoman/check_missingslot.py | 6 +- pym/repoman/{ => checks}/__init__.py | 0 pym/repoman/{ => checks/directories}/__init__.py | 0 pym/repoman/checks/directories/files.py | 80 + pym/repoman/{ => checks/ebuilds}/__init__.py | 0 pym/repoman/{ => checks/ebuilds}/checks.py | 188 +- .../{ => checks/ebuilds/eclasses}/__init__.py | 0 pym/repoman/checks/ebuilds/eclasses/live.py | 39 + pym/repoman/checks/ebuilds/eclasses/ruby.py | 32 + pym/repoman/checks/ebuilds/errors.py | 48 + pym/repoman/checks/ebuilds/fetches.py | 134 + pym/repoman/checks/ebuilds/isebuild.py | 70 + pym/repoman/checks/ebuilds/keywords.py | 121 + pym/repoman/checks/ebuilds/manifests.py | 101 + pym/repoman/checks/ebuilds/misc.py | 54 + pym/repoman/checks/ebuilds/pkgmetadata.py | 174 ++ pym/repoman/checks/ebuilds/thirdpartymirrors.py | 38 + pym/repoman/checks/ebuilds/use_flags.py | 89 + .../{ => checks/ebuilds/variables}/__init__.py | 0 .../checks/ebuilds/variables/description.py | 32 + pym/repoman/checks/ebuilds/variables/eapi.py | 44 + pym/repoman/checks/ebuilds/variables/license.py | 47 + pym/repoman/checks/ebuilds/variables/restrict.py | 41 + pym/repoman/{ => checks/herds}/__init__.py | 0 pym/repoman/{ => checks/herds}/herdbase.py | 26 +- pym/repoman/checks/herds/metadata.py | 25 + pym/repoman/copyrights.py | 119 + pym/repoman/ebuild.py | 28 + pym/repoman/errors.py | 42 +- pym/repoman/gpg.py | 81 + pym/repoman/main.py | 168 ++ pym/repoman/metadata.py | 150 + pym/repoman/{ => modules}/__init__.py | 0 pym/repoman/{ => modules/commit}/__init__.py | 0 pym/repoman/modules/commit/repochecks.py | 34 + pym/repoman/{ => modules/fix}/__init__.py | 0 pym/repoman/{ => modules/full}/__init__.py | 0 pym/repoman/{ => modules/manifest}/__init__.py | 0 pym/repoman/{ => modules/scan}/__init__.py | 0 pym/repoman/profile.py | 86 + pym/repoman/qa_data.py | 438 +++ pym/repoman/qa_tracker.py | 45 + pym/repoman/repos.py | 306 ++ pym/repoman/scan.py | 170 ++ pym/repoman/scanner.py | 717 +++++ pym/repoman/utilities.py | 568 +--- pym/repoman/{ => vcs}/__init__.py | 0 pym/repoman/vcs/vcs.py | 276 ++ pym/repoman/vcs/vcsstatus.py | 113 + setup.py | 2 +- 64 files changed, 5492 insertions(+), 3722 deletions(-)