summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2016-01-27 21:58:58 -0800
committerRobin H. Johnson <robbat2@gentoo.org>2016-01-27 21:59:07 -0800
commitd81dce703c99623faaa78cd846c71fef51814f4c (patch)
treef9bb721c9eb079c68f744f392c388bad9c9ec016 /dev-vcs/git-tools/files
parentprofiles: games-strategy/revenge-of-the-titans and games-simulation/qct are gone (diff)
downloadgentoo-d81dce703c99623faaa78cd846c71fef51814f4c.tar.gz
gentoo-d81dce703c99623faaa78cd846c71fef51814f4c.tar.bz2
gentoo-d81dce703c99623faaa78cd846c71fef51814f4c.zip
dev-vcs/git-tools: py3 fixup and make repoman happy.
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-vcs/git-tools/files')
-rw-r--r--dev-vcs/git-tools/files/git-tools-2015_p20151225-py3.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-vcs/git-tools/files/git-tools-2015_p20151225-py3.patch b/dev-vcs/git-tools/files/git-tools-2015_p20151225-py3.patch
new file mode 100644
index 000000000000..a7f59e0b04dc
--- /dev/null
+++ b/dev-vcs/git-tools/files/git-tools-2015_p20151225-py3.patch
@@ -0,0 +1,11 @@
+--- a/git-restore-mtime 2016-01-27 14:05:09.000000000 -0800
++++ b/git-restore-mtime 2016-01-27 21:51:17.000000000 -0800
+@@ -150,7 +150,7 @@
+ ['--'] + args.pathspec,
+ stdout=subprocess.PIPE)
+ for line in gitobj.stdout:
+- lsfileslist.add(os.path.relpath(line.strip(), workdir))
++ lsfileslist.add(os.path.relpath(line.strip().decode(), workdir))
+
+ # List files matching user pathspec, relative to current directory
+ # git commands always print paths relative to work tree root