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 E7D12138E20 for ; Wed, 19 Feb 2014 15:37:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75378E0C46; Wed, 19 Feb 2014 15:37:16 +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 1023BE0C46 for ; Wed, 19 Feb 2014 15:37:15 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F29033F9C1 for ; Wed, 19 Feb 2014 15:37:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id E7D221872B for ; Wed, 19 Feb 2014 15:37:12 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1392823874.0a990a44607d4125acff2ae947f63737998b3176.dol-sen@gentoo> Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/repository/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/repository/config.py X-VCS-Directories: pym/portage/repository/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 0a990a44607d4125acff2ae947f63737998b3176 X-VCS-Branch: plugin-sync Date: Wed, 19 Feb 2014 15:37:12 +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: 19dd5663-21a7-4894-9bb2-403a893962b6 X-Archives-Hash: e6276d415ebbae5907ec751aa7cf1a56 commit: 0a990a44607d4125acff2ae947f63737998b3176 Author: Brian Dolbec gentoo org> AuthorDate: Wed Feb 19 15:31:14 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Wed Feb 19 15:31:14 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=0a990a44 FIXME: temp fix to add websync module as a valid type. Needs proper migration to use the plug-in system. --- pym/portage/repository/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index f89f098..23a2a48 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -565,7 +565,7 @@ class RepoConfigLoader(object): sname, level=logging.ERROR, noiselevel=-1) continue - if repo.sync_type not in (None, "cvs", "git", "rsync"): + if repo.sync_type not in (None, "cvs", "git", "rsync", "websync"): writemsg_level("!!! %s\n" % _("Repository '%s' has sync-type attribute set to unsupported value: '%s'") % (sname, repo.sync_type), level=logging.ERROR, noiselevel=-1) continue