public inbox for gentoo-portage-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import
@ 2020-08-03 19:05 Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 02/26] lib/portage/sync/modules/rsync/rsync.py: " Aaron Bauman
                   ` (25 more replies)
  0 siblings, 26 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

* Remove unused-imports
* Updated copyright

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/util/_desktop_entry.py | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/lib/portage/util/_desktop_entry.py b/lib/portage/util/_desktop_entry.py
index 74053a30f..68cec7a61 100644
--- a/lib/portage/util/_desktop_entry.py
+++ b/lib/portage/util/_desktop_entry.py
@@ -1,16 +1,13 @@
-# Copyright 2012-2013 Gentoo Foundation
+# Copyright 2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import re
 import subprocess
 import sys
 
-import portage
-from portage import _encodings, _unicode_encode, _unicode_decode
+from portage import _unicode_encode, _unicode_decode
 from portage.util import writemsg
-from portage.util.configparser import (ConfigParserError, RawConfigParser,
-	read_configs)
-
+from portage.util.configparser import (RawConfigParser,	read_configs)
 
 def parse_desktop_entry(path):
 	"""
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 02/26] lib/portage/sync/modules/rsync/rsync.py: fix unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 03/26] lib/_emerge/Scheduler.py: " Aaron Bauman
                   ` (24 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/sync/modules/rsync/rsync.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/portage/sync/modules/rsync/rsync.py b/lib/portage/sync/modules/rsync/rsync.py
index 33019534b..4ccf7769f 100644
--- a/lib/portage/sync/modules/rsync/rsync.py
+++ b/lib/portage/sync/modules/rsync/rsync.py
@@ -15,7 +15,6 @@ import tempfile
 import portage
 from portage import os
 from portage import _unicode_decode
-from portage.exception import CommandNotFound
 from portage.util import writemsg_level
 from portage.output import create_color_func, yellow, blue, bold
 good = create_color_func("GOOD")
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 03/26] lib/_emerge/Scheduler.py: fix unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 02/26] lib/portage/sync/modules/rsync/rsync.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 04/26] lib/_emerge/DependencyArg.py: " Aaron Bauman
                   ` (23 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/_emerge/Scheduler.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/_emerge/Scheduler.py b/lib/_emerge/Scheduler.py
index 7906c30c8..761ba31e0 100644
--- a/lib/_emerge/Scheduler.py
+++ b/lib/_emerge/Scheduler.py
@@ -21,7 +21,6 @@ from portage import _encodings
 from portage import _unicode_encode
 from portage.cache.mappings import slot_dict_class
 from portage.elog.messages import eerror
-from portage.localization import _
 from portage.output import colorize, create_color_func, red
 bad = create_color_func("BAD")
 from portage._sets import SETPREFIX
@@ -30,7 +29,6 @@ from portage.util import ensure_dirs, writemsg, writemsg_level
 from portage.util.futures import asyncio
 from portage.util.SlotObject import SlotObject
 from portage.util._async.SchedulerInterface import SchedulerInterface
-from portage.util._eventloop.EventLoop import EventLoop
 from portage.package.ebuild.digestcheck import digestcheck
 from portage.package.ebuild.digestgen import digestgen
 from portage.package.ebuild.doebuild import (_check_temp_dir,
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 04/26] lib/_emerge/DependencyArg.py: fix unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 02/26] lib/portage/sync/modules/rsync/rsync.py: " Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 03/26] lib/_emerge/Scheduler.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 05/26] lib/portage/tests/resolver/test_merge_order.py: " Aaron Bauman
                   ` (22 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/_emerge/DependencyArg.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/lib/_emerge/DependencyArg.py b/lib/_emerge/DependencyArg.py
index f7ac879ec..1b66fbc2a 100644
--- a/lib/_emerge/DependencyArg.py
+++ b/lib/_emerge/DependencyArg.py
@@ -1,9 +1,6 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-
-from portage import _encodings, _unicode_encode
-
 class DependencyArg:
 
 	__slots__ = ('arg', 'force_reinstall', 'internal', 'reset_depth', 'root_config')
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 05/26] lib/portage/tests/resolver/test_merge_order.py: fix unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (2 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 04/26] lib/_emerge/DependencyArg.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 06/26] lib/portage/package/ebuild/config.py: drop unused-import Aaron Bauman
                   ` (21 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/tests/resolver/test_merge_order.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/portage/tests/resolver/test_merge_order.py b/lib/portage/tests/resolver/test_merge_order.py
index 11752d71e..0003cd7d8 100644
--- a/lib/portage/tests/resolver/test_merge_order.py
+++ b/lib/portage/tests/resolver/test_merge_order.py
@@ -1,7 +1,6 @@
-# Copyright 2011-2019 Gentoo Authors
+# Copyright 2011-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-import portage
 from portage.tests import TestCase
 from portage.tests.resolver.ResolverPlayground import (ResolverPlayground,
 	ResolverPlaygroundTestCase)
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 06/26] lib/portage/package/ebuild/config.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (3 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 05/26] lib/portage/tests/resolver/test_merge_order.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 07/26] lib/_emerge/resolver/output.py: fix unused-import Aaron Bauman
                   ` (20 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

* Fix unused-import
* Update copyright

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/package/ebuild/config.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/lib/portage/package/ebuild/config.py b/lib/portage/package/ebuild/config.py
index 7c5f82e0c..74b998d0b 100644
--- a/lib/portage/package/ebuild/config.py
+++ b/lib/portage/package/ebuild/config.py
@@ -34,13 +34,11 @@ from portage.const import CACHE_PATH, \
 	PRIVATE_PATH, PROFILE_PATH, USER_CONFIG_PATH, \
 	USER_VIRTUALS_FILE
 from portage.dbapi import dbapi
-from portage.dbapi.porttree import portdbapi
 from portage.dep import Atom, isvalidatom, match_from_list, use_reduce, _repo_separator, _slot_separator
 from portage.eapi import (eapi_exports_AA, eapi_exports_merge_type,
 	eapi_supports_prefix, eapi_exports_replace_vars, _get_eapi_attrs)
 from portage.env.loaders import KeyValuePairFileLoader
-from portage.exception import InvalidDependString, IsADirectory, \
-		PortageException
+from portage.exception import InvalidDependString, PortageException
 from portage.localization import _
 from portage.output import colorize
 from portage.process import fakeroot_capable, sandbox_capable
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 07/26] lib/_emerge/resolver/output.py: fix unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (4 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 06/26] lib/portage/package/ebuild/config.py: drop unused-import Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 08/26] lib/_emerge/Package.py: drop unused-import Aaron Bauman
                   ` (19 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/_emerge/resolver/output.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/_emerge/resolver/output.py b/lib/_emerge/resolver/output.py
index 9483898de..1dcb47020 100644
--- a/lib/_emerge/resolver/output.py
+++ b/lib/_emerge/resolver/output.py
@@ -8,8 +8,6 @@ __all__ = (
 	"Display", "format_unmatched_atom",
 	)
 
-
-import portage
 from portage import os
 from portage.dbapi.dep_expand import dep_expand
 from portage.dep import Atom, cpvequal, _repo_separator, _slot_separator
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 08/26] lib/_emerge/Package.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (5 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 07/26] lib/_emerge/resolver/output.py: fix unused-import Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 09/26] lib/_emerge/AbstractPollTask.py: " Aaron Bauman
                   ` (18 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/_emerge/Package.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/_emerge/Package.py b/lib/_emerge/Package.py
index 00d250125..995af6311 100644
--- a/lib/_emerge/Package.py
+++ b/lib/_emerge/Package.py
@@ -5,7 +5,6 @@ from itertools import chain
 import warnings
 
 import portage
-from portage import _encodings, _unicode_decode, _unicode_encode
 from portage.cache.mappings import slot_dict_class
 from portage.const import EBUILD_PHASES
 from portage.dep import Atom, check_required_use, use_reduce, \
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 09/26] lib/_emerge/AbstractPollTask.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (6 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 08/26] lib/_emerge/Package.py: drop unused-import Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 10/26] lib/portage/util/_dyn_libs/NeededEntry.py: " Aaron Bauman
                   ` (17 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

* Drop unused-import
* Update copyright

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/_emerge/AbstractPollTask.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/_emerge/AbstractPollTask.py b/lib/_emerge/AbstractPollTask.py
index 661b81616..5ad24bb84 100644
--- a/lib/_emerge/AbstractPollTask.py
+++ b/lib/_emerge/AbstractPollTask.py
@@ -1,11 +1,10 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import array
 import errno
 import os
 
-from portage.util import writemsg_level
 from portage.util.futures import asyncio
 from _emerge.AsynchronousTask import AsynchronousTask
 
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 10/26] lib/portage/util/_dyn_libs/NeededEntry.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (7 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 09/26] lib/_emerge/AbstractPollTask.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 11/26] lib/portage/package/ebuild/getmaskingstatus.py: " Aaron Bauman
                   ` (16 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

* Drop unused-import
* Update copyright

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/util/_dyn_libs/NeededEntry.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/lib/portage/util/_dyn_libs/NeededEntry.py b/lib/portage/util/_dyn_libs/NeededEntry.py
index 20dc2f779..77ced0f43 100644
--- a/lib/portage/util/_dyn_libs/NeededEntry.py
+++ b/lib/portage/util/_dyn_libs/NeededEntry.py
@@ -1,8 +1,6 @@
-# Copyright 2015 Gentoo Foundation
+# Copyright 2015-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-
-from portage import _encodings, _unicode_encode
 from portage.exception import InvalidData
 from portage.localization import _
 
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 11/26] lib/portage/package/ebuild/getmaskingstatus.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (8 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 10/26] lib/portage/util/_dyn_libs/NeededEntry.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 12/26] lib/portage/package/ebuild/_spawn_nofetch.py: " Aaron Bauman
                   ` (15 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/package/ebuild/getmaskingstatus.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/lib/portage/package/ebuild/getmaskingstatus.py b/lib/portage/package/ebuild/getmaskingstatus.py
index cf2b7344b..c008a0d03 100644
--- a/lib/portage/package/ebuild/getmaskingstatus.py
+++ b/lib/portage/package/ebuild/getmaskingstatus.py
@@ -3,14 +3,12 @@
 
 __all__ = ['getmaskingstatus']
 
-
 import portage
 from portage import eapi_is_supported, _eapi_is_deprecated
 from portage.exception import InvalidDependString
 from portage.localization import _
 from portage.package.ebuild.config import config
-from portage.versions import catpkgsplit, _pkg_str
-
+from portage.versions import _pkg_str
 
 class _UnmaskHint:
 
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 12/26] lib/portage/package/ebuild/_spawn_nofetch.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (9 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 11/26] lib/portage/package/ebuild/getmaskingstatus.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 13/26] lib/portage/dep/dep_check.py: " Aaron Bauman
                   ` (14 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

* Drop unused-import
* Update copyright

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/package/ebuild/_spawn_nofetch.py | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/lib/portage/package/ebuild/_spawn_nofetch.py b/lib/portage/package/ebuild/_spawn_nofetch.py
index 980d7f629..c7cf8d29b 100644
--- a/lib/portage/package/ebuild/_spawn_nofetch.py
+++ b/lib/portage/package/ebuild/_spawn_nofetch.py
@@ -1,9 +1,8 @@
-# Copyright 2010-2019 Gentoo Authors
+# Copyright 2010-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import tempfile
 
-import portage
 from portage import os
 from portage import shutil
 from portage.const import EBUILD_PHASES
@@ -13,12 +12,9 @@ from portage.package.ebuild.doebuild import doebuild_environment
 from portage.package.ebuild.prepare_build_dirs import prepare_build_dirs
 from portage.util.futures import asyncio
 from portage.util._async.SchedulerInterface import SchedulerInterface
-from portage.util._eventloop.EventLoop import EventLoop
-from portage.util._eventloop.global_event_loop import global_event_loop
 from _emerge.CompositeTask import CompositeTask
 from _emerge.EbuildPhase import EbuildPhase
 
-
 class SpawnNofetchWithoutBuilddir(CompositeTask):
 	"""
 	This spawns pkg_nofetch if appropriate, while avoiding the
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 13/26] lib/portage/dep/dep_check.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (10 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 12/26] lib/portage/package/ebuild/_spawn_nofetch.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 14/26] lib/portage/cache/ebuild_xattr.py: " Aaron Bauman
                   ` (13 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/dep/dep_check.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/portage/dep/dep_check.py b/lib/portage/dep/dep_check.py
index 625599725..b6491a430 100644
--- a/lib/portage/dep/dep_check.py
+++ b/lib/portage/dep/dep_check.py
@@ -19,7 +19,7 @@ from portage.localization import _
 from portage.util import writemsg, writemsg_level
 from portage.util.digraph import digraph
 from portage.util.SlotObject import SlotObject
-from portage.versions import vercmp, _pkg_str
+from portage.versions import vercmp
 
 def _expand_new_virtuals(mysplit, edebug, mydbapi, mysettings, myroot="/",
 	trees=None, use_mask=None, use_force=None, **kwargs):
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 14/26] lib/portage/cache/ebuild_xattr.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (11 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 13/26] lib/portage/dep/dep_check.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 15/26] lib/portage/_emirrordist/main.py: " Aaron Bauman
                   ` (12 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/cache/ebuild_xattr.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/portage/cache/ebuild_xattr.py b/lib/portage/cache/ebuild_xattr.py
index 6b42d79df..bba3f1b88 100644
--- a/lib/portage/cache/ebuild_xattr.py
+++ b/lib/portage/cache/ebuild_xattr.py
@@ -7,7 +7,6 @@ __all__ = ['database']
 
 import errno
 
-import portage
 from portage.cache import fs_template
 from portage.versions import catsplit
 from portage import cpv_getkey
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 15/26] lib/portage/_emirrordist/main.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (12 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 14/26] lib/portage/cache/ebuild_xattr.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 16/26] lib/portage/exception.py: " Aaron Bauman
                   ` (11 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/_emirrordist/main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/portage/_emirrordist/main.py b/lib/portage/_emirrordist/main.py
index 23f6468c5..8d00a05f5 100644
--- a/lib/portage/_emirrordist/main.py
+++ b/lib/portage/_emirrordist/main.py
@@ -7,7 +7,7 @@ import sys
 
 import portage
 from portage import os
-from portage.util import normalize_path, writemsg_level, _recursive_file_list
+from portage.util import normalize_path, _recursive_file_list
 from portage.util._async.run_main_scheduler import run_main_scheduler
 from portage.util._async.SchedulerInterface import SchedulerInterface
 from portage.util._eventloop.global_event_loop import global_event_loop
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 16/26] lib/portage/exception.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (13 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 15/26] lib/portage/_emirrordist/main.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 17/26] bin/doins.py: " Aaron Bauman
                   ` (10 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/exception.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/portage/exception.py b/lib/portage/exception.py
index 30ab0c689..1d7ccbe90 100644
--- a/lib/portage/exception.py
+++ b/lib/portage/exception.py
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 import signal
-from portage import _encodings, _unicode_encode, _unicode_decode
+from portage import _encodings, _unicode_decode
 from portage.localization import _
 
 
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 17/26] bin/doins.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (14 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 16/26] lib/portage/exception.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 18/26] lib/_emerge/depgraph.py: " Aaron Bauman
                   ` (9 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

* Drop unused-import
* Update copyright

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 bin/doins.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/bin/doins.py b/bin/doins.py
index 4929cb90a..5bbf92635 100644
--- a/bin/doins.py
+++ b/bin/doins.py
@@ -1,5 +1,5 @@
 #!/usr/bin/python -b
-# Copyright 2017 Gentoo Foundation
+# Copyright 2017-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 #
 # Copyright 2017 The Chromium OS Authors. All rights reserved.
@@ -11,7 +11,6 @@
 This script is designed to be executed by ebuild-helpers/doins.
 """
 
-
 from __future__ import print_function
 
 import argparse
@@ -20,7 +19,6 @@ import grp
 import logging
 import os
 import pwd
-import re
 import shlex
 import shutil
 import stat
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 18/26] lib/_emerge/depgraph.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (15 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 17/26] bin/doins.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 19/26] lib/_emerge/UseFlagDisplay.py: " Aaron Bauman
                   ` (8 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/_emerge/depgraph.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/_emerge/depgraph.py b/lib/_emerge/depgraph.py
index 04b824ab9..0810cdaf1 100644
--- a/lib/_emerge/depgraph.py
+++ b/lib/_emerge/depgraph.py
@@ -48,8 +48,6 @@ from portage.util import writemsg_level, write_atomic
 from portage.util.digraph import digraph
 from portage.util.futures import asyncio
 from portage.util._async.TaskScheduler import TaskScheduler
-from portage.util._eventloop.EventLoop import EventLoop
-from portage.util._eventloop.global_event_loop import global_event_loop
 from portage.versions import _pkg_str, catpkgsplit
 
 from _emerge.AtomArg import AtomArg
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 19/26] lib/_emerge/UseFlagDisplay.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (16 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 18/26] lib/_emerge/depgraph.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 20/26] lib/portage/dbapi/bintree.py: " Aaron Bauman
                   ` (7 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/_emerge/UseFlagDisplay.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/_emerge/UseFlagDisplay.py b/lib/_emerge/UseFlagDisplay.py
index 9496693c8..5e3ba400d 100644
--- a/lib/_emerge/UseFlagDisplay.py
+++ b/lib/_emerge/UseFlagDisplay.py
@@ -4,7 +4,6 @@
 import collections
 from itertools import chain
 
-from portage import _encodings, _unicode_encode
 from portage.output import red
 from portage.util import cmp_sort_key
 from portage.output import blue
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 20/26] lib/portage/dbapi/bintree.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (17 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 19/26] lib/_emerge/UseFlagDisplay.py: " Aaron Bauman
@ 2020-08-03 19:05 ` Aaron Bauman
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 21/26] lib/portage/news.py: " Aaron Bauman
                   ` (6 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:05 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/dbapi/bintree.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/portage/dbapi/bintree.py b/lib/portage/dbapi/bintree.py
index e86fa5caa..97be51121 100644
--- a/lib/portage/dbapi/bintree.py
+++ b/lib/portage/dbapi/bintree.py
@@ -27,7 +27,7 @@ from portage.const import CACHE_PATH, SUPPORTED_XPAK_EXTENSIONS
 from portage.dbapi.virtual import fakedbapi
 from portage.dep import Atom, use_reduce, paren_enclose
 from portage.exception import AlarmSignal, InvalidData, InvalidPackageName, \
-	ParseError, PermissionDenied, PortageException
+	ParseError, PortageException
 from portage.localization import _
 from portage.package.ebuild.profile_iuse import iter_iuse_vars
 from portage.util.futures import asyncio
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 21/26] lib/portage/news.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (18 preceding siblings ...)
  2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 20/26] lib/portage/dbapi/bintree.py: " Aaron Bauman
