summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2016-10-29 13:05:48 +0100
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2016-10-29 13:05:48 +0100
commit27daacc99d5072dbaeb45aed7f8315713e74f391 (patch)
tree5708d2d51977af4aa7e6274f46ecdb620498b910 /docs
parent778ba9e84ebd3bd89c8c43ae32d0cb98be5d61f5 (diff)
downloadybd-27daacc99d5072dbaeb45aed7f8315713e74f391.tar.gz
Remove Dependencies.md - see install_dependencies.sh
Diffstat (limited to 'docs')
-rw-r--r--docs/Dependencies.md35
1 files changed, 0 insertions, 35 deletions
diff --git a/docs/Dependencies.md b/docs/Dependencies.md
deleted file mode 100644
index 134b91c..0000000
--- a/docs/Dependencies.md
+++ /dev/null
@@ -1,35 +0,0 @@
-## Dependencies
-
-ybd requires git, gcc, make, autotools, python, tar, wget. Note that the
-Baserock definitions also require gawk.
-
-So for a Debian-based system:
-
- apt-get update; apt-get install build-essential gawk git m4
-
-… and a Fedora-based system:
-
- yum install make automake gcc gcc-c++ kernel-devel git gawk m4
-
-ybd also depends on [pyfilesystem](http://pyfilesystem.org),
-[pyyaml](http://pyyaml.org/wiki/PyYAML),
-[sandboxlib](https://github.com/CodethinkLabs/sandboxlib),
-[requests](https://github.com/kennethreitz/requests),
-and optionally [jsonschema](https://github.com/Julian/jsonschema).
-
-To serve artifacts using kbas, it additionally requires
-[bottle](https://github.com/bottlepy/bottle) and optionally
-[cherrypy](https://github.com/cherrypy/cherrypy.git).
-
-To use the Riemann functionality, it additionally requires
-[riemann-client](https://github.com/borntyping/python-riemann-client).
-
-If you trust the Python Package Index (PyPI) and pip is available on your
-machine, you can install these dependencies with:
-
- pip install fs pyyaml sandboxlib requests jsonschema bottle cherrypy riemann-client
-
-If you need to install pip itself:
-
- wget https://bootstrap.pypa.io/get-pip.py
- python get-pip.py