public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/tests/sync/
  2014-12-04 20:16 [gentoo-commits] proj/portage:master commit in: pym/portage/tests/sync/ Brian Dolbec
@ 2014-12-04 20:04 ` Brian Dolbec
  0 siblings, 0 replies; 5+ messages in thread
From: Brian Dolbec @ 2014-12-04 20:04 UTC (permalink / raw
  To: gentoo-commits

commit:     007a97b0330ce7b6f8ad60246114251ea46a2221
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 22 13:35:07 2014 +0000
Commit:     Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Thu Dec  4 19:56:36 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=007a97b0

Test sync with rsync and git, using file:// uri

---
 pym/portage/tests/sync/__init__.py        |   2 +
 pym/portage/tests/sync/test_sync_local.py | 189 ++++++++++++++++++++++++++++++
 2 files changed, 191 insertions(+)

diff --git a/pym/portage/tests/sync/__init__.py b/pym/portage/tests/sync/__init__.py
new file mode 100644
index 0000000..7cd880e
--- /dev/null
+++ b/pym/portage/tests/sync/__init__.py
@@ -0,0 +1,2 @@
+# Copyright 2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2

diff --git a/pym/portage/tests/sync/test_sync_local.py b/pym/portage/tests/sync/test_sync_local.py
new file mode 100644
index 0000000..65c20f8
--- /dev/null
+++ b/pym/portage/tests/sync/test_sync_local.py
@@ -0,0 +1,189 @@
+# Copyright 2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+import subprocess
+import sys
+import textwrap
+import time
+
+import portage
+from portage import os, shutil
+from portage import _unicode_decode
+from portage.const import PORTAGE_PYM_PATH, TIMESTAMP_FORMAT
+from portage.process import find_binary
+from portage.tests import TestCase
+from portage.tests.resolver.ResolverPlayground import ResolverPlayground
+from portage.util import ensure_dirs
+
+class SyncLocalTestCase(TestCase):
+	"""
+	Test sync with rsync and git, using file:// sync-uri.
+	"""
+
+	def _must_skip(self):
+		if find_binary("rsync") is None:
+			return "rsync: command not found"
+		if find_binary("git") is None:
+			return "git: command not found"
+
+	def testSyncLocal(self):
+		debug = False
+
+		skip_reason = self._must_skip()
+		if skip_reason:
+			self.portage_skip = skip_reason
+			self.assertFalse(True, skip_reason)
+			return
+
+		repos_conf = textwrap.dedent("""
+			[test_repo]
+			location = %(EPREFIX)s/var/repositories/test_repo
+			sync-type = %(sync-type)s
+			sync-uri = file:/%(EPREFIX)s/var/repositories/test_repo_sync
+			auto-sync = yes
+		""")
+
+		profile = {
+			"eapi": ("5",),
+			"package.use.stable.mask": ("dev-libs/A flag",)
+		}
+
+		ebuilds = {
+			"dev-libs/A-0": {}
+		}
+
+		playground = ResolverPlayground(ebuilds=ebuilds,
+			profile=profile, user_config={}, debug=debug)
+		settings = playground.settings
+		eprefix = settings["EPREFIX"]
+		eroot = settings["EROOT"]
+		homedir = os.path.join(eroot, "home")
+		distdir = os.path.join(eprefix, "distdir")
+		repo = settings.repositories["test_repo"]
+		metadata_dir = os.path.join(repo.location, "metadata")
+
+		cmds = {}
+		for cmd in ("emerge", "emaint"):
+			cmds[cmd] =  (portage._python_interpreter,
+				"-b", "-Wd", os.path.join(self.bindir, cmd))
+
+		git_binary = find_binary("git")
+		git_cmd = (git_binary,)
+
+		committer_name = "Gentoo Dev"
+		committer_email = "gentoo-dev@gentoo.org"
+
+		def change_sync_type(sync_type):
+			env["PORTAGE_REPOSITORIES"] = repos_conf % \
+				{"EPREFIX": eprefix, "sync-type": sync_type}
+
+		sync_cmds = (
+			(homedir, cmds["emerge"] + ("--sync",)),
+			(homedir, lambda: self.assertTrue(os.path.exists(
+				os.path.join(repo.location, "dev-libs", "A")
+				), "dev-libs/A expected, but missing")),
+			(homedir, cmds["emaint"] + ("sync", "-A")),
+		)
+
+		rename_repo = (
+			(homedir, lambda: os.rename(repo.location,
+				repo.location + "_sync")),
+		)
+
+		delete_sync_repo = (
+			(homedir, lambda: shutil.rmtree(
+				repo.location + "_sync")),
+		)
+
+		git_repo_create = (
+			(repo.location, git_cmd +
+				("config", "--global", "user.name", committer_name,)),
+			(repo.location, git_cmd +
+				("config", "--global", "user.email", committer_email,)),
+			(repo.location, git_cmd + ("init-db",)),
+			(repo.location, git_cmd + ("add", ".")),
+			(repo.location, git_cmd +
+				("commit", "-a", "-m", "add whole repo")),
+		)
+
+		sync_type_git = (
+			(homedir, lambda: change_sync_type("git")),
+		)
+
+		pythonpath =  os.environ.get("PYTHONPATH")
+		if pythonpath is not None and not pythonpath.strip():
+			pythonpath = None
+		if pythonpath is not None and \
+			pythonpath.split(":")[0] == PORTAGE_PYM_PATH:
+			pass
+		else:
+			if pythonpath is None:
+				pythonpath = ""
+			else:
+				pythonpath = ":" + pythonpath
+			pythonpath = PORTAGE_PYM_PATH + pythonpath
+
+		env = {
+			"PORTAGE_OVERRIDE_EPREFIX" : eprefix,
+			"DISTDIR" : distdir,
+			"GENTOO_COMMITTER_NAME" : committer_name,
+			"GENTOO_COMMITTER_EMAIL" : committer_email,
+			"HOME" : homedir,
+			"PATH" : os.environ["PATH"],
+			"PORTAGE_GRPNAME" : os.environ["PORTAGE_GRPNAME"],
+			"PORTAGE_USERNAME" : os.environ["PORTAGE_USERNAME"],
+			"PORTAGE_REPOSITORIES" : repos_conf %
+				{"EPREFIX": eprefix, "sync-type": "rsync"},
+			"PYTHONPATH" : pythonpath,
+		}
+
+		if os.environ.get("SANDBOX_ON") == "1":
+			# avoid problems from nested sandbox instances
+			env["FEATURES"] = "-sandbox -usersandbox"
+
+		dirs = [homedir, metadata_dir]
+		try:
+			for d in dirs:
+				ensure_dirs(d)
+
+			timestamp_path = os.path.join(metadata_dir, 'timestamp.chk')
+			with open(timestamp_path, 'w') as f:
+				f.write(time.strftime('%s\n' % TIMESTAMP_FORMAT, time.gmtime()))
+
+			if debug:
+				# The subprocess inherits both stdout and stderr, for
+				# debugging purposes.
+				stdout = None
+			else:
+				# The subprocess inherits stderr so that any warnings
+				# triggered by python -Wd will be visible.
+				stdout = subprocess.PIPE
+
+			for cwd, cmd in rename_repo + sync_cmds + \
+				delete_sync_repo + git_repo_create + sync_type_git + \
+				rename_repo + sync_cmds:
+
+				if hasattr(cmd, '__call__'):
+					cmd()
+					continue
+
+				abs_cwd = os.path.join(repo.location, cwd)
+				proc = subprocess.Popen(cmd,
+					cwd=abs_cwd, env=env, stdout=stdout)
+
+				if debug:
+					proc.wait()
+				else:
+					output = proc.stdout.readlines()
+					proc.wait()
+					proc.stdout.close()
+					if proc.returncode != os.EX_OK:
+						for line in output:
+							sys.stderr.write(_unicode_decode(line))
+
+				self.assertEqual(os.EX_OK, proc.returncode,
+					"%s failed in %s" % (cmd, cwd,))
+
+
+		finally:
+			playground.cleanup()


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

* [gentoo-commits] proj/portage:master commit in: pym/portage/tests/sync/
@ 2014-12-04 20:16 Brian Dolbec
  2014-12-04 20:04 ` [gentoo-commits] proj/portage:plugin-sync " Brian Dolbec
  0 siblings, 1 reply; 5+ messages in thread