@ 2020-08-03 19:06 ` Aaron Bauman
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 22/26] lib/portage/mail.py: " Aaron Bauman
                   ` (5 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:06 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

* Drop unused-import
* Update copyright

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/news.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/portage/news.py b/lib/portage/news.py
index 2731ea889..21a7c6a1f 100644
--- a/lib/portage/news.py
+++ b/lib/portage/news.py
@@ -1,5 +1,5 @@
 # portage: news management code
-# Copyright 2006-2019 Gentoo Authors
+# Copyright 2006-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 from __future__ import print_function
@@ -16,7 +16,6 @@ import io
 import logging
 import os as _os
 import re
-import portage
 from portage import os
 from portage import _encodings
 from portage import _unicode_decode
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 22/26] lib/portage/mail.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (19 preceding siblings ...)
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 21/26] lib/portage/news.py: " Aaron Bauman
@ 2020-08-03 19:06 ` Aaron Bauman
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 23/26] lib/portage/_selinux.py: " Aaron Bauman
                   ` (4 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:06 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/mail.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/portage/mail.py b/lib/portage/mail.py
index df7aac52d..6503b4cc9 100644
--- a/lib/portage/mail.py
+++ b/lib/portage/mail.py
@@ -14,7 +14,6 @@ import socket
 import sys
 
 from portage import os
-from portage import _encodings
 from portage import _unicode_decode, _unicode_encode
 from portage.localization import _
 import portage
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 23/26] lib/portage/_selinux.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (20 preceding siblings ...)
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 22/26] lib/portage/mail.py: " Aaron Bauman
@ 2020-08-03 19:06 ` Aaron Bauman
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 24/26] lib/_emerge/AbstractEbuildProcess.py: " Aaron Bauman
                   ` (3 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:06 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/_selinux.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/portage/_selinux.py b/lib/portage/_selinux.py
index aba40c2dd..e3e18c0b8 100644
--- a/lib/portage/_selinux.py
+++ b/lib/portage/_selinux.py
@@ -14,7 +14,7 @@ except ImportError:
 
 import portage
 from portage import _encodings
-from portage import _native_string, _unicode_decode
+from portage import _native_string
 from portage.localization import _
 
 def copyfile(src, dest):
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 24/26] lib/_emerge/AbstractEbuildProcess.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (21 preceding siblings ...)
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 23/26] lib/portage/_selinux.py: " Aaron Bauman
@ 2020-08-03 19:06 ` Aaron Bauman
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 25/26] lib/portage/util/futures/_asyncio/tasks.py: " Aaron Bauman
                   ` (2 subsequent siblings)
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:06 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/_emerge/AbstractEbuildProcess.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/_emerge/AbstractEbuildProcess.py b/lib/_emerge/AbstractEbuildProcess.py
index ae1aae55f..dc7426f2b 100644
--- a/lib/_emerge/AbstractEbuildProcess.py
+++ b/lib/_emerge/AbstractEbuildProcess.py
@@ -1,7 +1,6 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-import errno
 import functools
 import io
 import platform
