diff options
author | 2015-11-28 13:53:52 +0100 | |
---|---|---|
committer | 2015-11-28 15:12:49 +0100 | |
commit | 820cc250751bd8e14cd80db11599e3a3f6b1f5b8 (patch) | |
tree | eb3b7df44d6760dfc031dfb60653cc7a022b98f1 /dev-python/xonsh/files/xonsh-0.2.3-xonsh.bat-backport.patch | |
parent | dev-java/hessian: Clean up old. (diff) | |
download | gentoo-820cc250751bd8e14cd80db11599e3a3f6b1f5b8.tar.gz gentoo-820cc250751bd8e14cd80db11599e3a3f6b1f5b8.tar.bz2 gentoo-820cc250751bd8e14cd80db11599e3a3f6b1f5b8.zip |
dev-python/xonsh: New package, ebuild written by me
Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/xonsh/files/xonsh-0.2.3-xonsh.bat-backport.patch')
-rw-r--r-- | dev-python/xonsh/files/xonsh-0.2.3-xonsh.bat-backport.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-python/xonsh/files/xonsh-0.2.3-xonsh.bat-backport.patch b/dev-python/xonsh/files/xonsh-0.2.3-xonsh.bat-backport.patch new file mode 100644 index 000000000000..f938ad720a74 --- /dev/null +++ b/dev-python/xonsh/files/xonsh-0.2.3-xonsh.bat-backport.patch @@ -0,0 +1,22 @@ +From ed8b6ce37c76f62585a5cc86ac99194bf7115a84 Mon Sep 17 00:00:00 2001 +From: selepo <po.lenhoff@gmail.com> +Date: Wed, 18 Nov 2015 18:50:17 +0100 +Subject: [PATCH] bugfix for issue 466 with xonsh.bat installed in non-windows + +--- + setup.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/setup.py b/setup.py +index 0fb407b..7c10805 100755 +--- a/setup.py ++++ b/setup.py +@@ -77,7 +77,7 @@ def main(): + platforms='Cross Platform', + classifiers=['Programming Language :: Python :: 3'], + packages=['xonsh'], +- scripts=['scripts/xonsh', 'scripts/xonsh.bat'], ++ scripts=['scripts/xonsh'] if 'win' not in sys.platform else ['scripts/xonsh.bat'], + cmdclass={'install': xinstall, 'sdist': xsdist}, + ) + if HAVE_SETUPTOOLS: |