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 DC1551381F2 for ; Mon, 25 Apr 2016 03:09:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BAF06E07EA; Mon, 25 Apr 2016 03:09:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 180F4E07EA for ; Mon, 25 Apr 2016 03:09:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C1B33405D5 for ; Mon, 25 Apr 2016 03:09:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF5E5963 for ; Mon, 25 Apr 2016 03:09:06 +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: <1461553392.f902c8684148a635aa9c780908e60ec2ff4a1fc6.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:repoman commit in: pym/portage/util/, pym/portage/util/futures/, pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/util/futures.py pym/portage/util/futures/__init__.py pym/portage/util/futures/futures.py pym/repoman/scanner.py X-VCS-Directories: pym/portage/util/ pym/portage/util/futures/ pym/repoman/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: f902c8684148a635aa9c780908e60ec2ff4a1fc6 X-VCS-Branch: repoman Date: Mon, 25 Apr 2016 03:09:06 +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: ab98fe7c-8bab-40b3-8a80-f047e018d74e X-Archives-Hash: 256b5400ddc531eab3287019436bf29e commit: f902c8684148a635aa9c780908e60ec2ff4a1fc6 Author: Brian Dolbec gentoo org> AuthorDate: Sun Apr 24 08:04:59 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Mon Apr 25 03:03:12 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=f902c868 portage: Move the new util/futures.py to a futures subpkg pym/portage/util/futures/__init__.py | 0 pym/portage/util/{ => futures}/futures.py | 0 pym/repoman/scanner.py | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/util/futures/__init__.py b/pym/portage/util/futures/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pym/portage/util/futures.py b/pym/portage/util/futures/futures.py similarity index 100% rename from pym/portage/util/futures.py rename to pym/portage/util/futures/futures.py diff --git a/pym/repoman/scanner.py b/pym/repoman/scanner.py index eaf023b..b3eeafd 100644 --- a/pym/repoman/scanner.py +++ b/pym/repoman/scanner.py @@ -9,7 +9,7 @@ import portage from portage import normalize_path from portage import os from portage.output import green -from portage.util.futures import Future +from portage.util.futures.futures import Future from repoman.modules.commit import repochecks from repoman.profile import check_profiles, dev_profile_keywords, setup_profile from repoman.repos import repo_metadata