From: Brian Dolbec @ 2014-12-04 20:16 UTC (permalink / raw
  To: gentoo-commits

commit:     007a97b0330ce7b6f8ad60246114251ea46a2221
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 22 13:35:07 2014 +0000
Commit:     Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Thu Dec  4 19:56:36 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=007a97b0

Test sync with rsync and git, using file:// uri

---
 pym/portage/tests/sync/__init__.py        |   2 +
 pym/portage/tests/sync/test_sync_local.py | 189 ++++++++++++++++++++++++++++++
 2 files changed, 191 insertions(+)

diff --git a/pym/portage/tests/sync/__init__.py b/pym/portage/tests/sync/__init__.py
new file mode 100644
index 0000000..7cd880e
--- /dev/null
+++ b/pym/portage/tests/sync/__init__.py
@@ -0,0 +1,2 @@
+# Copyright 2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2

diff --git a/pym/portage/tests/sync/test_sync_local.py b/pym/portage/tests/sync/test_sync_local.py
new file mode 100644
index 0000000..65c20f8
--- /dev/null
+++ b/pym/portage/tests/sync/test_sync_local.py
@@ -0,0 +1,189 @@
+# Copyright 2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+import subprocess
+import sys
+import textwrap
+import time
+
+import portage
+from portage import os, shutil
+from portage import _unicode_decode
+from portage.const import PORTAGE_PYM_PATH, TIMESTAMP_FORMAT
+from portage.process import find_binary
+from portage.tests import TestCase
+from portage.tests.resolver.ResolverPlayground import ResolverPlayground
+from portage.util import ensure_dirs
+
+class SyncLocalTestCase(TestCase):
+	"""
+	Test sync with rsync and git, using file:// sync-uri.
+	"""
+
+	def _must_skip(self):
+		if find_binary("rsync") is None:
+			return "rsync: command not found"
+		if find_binary("git") is None:
+			return "git: command not found"
+
+	def testSyncLocal(self):
+		debug = False
+
+		skip_reason = self._must_skip()
+		if skip_reason:
+			self.portage_skip = skip_reason
+			self.assertFalse(True, skip_reason)
+			return
+
+		repos_conf = textwrap.dedent("""
+			[test_repo]
+			location = %(EPREFIX)s/var/repositories/test_repo
+			sync-type = %(sync-type)s
+			sync-uri = file:/%(EPREFIX)s/var/repositories/test_repo_sync
+			auto-sync = yes
+		""")
+
+		profile = {
+			"eapi": ("5",),
+			"package.use.stable.mask": ("dev-libs/A flag",)
+		}
+
+		ebuilds = {
+			"dev-libs/A-0": {}
+		}
+
+		playground = ResolverPlayground(ebuilds=ebuilds,
+			profile=profile, user_config={}, debug=debug)
+		settings = playground.settings
+		eprefix = settings["EPREFIX"]
+		eroot = settings["EROOT"]
+		homedir = os.path.join(eroot, "home")
+		distdir = os.path.join(eprefix, "distdir")
+		repo = settings.repositories["test_repo"]
+		metadata_dir = os.path.join(repo.location, "metadata")
+
+		cmds = {}
+		for cmd in ("emerge", "emaint"):
+			cmds[cmd] =  (portage._python_interpreter,
+				"-b", "-Wd", os.path.join(self.bindir, cmd))
+
+		git_binary = find_binary("git")
+		git_cmd = (git_binary,)
+
+		committer_name = "Gentoo Dev"
+		committer_email = "gentoo-dev@gentoo.org"
+
+		def change_sync_type(sync_type):
+			env["PORTAGE_REPOSITORIES"] = repos_conf % \
+				{"EPREFIX": eprefix, "sync-type": sync_type}
+
+		sync_cmds = (
+			(homedir, cmds["emerge"] + ("--sync",)),
+			(homedir, lambda: self.assertTrue(os.path.exists(
+				os.path.join(repo.location, "dev-libs", "A")
+				), "dev-libs/A expected, but missing")),
+			(homedir, cmds["emaint"] + ("sync", "-A")),
+		)
+
+		rename_repo = (
+			(homedir, lambda: os.rename(repo.location,
+				repo.location + "_sync")),
+		)
+
+		delete_sync_repo = (
+			(homedir, lambda: shutil.rmtree(
+				repo.location + "_sync")),
+		)
+
+		git_repo_create = (
+			(repo.location, git_cmd +
+				("config", "--global", "user.name", committer_name,)),
+			(repo.location, git_cmd +
+				("config", "--global", "user.email", committer_email,)),
+			(repo.location, git_cmd + ("init-db",)),
+			(repo.location, git_cmd + ("add", ".")),
+			(repo.location, git_cmd +
+				("commit", "-a", "-m", "add whole repo")),
+		)
+
+		sync_type_git = (
+			(homedir, lambda: change_sync_type("git")),
+		)
+
+		pythonpath =  os.environ.get("PYTHONPATH")
+		if pythonpath is not None and not pythonpath.strip():
+			pythonpath = None
+		if pythonpath is not None and \
+			pythonpath.split(":")[0] == PORTAGE_PYM_PATH:
+			pass
+		else:
+			if pythonpath is None:
+				pythonpath = ""
+			else:
+				pythonpath = ":" + pythonpath
+			pythonpath = PORTAGE_PYM_PATH + pythonpath
+
+		env = {
+			"PORTAGE_OVERRIDE_EPREFIX" : eprefix,
+			"DISTDIR" : distdir,
+			"GENTOO_COMMITTER_NAME" : committer_name,
+			"GENTOO_COMMITTER_EMAIL" : committer_email,
+			"HOME" : homedir,
+			"PATH" : os.environ["PATH"],
+			"PORTAGE_GRPNAME" : os.environ["PORTAGE_GRPNAME"],
+			"PORTAGE_USERNAME" : os.environ["PORTAGE_USERNAME"],
+			"PORTAGE_REPOSITORIES" : repos_conf %
+				{"EPREFIX": eprefix, "sync-type": "rsync"},
+			"PYTHONPATH" : pythonpath,
+		}
+
+		if os.environ.get("SANDBOX_ON") == "1":
+			# avoid problems from nested sandbox instances
+			env["FEATURES"] = "-sandbox -usersandbox"
+
+		dirs = [homedir, metadata_dir]
+		try:
+			for d in dirs:
+				ensure_dirs(d)
+
+			timestamp_path = os.path.join(metadata_dir, 'timestamp.chk')
+			with open(timestamp_path, 'w') as f:
+				f.write(time.strftime('%s\n' % TIMESTAMP_FORMAT, time.gmtime()))
+
+			if debug:
+				# The subprocess inherits both stdout and stderr, for
+				# debugging purposes.
+				stdout = None
+			else:
+				# The subprocess inherits stderr so that any warnings
+				# triggered by python -Wd will be visible.
+				stdout = subprocess.PIPE
+
+			for cwd, cmd in rename_repo + sync_cmds + \
+				delete_sync_repo + git_repo_create + sync_type_git + \
+				rename_repo + sync_cmds:
+
+				if hasattr(cmd, '__call__'):
+					cmd()
+					continue
+
+				abs_cwd = os.path.join(repo.location, cwd)
+				proc = subprocess.Popen(cmd,
+					cwd=abs_cwd, env=env, stdout=stdout)
+
+				if debug:
+					proc.wait()
+				else:
+					output = proc.stdout.readlines()
+					proc.wait()
+					proc.stdout.close()
+					if proc.returncode != os.EX_OK:
+						for line in output:
+							sys.stderr.write(_unicode_decode(line))
+
+				self.assertEqual(os.EX_OK, proc.returncode,
+					"%s failed in %s" % (cmd, cwd,))
+
+
+		finally:
+			playground.cleanup()


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

* [gentoo-commits] proj/portage:master commit in: pym/portage/tests/sync/
@ 2017-01-28 21:11 Zac Medico
  0 siblings, 0 replies; 5+ messages in thread
From: Zac Medico @ 2017-01-28 21:11 UTC (permalink / raw
  To: gentoo-commits

commit:     b43f542614d136f69328dbc956f902bddb3db9c2
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 28 20:45:16 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sat Jan 28 20:55:22 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=b43f5426

test_sync_local: fix emaint command path to be valid for travis

 pym/portage/tests/sync/test_sync_local.py | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/pym/portage/tests/sync/test_sync_local.py b/pym/portage/tests/sync/test_sync_local.py
index b57bdba..bec2e6a 100644
--- a/pym/portage/tests/sync/test_sync_local.py
+++ b/pym/portage/tests/sync/test_sync_local.py
@@ -71,8 +71,15 @@ class SyncLocalTestCase(TestCase):
 
 		cmds = {}
 		for cmd in ("emerge", "emaint"):
-			cmds[cmd] =  (portage._python_interpreter,
-				"-b", "-Wd", os.path.join(self.bindir, cmd))
+			for bindir in (self.bindir, self.sbindir):
+				path = os.path.join(bindir, cmd)
+				if os.path.exists(path):
+					cmds[cmd] =  (portage._python_interpreter,
+						"-b", "-Wd", path)
+					break
+			else:
+				raise AssertionError('%s binary not found in %s or %s' %
+					(cmd, self.bindir, self.sbindir))
 
 		git_binary = find_binary("git")
 		git_cmd = (git_binary,)


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

* [gentoo-commits] proj/portage:master commit in: pym/portage/tests/sync/
@ 2017-01-31 21:03 Zac Medico
  0 siblings, 0 replies; 5+ messages in thread
From: Zac Medico @ 2017-01-31 21:03 UTC (permalink / raw
  To: gentoo-commits

commit:     0655b4a26e378cf409c9a033514f41c307d01371
Author:     Alexandru Elisei <alexandru.elisei <AT> gmail <DOT> com>
AuthorDate: Sun Jan 29 18:07:34 2017 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Jan 31 21:02:50 2017 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=0655b4a2

test_sync_local: add test for auto-sync set to 'no'

 pym/portage/tests/sync/test_sync_local.py | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/pym/portage/tests/sync/test_sync_local.py b/pym/portage/tests/sync/test_sync_local.py
index bec2e6a..1d38562 100644
--- a/pym/portage/tests/sync/test_sync_local.py
+++ b/pym/portage/tests/sync/test_sync_local.py
@@ -42,7 +42,7 @@ class SyncLocalTestCase(TestCase):
 			location = %(EPREFIX)s/var/repositories/test_repo
 			sync-type = %(sync-type)s
 			sync-uri = file:/%(EPREFIX)s/var/repositories/test_repo_sync
-			auto-sync = yes
+			auto-sync = %(auto-sync)s
 			%(repo_extra_keys)s
 		""")
 
@@ -87,9 +87,11 @@ class SyncLocalTestCase(TestCase):
 		committer_name = "Gentoo Dev"
 		committer_email = "gentoo-dev@gentoo.org"
 
-		def repos_set_conf(sync_type, dflt_keys=None, xtra_keys=None):
+		def repos_set_conf(sync_type, dflt_keys=None, xtra_keys=None,
+			auto_sync="yes"):
 			env["PORTAGE_REPOSITORIES"] = repos_conf % {\
 				"EPREFIX": eprefix, "sync-type": sync_type,
+				"auto-sync": auto_sync,
 				"default_keys": "" if dflt_keys is None else dflt_keys,
 				"repo_extra_keys": "" if xtra_keys is None else xtra_keys}
 
@@ -100,6 +102,12 @@ class SyncLocalTestCase(TestCase):
 			os.unlink(os.path.join(metadata_dir, 'timestamp.chk'))
 
 		sync_cmds = (
+			(homedir, lambda: repos_set_conf("rsync", auto_sync="no")),
+			(homedir, cmds["emerge"] + ("--sync",)),
+			(homedir, lambda: self.assertFalse(os.path.exists(
+				os.path.join(repo.location, "dev-libs", "A")
+				), "dev-libs/A found, expected missing")),
+			(homedir, lambda: repos_set_conf("rsync", auto_sync="yes")),
 			(homedir, cmds["emerge"] + ("--sync",)),
 			(homedir, lambda: self.assertTrue(os.path.exists(
 				os.path.join(repo.location, "dev-libs", "A")


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

* [gentoo-commits] proj/portage:master commit in: pym/portage/tests/sync/
@ 2018-07-05 10:20 Zac Medico
  0 siblings, 0 replies; 5+ messages in thread
From: Zac Medico @ 2018-07-05 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     82823b0c4de0a7cbb5654bb19d63aef874800afd
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  5 10:18:55 2018 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu Jul  5 10:19:23 2018 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=82823b0c

test_sync_local: fix GitSync coverage

Fixes: 0655b4a26e37 ("test_sync_local: add test for auto-sync set to 'no'")

 pym/portage/tests/sync/test_sync_local.py | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/pym/portage/tests/sync/test_sync_local.py b/pym/portage/tests/sync/test_sync_local.py
index 010c8f887..17ff6f200 100644
--- a/pym/portage/tests/sync/test_sync_local.py
+++ b/pym/portage/tests/sync/test_sync_local.py
@@ -102,17 +102,20 @@ class SyncLocalTestCase(TestCase):
 			os.unlink(os.path.join(metadata_dir, 'timestamp.chk'))
 
 		sync_cmds = (
+			(homedir, cmds["emerge"] + ("--sync",)),
+			(homedir, lambda: self.assertTrue(os.path.exists(
+				os.path.join(repo.location, "dev-libs", "A")
+				), "dev-libs/A expected, but missing")),
+			(homedir, cmds["emaint"] + ("sync", "-A")),
+		)
+
+		sync_cmds_auto_sync = (
 			(homedir, lambda: repos_set_conf("rsync", auto_sync="no")),
 			(homedir, cmds["emerge"] + ("--sync",)),
 			(homedir, lambda: self.assertFalse(os.path.exists(
 				os.path.join(repo.location, "dev-libs", "A")
 				), "dev-libs/A found, expected missing")),
 			(homedir, lambda: repos_set_conf("rsync", auto_sync="yes")),
-			(homedir, cmds["emerge"] + ("--sync",)),
-			(homedir, lambda: self.assertTrue(os.path.exists(
-				os.path.join(repo.location, "dev-libs", "A")
-				), "dev-libs/A expected, but missing")),
-			(homedir, cmds["emaint"] + ("sync", "-A")),
 		)
 
 		rename_repo = (
@@ -236,7 +239,7 @@ class SyncLocalTestCase(TestCase):
 				# triggered by python -Wd will be visible.
 				stdout = subprocess.PIPE
 
-			for cwd, cmd in rename_repo + sync_cmds + \
+			for cwd, cmd in rename_repo + sync_cmds_auto_sync + sync_cmds + \
 				rsync_opts_repos + rsync_opts_repos_default + \
 				rsync_opts_repos_default_ovr + rsync_opts_repos_default_cancel + \
 				delete_sync_repo + git_repo_create + sync_type_git + \


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

end of thread, other threads:[~2018-07-05 10:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-04 20:16 [gentoo-commits] proj/portage:master commit in: pym/portage/tests/sync/ Brian Dolbec
2014-12-04 20:04 ` [gentoo-commits] proj/portage:plugin-sync " Brian Dolbec
  -- strict thread matches above, loose matches on Subject: below --
2017-01-28 21:11 [gentoo-commits] proj/portage:master " Zac Medico
2017-01-31 21:03 Zac Medico
2018-07-05 10:20 Zac Medico

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