summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Dolbec <dolsen@gentoo.org>2018-01-16 09:26:15 -0800
committerBrian Dolbec <dolsen@gentoo.org>2018-01-16 09:41:38 -0800
commitaaa5d9e1f21c27b6953cca71daa5d15c3d604901 (patch)
tree8b152f237e3626e50b7fed3df071dd0e9ad5cd4a /dev-util/buildbot-pkg/files
parentdev-util/buildbot: Version bump, update 9999 ebuild (diff)
downloadgentoo-aaa5d9e1f21c27b6953cca71daa5d15c3d604901.tar.gz
gentoo-aaa5d9e1f21c27b6953cca71daa5d15c3d604901.tar.bz2
gentoo-aaa5d9e1f21c27b6953cca71daa5d15c3d604901.zip
dev-util/buildbot-pkg: Version bump
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'dev-util/buildbot-pkg/files')
-rw-r--r--dev-util/buildbot-pkg/files/buildbot-pkg-0.9.15_p1-Removedevelopmentvirtualenvironmenthack.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-util/buildbot-pkg/files/buildbot-pkg-0.9.15_p1-Removedevelopmentvirtualenvironmenthack.patch b/dev-util/buildbot-pkg/files/buildbot-pkg-0.9.15_p1-Removedevelopmentvirtualenvironmenthack.patch
new file mode 100644
index 000000000000..ac17539c4e0d
--- /dev/null
+++ b/dev-util/buildbot-pkg/files/buildbot-pkg-0.9.15_p1-Removedevelopmentvirtualenvironmenthack.patch
@@ -0,0 +1,36 @@
+From 6d9f81ec15b7b18f8791981a0d65dc4f266022ca Mon Sep 17 00:00:00 2001
+From: Brian Dolbec <dolsen@gentoo.org>
+Date: Mon, 15 Jan 2018 16:27:54 -0800
+Subject: [PATCH] pkg/buildbot_pkg.py: Remove development virtualenvironment
+ hack
+
+This hack is not needed/nor works reliably in non-virtualenv installs.
+---
+ pkg/buildbot_pkg.py | 11 -----------
+ 1 file changed, 11 deletions(-)
+
+diff --git a/buildbot_pkg.py b/buildbot_pkg.py
+index 89847b040..7788e12d6 100644
+--- a/buildbot_pkg.py
++++ b/buildbot_pkg.py
+@@ -33,17 +33,6 @@ import setuptools.command.build_py
+ import setuptools.command.egg_info
+ from setuptools import setup
+
+-old_listdir = os.listdir
+-
+-
+-def listdir(path):
+- # patch listdir to avoid looking into node_modules
+- l = old_listdir(path)
+- if "node_modules" in l:
+- l.remove("node_modules")
+- return l
+-os.listdir = listdir
+-
+
+ def check_output(cmd):
+ """Version of check_output which does not throw error"""
+--
+2.15.1
+