@@ -17,7 +16,7 @@ from portage.elog import messages as elog_messages
 from portage.localization import _
 from portage.package.ebuild._ipc.ExitCommand import ExitCommand
 from portage.package.ebuild._ipc.QueryCommand import QueryCommand
-from portage import shutil, os
+from portage import os
 from portage.util.futures import asyncio
 from portage.util._pty import _create_pty_or_pipe
 from portage.util import apply_secpass_permissions
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 25/26] lib/portage/util/futures/_asyncio/tasks.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (22 preceding siblings ...)
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 24/26] lib/_emerge/AbstractEbuildProcess.py: " Aaron Bauman
@ 2020-08-03 19:06 ` Aaron Bauman
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 26/26] lib/portage/tests/emerge/test_simple.py: " Aaron Bauman
  2020-08-03 19:41 ` [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Ulrich Mueller
  25 siblings, 0 replies; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:06 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

* Drop unused import
* Update copyright

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/util/futures/_asyncio/tasks.py | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/lib/portage/util/futures/_asyncio/tasks.py b/lib/portage/util/futures/_asyncio/tasks.py
index 84c6f4462..c9db3146e 100644
--- a/lib/portage/util/futures/_asyncio/tasks.py
+++ b/lib/portage/util/futures/_asyncio/tasks.py
@@ -1,4 +1,4 @@
-# Copyright 2018 Gentoo Foundation
+# Copyright 2018-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 ___all___ = (
@@ -14,10 +14,6 @@ import portage
 portage.proxy.lazyimport.lazyimport(globals(),
 	'portage.util.futures:asyncio',
 )
-from portage.util._eventloop.global_event_loop import (
-	global_event_loop as _global_event_loop,
-)
-
 
 def wait(futures, loop=None, timeout=None, return_when=ALL_COMPLETED):
 	"""
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* [gentoo-portage-dev] [PATCH 26/26] lib/portage/tests/emerge/test_simple.py: drop unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (23 preceding siblings ...)
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 25/26] lib/portage/util/futures/_asyncio/tasks.py: " Aaron Bauman
@ 2020-08-03 19:06 ` Aaron Bauman
  2020-08-03 19:32   ` Zac Medico
  2020-08-03 19:41 ` [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Ulrich Mueller
  25 siblings, 1 reply; 28+ messages in thread
From: Aaron Bauman @ 2020-08-03 19:06 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Aaron Bauman

Signed-off-by: Aaron Bauman <bman@gentoo.org>
---
 lib/portage/tests/emerge/test_simple.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/portage/tests/emerge/test_simple.py b/lib/portage/tests/emerge/test_simple.py
index 19ab72457..e8144c55f 100644
--- a/lib/portage/tests/emerge/test_simple.py
+++ b/lib/portage/tests/emerge/test_simple.py
@@ -7,8 +7,7 @@ import sys
 import portage
 from portage import shutil, os
 from portage import _unicode_decode
-from portage.const import (BASH_BINARY, PORTAGE_BASE_PATH,
-	PORTAGE_PYM_PATH, USER_CONFIG_PATH)
+from portage.const import (BASH_BINARY, PORTAGE_PYM_PATH, USER_CONFIG_PATH)
 from portage.cache.mappings import Mapping
 from portage.process import find_binary
 from portage.tests import TestCase
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 28+ messages in thread

* Re: [gentoo-portage-dev] [PATCH 26/26] lib/portage/tests/emerge/test_simple.py: drop unused-import
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 26/26] lib/portage/tests/emerge/test_simple.py: " Aaron Bauman
@ 2020-08-03 19:32   ` Zac Medico
  0 siblings, 0 replies; 28+ messages in thread
From: Zac Medico @ 2020-08-03 19:32 UTC (permalink / raw
  To: gentoo-portage-dev, Aaron Bauman


[-- Attachment #1.1: Type: text/plain, Size: 355 bytes --]

On 8/3/20 12:06 PM, Aaron Bauman wrote:
> Signed-off-by: Aaron Bauman <bman@gentoo.org>
> ---
>  lib/portage/tests/emerge/test_simple.py | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)

Thanks, merged the whole series:

https://gitweb.gentoo.org/proj/portage.git/commit/?id=e8944b35c070d550a6c552dcd2ba5300efda01d0
-- 
Thanks,
Zac


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 981 bytes --]

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import
  2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
                   ` (24 preceding siblings ...)
  2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 26/26] lib/portage/tests/emerge/test_simple.py: " Aaron Bauman
@ 2020-08-03 19:41 ` Ulrich Mueller
  25 siblings, 0 replies; 28+ messages in thread
From: Ulrich Mueller @ 2020-08-03 19:41 UTC (permalink / raw
  To: Aaron Bauman; +Cc: gentoo-portage-dev

[-- Attachment #1: Type: text/plain, Size: 282 bytes --]

>>>>> On Mon, 03 Aug 2020, Aaron Bauman wrote:

> --- a/lib/portage/util/_desktop_entry.py
> +++ b/lib/portage/util/_desktop_entry.py
> @@ -1,16 +1,13 @@
> -# Copyright 2012-2013 Gentoo Foundation
> +# Copyright 2020 Gentoo Authors

Please don't drop existing years from the range.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 507 bytes --]

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2020-08-03 19:41 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-03 19:05 [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 02/26] lib/portage/sync/modules/rsync/rsync.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 03/26] lib/_emerge/Scheduler.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 04/26] lib/_emerge/DependencyArg.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 05/26] lib/portage/tests/resolver/test_merge_order.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 06/26] lib/portage/package/ebuild/config.py: drop unused-import Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 07/26] lib/_emerge/resolver/output.py: fix unused-import Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 08/26] lib/_emerge/Package.py: drop unused-import Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 09/26] lib/_emerge/AbstractPollTask.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 10/26] lib/portage/util/_dyn_libs/NeededEntry.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 11/26] lib/portage/package/ebuild/getmaskingstatus.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 12/26] lib/portage/package/ebuild/_spawn_nofetch.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 13/26] lib/portage/dep/dep_check.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 14/26] lib/portage/cache/ebuild_xattr.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 15/26] lib/portage/_emirrordist/main.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 16/26] lib/portage/exception.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 17/26] bin/doins.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 18/26] lib/_emerge/depgraph.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 19/26] lib/_emerge/UseFlagDisplay.py: " Aaron Bauman
2020-08-03 19:05 ` [gentoo-portage-dev] [PATCH 20/26] lib/portage/dbapi/bintree.py: " Aaron Bauman
2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 21/26] lib/portage/news.py: " Aaron Bauman
2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 22/26] lib/portage/mail.py: " Aaron Bauman
2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 23/26] lib/portage/_selinux.py: " Aaron Bauman
2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 24/26] lib/_emerge/AbstractEbuildProcess.py: " Aaron Bauman
2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 25/26] lib/portage/util/futures/_asyncio/tasks.py: " Aaron Bauman
2020-08-03 19:06 ` [gentoo-portage-dev] [PATCH 26/26] lib/portage/tests/emerge/test_simple.py: " Aaron Bauman
2020-08-03 19:32   ` Zac Medico
2020-08-03 19:41 ` [gentoo-portage-dev] [PATCH 01/26] lib/portage/util/_desktop_entry.py: fix unused-import Ulrich Mueller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox