public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2016-05-15  4:13 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2016-05-15  4:13 UTC (permalink / raw
  To: gentoo-commits

commit:     e0c7a20abf156bc8741ee27bcb93c26cbfb3367b
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 04:10:17 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 04:10:17 2016 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=e0c7a20a

repoman/tests/__init__.py: Import the repoman portage instance

 repoman/pym/repoman/tests/__init__.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/__init__.py b/repoman/pym/repoman/tests/__init__.py
index 7243e7a..af234d4 100644
--- a/repoman/pym/repoman/tests/__init__.py
+++ b/repoman/pym/repoman/tests/__init__.py
@@ -22,7 +22,8 @@ try:
 except ImportError:
 	unittest_skip_shims = True
 
-import portage
+from repoman._portage import portage
+
 from portage import os
 from portage import _encodings
 from portage import _unicode_decode


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2016-05-15  4:16 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2016-05-15  4:16 UTC (permalink / raw
  To: gentoo-commits

commit:     53acfdad1ebcc9ceb042d5737b1cdd9ffe1ee02c
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 04:15:38 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 04:15:38 2016 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=53acfdad

repoman/tests/__init__.py: Import the repoman portage instance

 repoman/pym/repoman/tests/__init__.py | 3 ++-
 repoman/pym/repoman/tests/runTests.py | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/repoman/pym/repoman/tests/__init__.py b/repoman/pym/repoman/tests/__init__.py
index 7243e7a..af234d4 100644
--- a/repoman/pym/repoman/tests/__init__.py
+++ b/repoman/pym/repoman/tests/__init__.py
@@ -22,7 +22,8 @@ try:
 except ImportError:
 	unittest_skip_shims = True
 
-import portage
+from repoman._portage import portage
+
 from portage import os
 from portage import _encodings
 from portage import _unicode_decode

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 882911c..83e3d35 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -36,7 +36,8 @@ sys.path.insert(0, repoman_pym)
 portage_pym = osp.dirname(osp.dirname(repoman_pym))+'/pym'
 sys.path.insert(0, portage_pym)
 
-import portage
+# import our centrally initialized portage instance
+from repoman._portage import portage
 portage._internal_caller = True
 
 # Ensure that we don't instantiate portage.settings, so that tests should


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2016-05-15  8:40 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2016-05-15  8:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e5101646187dbf8365e8facc1333e63a5d468294
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 04:15:38 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 08:39:18 2016 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=e5101646

repoman/tests/__init__.py: Import the repoman portage instance

 repoman/pym/repoman/tests/__init__.py | 3 ++-
 repoman/pym/repoman/tests/runTests.py | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/repoman/pym/repoman/tests/__init__.py b/repoman/pym/repoman/tests/__init__.py
index 7243e7a..af234d4 100644
--- a/repoman/pym/repoman/tests/__init__.py
+++ b/repoman/pym/repoman/tests/__init__.py
@@ -22,7 +22,8 @@ try:
 except ImportError:
 	unittest_skip_shims = True
 
-import portage
+from repoman._portage import portage
+
 from portage import os
 from portage import _encodings
 from portage import _unicode_decode

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 882911c..83e3d35 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -36,7 +36,8 @@ sys.path.insert(0, repoman_pym)
 portage_pym = osp.dirname(osp.dirname(repoman_pym))+'/pym'
 sys.path.insert(0, portage_pym)
 
-import portage
+# import our centrally initialized portage instance
+from repoman._portage import portage
 portage._internal_caller = True
 
 # Ensure that we don't instantiate portage.settings, so that tests should


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
  2016-05-15 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec
@ 2016-05-15 18:34 ` Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2016-05-15 18:34 UTC (permalink / raw
  To: gentoo-commits

commit:     189df1313426c17db8ec6ed02e8286e26ed64fe5
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 04:15:38 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun May 15 18:28:08 2016 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=189df131

repoman/tests/__init__.py: Import the repoman portage instance

 repoman/pym/repoman/tests/__init__.py | 3 ++-
 repoman/pym/repoman/tests/runTests.py | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/repoman/pym/repoman/tests/__init__.py b/repoman/pym/repoman/tests/__init__.py
index 7243e7a..af234d4 100644
--- a/repoman/pym/repoman/tests/__init__.py
+++ b/repoman/pym/repoman/tests/__init__.py
@@ -22,7 +22,8 @@ try:
 except ImportError:
 	unittest_skip_shims = True
 
-import portage
+from repoman._portage import portage
+
 from portage import os
 from portage import _encodings
 from portage import _unicode_decode

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 882911c..83e3d35 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -36,7 +36,8 @@ sys.path.insert(0, repoman_pym)
 portage_pym = osp.dirname(osp.dirname(repoman_pym))+'/pym'
 sys.path.insert(0, portage_pym)
 
-import portage
+# import our centrally initialized portage instance
+from repoman._portage import portage
 portage._internal_caller = True
 
 # Ensure that we don't instantiate portage.settings, so that tests should


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-09-11 21:43 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-09-11 21:43 UTC (permalink / raw
  To: gentoo-commits

commit:     0069db2e51ad7e780bfa450f073e8b24ecd54648
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:47:42 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Mon Sep 11 16:13:34 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=0069db2e

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E302

 repoman/pym/repoman/tests/runTests.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 3125ff058..1795aa487 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -11,6 +11,7 @@ import platform
 import pwd
 import signal
 
+
 def debug_signal(signum, frame):
 	import pdb
 	pdb.set_trace()


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-09-11 21:43 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-09-11 21:43 UTC (permalink / raw
  To: gentoo-commits

commit:     4b78ebe663d1de0fad092c36e2d340d695e66ca5
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:50:07 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Mon Sep 11 16:13:35 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=4b78ebe6

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E226

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index ca37b14b3..b0e715ec6 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -35,7 +35,7 @@ repoman_pym = osp.dirname(osp.dirname(osp.dirname(osp.realpath(__file__))))
 sys.path.insert(0, repoman_pym)
 
 # Add in the parent portage python modules
-portage_pym = osp.dirname(osp.dirname(repoman_pym))+'/pym'
+portage_pym = osp.dirname(osp.dirname(repoman_pym)) + '/pym'
 sys.path.insert(0, portage_pym)
 
 # import our centrally initialized portage instance


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-09-11 21:43 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-09-11 21:43 UTC (permalink / raw
  To: gentoo-commits

commit:     79c30786d44d7e4d592537e97f2914eae7834e91
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:49:26 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Mon Sep 11 16:13:34 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=79c30786

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E261

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 1795aa487..ca37b14b3 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -17,7 +17,7 @@ def debug_signal(signum, frame):
 	pdb.set_trace()
 
 if platform.python_implementation() == 'Jython':
-	debug_signum = signal.SIGUSR2 # bug #424259
+	debug_signum = signal.SIGUSR2  # bug #424259
 else:
 	debug_signum = signal.SIGUSR1
 


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-09-11 21:43 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-09-11 21:43 UTC (permalink / raw
  To: gentoo-commits

commit:     652d0e28d19817db5263a48a3fe6fa889b31cc51
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:46:28 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Mon Sep 11 16:13:34 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=652d0e28

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E401

 repoman/pym/repoman/tests/runTests.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 759abdd82..3125ff058 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -3,7 +3,8 @@
 # Copyright 2006-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-import os, sys
+import os
+import sys
 import os.path as osp
 import grp
 import platform


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-11-26 17:46 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-11-26 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     4d592e69a328eaf07b7e94b1dd9918403833bd3a
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:46:28 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 17:32:21 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=4d592e69

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E401

 repoman/pym/repoman/tests/runTests.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 759abdd82..3125ff058 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -3,7 +3,8 @@
 # Copyright 2006-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-import os, sys
+import os
+import sys
 import os.path as osp
 import grp
 import platform


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-11-26 17:46 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-11-26 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     60ca7fe766db046f22042d2f9083584d225ed7da
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:50:07 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 17:32:21 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=60ca7fe7

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E226

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index ca37b14b3..b0e715ec6 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -35,7 +35,7 @@ repoman_pym = osp.dirname(osp.dirname(osp.dirname(osp.realpath(__file__))))
 sys.path.insert(0, repoman_pym)
 
 # Add in the parent portage python modules
-portage_pym = osp.dirname(osp.dirname(repoman_pym))+'/pym'
+portage_pym = osp.dirname(osp.dirname(repoman_pym)) + '/pym'
 sys.path.insert(0, portage_pym)
 
 # import our centrally initialized portage instance


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-11-26 17:46 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-11-26 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     c0fd23cd1d8117322f467a15bd121b6bf6fa6796
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:47:42 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 17:32:21 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=c0fd23cd

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E302

 repoman/pym/repoman/tests/runTests.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 3125ff058..1795aa487 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -11,6 +11,7 @@ import platform
 import pwd
 import signal
 
+
 def debug_signal(signum, frame):
 	import pdb
 	pdb.set_trace()


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-11-26 17:46 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-11-26 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     e10bf152c65433094e3c744ea6fb148abecbc740
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:49:26 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 17:32:21 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=e10bf152

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E261

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 1795aa487..ca37b14b3 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -17,7 +17,7 @@ def debug_signal(signum, frame):
 	pdb.set_trace()
 
 if platform.python_implementation() == 'Jython':
-	debug_signum = signal.SIGUSR2 # bug #424259
+	debug_signum = signal.SIGUSR2  # bug #424259
 else:
 	debug_signum = signal.SIGUSR1
 


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-12-05 18:32 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-12-05 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     91e761f832abede0a60433d0a824b6ab04a541e8
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:46:28 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Dec  5 18:24:49 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=91e761f8

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E401

 repoman/pym/repoman/tests/runTests.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 759abdd82..3125ff058 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -3,7 +3,8 @@
 # Copyright 2006-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-import os, sys
+import os
+import sys
 import os.path as osp
 import grp
 import platform


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-12-05 18:32 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-12-05 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     57f922648264d2a03ec89d5617b9cd4f7ce00507
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:47:42 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Dec  5 18:24:49 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=57f92264

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E302

 repoman/pym/repoman/tests/runTests.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 3125ff058..1795aa487 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -11,6 +11,7 @@ import platform
 import pwd
 import signal
 
+
 def debug_signal(signum, frame):
 	import pdb
 	pdb.set_trace()


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-12-05 18:32 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-12-05 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     f0264cefabe1d1b684808b6e84f99fa8869d28c1
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:50:07 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Dec  5 18:24:49 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=f0264cef

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E226

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index ca37b14b3..b0e715ec6 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -35,7 +35,7 @@ repoman_pym = osp.dirname(osp.dirname(osp.dirname(osp.realpath(__file__))))
 sys.path.insert(0, repoman_pym)
 
 # Add in the parent portage python modules
-portage_pym = osp.dirname(osp.dirname(repoman_pym))+'/pym'
+portage_pym = osp.dirname(osp.dirname(repoman_pym)) + '/pym'
 sys.path.insert(0, portage_pym)
 
 # import our centrally initialized portage instance


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-12-05 18:32 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-12-05 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     5056368e52a249b13cf01b7d69995422e7a0516d
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:49:26 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Dec  5 18:24:49 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=5056368e

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E261

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 1795aa487..ca37b14b3 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -17,7 +17,7 @@ def debug_signal(signum, frame):
 	pdb.set_trace()
 
 if platform.python_implementation() == 'Jython':
-	debug_signum = signal.SIGUSR2 # bug #424259
+	debug_signum = signal.SIGUSR2  # bug #424259
 else:
 	debug_signum = signal.SIGUSR1
 


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-12-06  0:16 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-12-06  0:16 UTC (permalink / raw
  To: gentoo-commits

commit:     9ef45aaf273708049fc5ee1c8f65968b47bab039
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:47:42 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Wed Dec  6 00:13:28 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=9ef45aaf

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E302

 repoman/pym/repoman/tests/runTests.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 3125ff058..1795aa487 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -11,6 +11,7 @@ import platform
 import pwd
 import signal
 
+
 def debug_signal(signum, frame):
 	import pdb
 	pdb.set_trace()


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-12-06  0:16 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-12-06  0:16 UTC (permalink / raw
  To: gentoo-commits

commit:     d3193aa183fc6c621011251776f086c4f82baa9c
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:46:28 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Wed Dec  6 00:13:28 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=d3193aa1

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E401

 repoman/pym/repoman/tests/runTests.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 759abdd82..3125ff058 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -3,7 +3,8 @@
 # Copyright 2006-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-import os, sys
+import os
+import sys
 import os.path as osp
 import grp
 import platform


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-12-06  0:16 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-12-06  0:16 UTC (permalink / raw
  To: gentoo-commits

commit:     021dccdac2ab5d98361b743a8b4542965547158a
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:50:07 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Wed Dec  6 00:13:28 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=021dccda

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E226

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index ca37b14b3..b0e715ec6 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -35,7 +35,7 @@ repoman_pym = osp.dirname(osp.dirname(osp.dirname(osp.realpath(__file__))))
 sys.path.insert(0, repoman_pym)
 
 # Add in the parent portage python modules
-portage_pym = osp.dirname(osp.dirname(repoman_pym))+'/pym'
+portage_pym = osp.dirname(osp.dirname(repoman_pym)) + '/pym'
 sys.path.insert(0, portage_pym)
 
 # import our centrally initialized portage instance


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2017-12-06  0:16 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2017-12-06  0:16 UTC (permalink / raw
  To: gentoo-commits

commit:     f78eb978cd14d5a5ea5657e48edd3f15a27158e2
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:49:26 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Wed Dec  6 00:13:28 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=f78eb978

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E261

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 1795aa487..ca37b14b3 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -17,7 +17,7 @@ def debug_signal(signum, frame):
 	pdb.set_trace()
 
 if platform.python_implementation() == 'Jython':
-	debug_signum = signal.SIGUSR2 # bug #424259
+	debug_signum = signal.SIGUSR2  # bug #424259
 else:
 	debug_signum = signal.SIGUSR1
 


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-29 21:35 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2018-03-29 21:35 UTC (permalink / raw
  To: gentoo-commits

commit:     1b0ed497a2c3fe19debc774e6a4263344d8572f8
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:46:28 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Thu Mar 29 20:43:40 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=1b0ed497

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E401

 repoman/pym/repoman/tests/runTests.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 759abdd82..3125ff058 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -3,7 +3,8 @@
 # Copyright 2006-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-import os, sys
+import os
+import sys
 import os.path as osp
 import grp
 import platform


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-29 21:35 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2018-03-29 21:35 UTC (permalink / raw
  To: gentoo-commits

commit:     0a8aae892cfd7fcb0485c9936607cd04edfb96b5
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:47:42 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Thu Mar 29 20:43:40 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=0a8aae89

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E302

 repoman/pym/repoman/tests/runTests.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 3125ff058..1795aa487 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -11,6 +11,7 @@ import platform
 import pwd
 import signal
 
+
 def debug_signal(signum, frame):
 	import pdb
 	pdb.set_trace()


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-29 21:35 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2018-03-29 21:35 UTC (permalink / raw
  To: gentoo-commits

commit:     6c02e864d4a48a6d89caee464de71d21d60bde28
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:49:26 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Thu Mar 29 20:43:40 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=6c02e864

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E261

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 1795aa487..ca37b14b3 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -17,7 +17,7 @@ def debug_signal(signum, frame):
 	pdb.set_trace()
 
 if platform.python_implementation() == 'Jython':
-	debug_signum = signal.SIGUSR2 # bug #424259
+	debug_signum = signal.SIGUSR2  # bug #424259
 else:
 	debug_signum = signal.SIGUSR1
 


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-29 21:35 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2018-03-29 21:35 UTC (permalink / raw
  To: gentoo-commits

commit:     692e911e5bf7cdef693326dc165a6acb98652248
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:50:07 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Thu Mar 29 20:43:40 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=692e911e

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E226

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index ca37b14b3..b0e715ec6 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -35,7 +35,7 @@ repoman_pym = osp.dirname(osp.dirname(osp.dirname(osp.realpath(__file__))))
 sys.path.insert(0, repoman_pym)
 
 # Add in the parent portage python modules
-portage_pym = osp.dirname(osp.dirname(repoman_pym))+'/pym'
+portage_pym = osp.dirname(osp.dirname(repoman_pym)) + '/pym'
 sys.path.insert(0, portage_pym)
 
 # import our centrally initialized portage instance


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-30  0:48 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2018-03-30  0:48 UTC (permalink / raw
  To: gentoo-commits

commit:     ab00fed95fdffeceb8968fa733284910b59220f3
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:46:28 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 00:43:46 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=ab00fed9

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E401

 repoman/pym/repoman/tests/runTests.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 759abdd82..3125ff058 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -3,7 +3,8 @@
 # Copyright 2006-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-import os, sys
+import os
+import sys
 import os.path as osp
 import grp
 import platform


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-30  0:48 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2018-03-30  0:48 UTC (permalink / raw
  To: gentoo-commits

commit:     e893506796c5bd4bd4a8f0543a23be955bfb4136
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:49:26 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 00:43:47 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=e8935067

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E261

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 1795aa487..ca37b14b3 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -17,7 +17,7 @@ def debug_signal(signum, frame):
 	pdb.set_trace()
 
 if platform.python_implementation() == 'Jython':
-	debug_signum = signal.SIGUSR2 # bug #424259
+	debug_signum = signal.SIGUSR2  # bug #424259
 else:
 	debug_signum = signal.SIGUSR1
 


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-30  0:48 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2018-03-30  0:48 UTC (permalink / raw
  To: gentoo-commits

commit:     09196ccf2d79f9eef2ce8618d74bc53e124eb21d
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:50:07 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 00:43:47 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=09196ccf

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E226

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index ca37b14b3..b0e715ec6 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -35,7 +35,7 @@ repoman_pym = osp.dirname(osp.dirname(osp.dirname(osp.realpath(__file__))))
 sys.path.insert(0, repoman_pym)
 
 # Add in the parent portage python modules
-portage_pym = osp.dirname(osp.dirname(repoman_pym))+'/pym'
+portage_pym = osp.dirname(osp.dirname(repoman_pym)) + '/pym'
 sys.path.insert(0, portage_pym)
 
 # import our centrally initialized portage instance


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-30  0:48 Brian Dolbec
  0 siblings, 0 replies; 32+ messages in thread
From: Brian Dolbec @ 2018-03-30  0:48 UTC (permalink / raw
  To: gentoo-commits

commit:     e91ace3e0bc52a9d5f587460ad053e93a8dbffdd
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:47:42 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 00:43:47 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=e91ace3e

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E302

 repoman/pym/repoman/tests/runTests.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 3125ff058..1795aa487 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -11,6 +11,7 @@ import platform
 import pwd
 import signal
 
+
 def debug_signal(signum, frame):
 	import pdb
 	pdb.set_trace()


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-30  5:20 Zac Medico
  0 siblings, 0 replies; 32+ messages in thread
From: Zac Medico @ 2018-03-30  5:20 UTC (permalink / raw
  To: gentoo-commits

commit:     30cb501b641f99a8392261734384c6e681f9c3a8
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:49:26 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 03:51:21 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=30cb501b

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E261

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 1795aa487..ca37b14b3 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -17,7 +17,7 @@ def debug_signal(signum, frame):
 	pdb.set_trace()
 
 if platform.python_implementation() == 'Jython':
-	debug_signum = signal.SIGUSR2 # bug #424259
+	debug_signum = signal.SIGUSR2  # bug #424259
 else:
 	debug_signum = signal.SIGUSR1
 


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-30  5:20 Zac Medico
  0 siblings, 0 replies; 32+ messages in thread
From: Zac Medico @ 2018-03-30  5:20 UTC (permalink / raw
  To: gentoo-commits

commit:     4fcf189a18dca35f501d59a0344eba8732520ed4
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:46:28 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 03:51:20 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=4fcf189a

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E401

 repoman/pym/repoman/tests/runTests.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 759abdd82..3125ff058 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -3,7 +3,8 @@
 # Copyright 2006-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-import os, sys
+import os
+import sys
 import os.path as osp
 import grp
 import platform


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
@ 2018-03-30  5:20 Zac Medico
  0 siblings, 0 replies; 32+ messages in thread
From: Zac Medico @ 2018-03-30  5:20 UTC (permalink / raw
  To: gentoo-commits

commit:     fc80d0b580006e1ffbab6866d6ce4674c32ddb6e
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:47:42 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 03:51:20 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=fc80d0b5

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E302

 repoman/pym/repoman/tests/runTests.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index 3125ff058..1795aa487 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -11,6 +11,7 @@ import platform
 import pwd
 import signal
 
+
 def debug_signal(signum, frame):
 	import pdb
 	pdb.set_trace()


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

* [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/
  2018-03-30  4:23 [gentoo-commits] proj/portage:master " Zac Medico
@ 2018-03-30  5:20 ` Zac Medico
  0 siblings, 0 replies; 32+ messages in thread
From: Zac Medico @ 2018-03-30  5:20 UTC (permalink / raw
  To: gentoo-commits

commit:     32f9c278bfc4048191726f4a8670c77ea56d586b
Author:     El Acheche Anis <elacheche <AT> ubuntu <DOT> com>
AuthorDate: Mon Jul 24 04:50:07 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 03:51:21 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=32f9c278

repoman: repoman/pym/repoman/tests/runTests.py: Fix PEP8 E226

 repoman/pym/repoman/tests/runTests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/tests/runTests.py b/repoman/pym/repoman/tests/runTests.py
index ca37b14b3..b0e715ec6 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -35,7 +35,7 @@ repoman_pym = osp.dirname(osp.dirname(osp.dirname(osp.realpath(__file__))))
 sys.path.insert(0, repoman_pym)
 
 # Add in the parent portage python modules
-portage_pym = osp.dirname(osp.dirname(repoman_pym))+'/pym'
+portage_pym = osp.dirname(osp.dirname(repoman_pym)) + '/pym'
 sys.path.insert(0, portage_pym)
 
 # import our centrally initialized portage instance


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

end of thread, other threads:[~2018-03-30  5:21 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-05 18:32 [gentoo-commits] proj/portage:repoman commit in: repoman/pym/repoman/tests/ Brian Dolbec
  -- strict thread matches above, loose matches on Subject: below --
2018-03-30  5:20 Zac Medico
2018-03-30  5:20 Zac Medico
2018-03-30  5:20 Zac Medico
2018-03-30  4:23 [gentoo-commits] proj/portage:master " Zac Medico
2018-03-30  5:20 ` [gentoo-commits] proj/portage:repoman " Zac Medico
2018-03-30  0:48 Brian Dolbec
2018-03-30  0:48 Brian Dolbec
2018-03-30  0:48 Brian Dolbec
2018-03-30  0:48 Brian Dolbec
2018-03-29 21:35 Brian Dolbec
2018-03-29 21:35 Brian Dolbec
2018-03-29 21:35 Brian Dolbec
2018-03-29 21:35 Brian Dolbec
2017-12-06  0:16 Brian Dolbec
2017-12-06  0:16 Brian Dolbec
2017-12-06  0:16 Brian Dolbec
2017-12-06  0:16 Brian Dolbec
2017-12-05 18:32 Brian Dolbec
2017-12-05 18:32 Brian Dolbec
2017-12-05 18:32 Brian Dolbec
2017-11-26 17:46 Brian Dolbec
2017-11-26 17:46 Brian Dolbec
2017-11-26 17:46 Brian Dolbec
2017-11-26 17:46 Brian Dolbec
2017-09-11 21:43 Brian Dolbec
2017-09-11 21:43 Brian Dolbec
2017-09-11 21:43 Brian Dolbec
2017-09-11 21:43 Brian Dolbec
2016-05-15 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec
2016-05-15 18:34 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec
2016-05-15  8:40 Brian Dolbec
2016-05-15  4:16 Brian Dolbec
2016-05-15  4:13 Brian Dolbec

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