[postgis-tickets] r14300 - minor updates to setup learned by resetting up new debbie
Regina Obe
lr at pcorp.us
Thu Oct 22 00:52:35 PDT 2015
Author: robe
Date: 2015-10-22 00:52:35 -0700 (Thu, 22 Oct 2015)
New Revision: 14300
Modified:
buildbots/debian/jenkins_setup.txt
Log:
minor updates to setup learned by resetting up new debbie
Modified: buildbots/debian/jenkins_setup.txt
===================================================================
--- buildbots/debian/jenkins_setup.txt 2015-10-22 06:11:25 UTC (rev 14299)
+++ buildbots/debian/jenkins_setup.txt 2015-10-22 07:52:35 UTC (rev 14300)
@@ -2,6 +2,7 @@
On 64-bit Debian 6
su root
apt-get update
+apt-get upgrade #install latest patches
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | apt-key add -
Add to: /etc/apt/sources.list
@@ -11,36 +12,63 @@
escape
:w
+
## latest version of jenkins requires JDK 7 and one that came with debian is JDK6
## java -version (if not JDK 7 or higher)
sudo su -
echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list
echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list
+
+#to get newer proj 4.9.1 needed to do this
+echo "deb http://ftp.us.debian.org/debian sid main" | tee -a /etc/apt/sources.list
+apt-get update
+apt-get install libproj9 libproj-dev proj-bin proj-data
+apt-get install g++
+
+apt-get update
+apt-get install jenkins
+
+##installing java if the above fails
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886
apt-get update
apt-get install oracle-java7-installer
+## end installing java
+#for building sfcgal
+echo "deb-src http://debian.mirrors.ovh.net/debian/ sid main contrib non-free" | tee -a /etc/apt/sources.list
+sudo apt-get update
+apt-get build-dep sfcgal-bin
+apt-get -b source sfcgal-bin
+apt-get install libcgal-dev libboost-all-dev libmpfr-dev libgmp-dev libopenscenegraph-dev libopenthreads-dev libpq-dev libqt4-dev libqt4-opengl-dev pkg-kde-tools
+
+
+
#make it the default
sudo apt-get install oracle-java7-set-default
+apt-get install git
-apt-get update
-apt-get install jenkins
+
+
--to get autoconf etc --
apt-get install autoconf libtool build-essential
#CUnit
+apt-get install libreadline6 libreadline6-dev zlib1g-dev
apt-get install libcunit1-dev libcunit1-doc libcunit1
apt-get install docbook
-apt-get install libxml2-dev proj xsltproc docbook-xsl docbook-mathml gettext
-apt-get install libjson0-dev
+apt-get install libxml2-dev n xsltproc docbook-xsl docbook-mathml gettext
+apt-cache search json #see latest version
+apt-get install libjson-c-dev
apt-get install dblatex
apt-get install imagemagick
-apt-get install bison libreadline5-dev
+apt-get install libxml2 libxml2-dev
+apt-get install bison
apt-get install libiconv-hook1
apt-get install subversion
#(for future translation work)
apt-get install poxml
apt-get install curl
+apt-get install python-dev
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | sudo python
curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
sudo python get-pip.py
@@ -48,9 +76,9 @@
#for doxygen build and graph generation
apt-get install doxygen graphviz
-apt-get install apache2 (for displaying docbook etc.)
+apt-get install apache2 #(for displaying docbook etc.)
apt-get install flex (needed for 1.3)
-apt-get install dbtoepub (not currently used but will be to publish documentation in epub format)
+apt-get install dbtoepub (publish documentation in epub format)
#for building sfcgal, pointcloud
apt-get install cmake
@@ -77,9 +105,18 @@
Managed Script Plugin
-- These are the additional ones I installed --
+Blame Upstream Committers
+conditional-buildstep
+Config File Provider Plugin
+GIT client plugin
+GIT plugin
Hudson SCP publisher plugin (needed so can create a job that uploads to PostGIS website. It makes the process the same on windows as on Linux)
Simple Theme Plugin (for changing background and style sheet)
Parameterized Trigger Plugin (for triggering subprojects and passing along main parameters)
+Build with Parameters
Doxygen PlugIn
IRC Plugin and Instant Messenger Plugin (so can broadcast to PostGIS IRC)
-Git
+Managed Scripts
+SCM API Plugin
+SVN Publisher plugin
+Text Finder Run Condition Plugin
\ No newline at end of file
More information about the postgis-tickets
mailing list