File do-not-run-pip-or-requirements-script.patch of Package python-msm
Index: msm-0.5.17/msm/skill_entry.py
===================================================================
--- msm-0.5.17.orig/msm/skill_entry.py
+++ msm-0.5.17/msm/skill_entry.py
@@ -154,6 +154,8 @@ class SkillEntry(object):
requirements_file = join(self.path, "requirements.txt")
if not exists(requirements_file):
return False
+ LOG.info("Please check manually the requirements file at " + requirements_file)
+ return False
# Use constraints to limit the installed versions
if constraints and not exists(constraints):
@@ -184,6 +186,8 @@ class SkillEntry(object):
setup_script = join(self.path, "requirements.sh")
if not exists(setup_script):
return False
+ LOG.info("Please check manually the setup script at " + setup_script)
+ return False
with work_dir(self.path):
rc = subprocess.call(["bash", setup_script])