Misc edits to disable jobs hung on unresponsive nodes.

jjb/voltha-test/voltha-certification.yaml
jjb/voltha-test/voltha-certification/voltha-2.11.yaml
jjb/voltha-test/voltha-certification/voltha-2.12.yaml
jjb/voltha-test/voltha-certification/voltha-2.8.yaml
-----------------------------------------------------
  o Disable more menlo-certification jobs since cluster is offline.
  o Refactor altered 1600g jobs into configs named for branch/release.

requirements.txt
----------------
  o Added versioned urllib3 module so sphinx + python v3.6 will not barf.

Makefile
makefiles/lint/include.mk
makefiles/lint/doc8/include.mk
------------------------------
  o More updates from repo:onf-make, added library target lint-doc8.

makefiles/jjb/targets.mk
------------------------
  o build target - added a dependency on activate script so virtualenv
    will install on demand.  Worked by coincidence earlier, make lint
    also depends on venv.

jjb/voltha-e2e.yaml
-------------------
  o Purge lingering comments from joba-into-versioned-configs refactoring.
  o No fallout reported when configs were changed earlier.

Change-Id: I2571feb883a2049feb0781fc2464b875e3af325e
diff --git a/makefiles/jjb/targets.mk b/makefiles/jjb/targets.mk
index 730d229..889eceb 100644
--- a/makefiles/jjb/targets.mk
+++ b/makefiles/jjb/targets.mk
@@ -35,12 +35,13 @@
 .PHONY: jjb-gen
 
 jjb-gen-log := $(jjb-gen-dir)/jjb-gen.log
-jjb-gen:
+jjb-gen: $(venv-activate-script)
 	$(call banner-enter,Target $@)
 	@mkdir -p $(jjb-gen-dir)
 	@touch "$(jjb-gen-dir)/.sentinel"
-	( $(activate) \
-	   && jenkins-jobs test $(PWD)/jjb -o $(jjb-gen-dir) 3>&1 2>&1 \
+	( \
+	  $(activate) \
+	     && jenkins-jobs test $(PWD)/jjb -o $(jjb-gen-dir) 3>&1 2>&1 \
 	) | tee "$(jjb-gen-log)"
 
   ifdef LOGS