~ubuntu-branches/debian/sid/subversion/sid

« back to all changes in this revision

Viewing changes to tools/buildbot/slaves/svn-x64-centos/list-svn-deps.sh

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2015-08-07 21:32:47 UTC
  • mfrom: (0.2.15) (4.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20150807213247-ozyewtmgsr6tkewl
Tags: 1.9.0-1
* Upload to unstable
* New upstream release.
  + Security fixes
    - CVE-2015-3184: Mixed anonymous/authenticated path-based authz with
      httpd 2.4
    - CVE-2015-3187: svn_repos_trace_node_locations() reveals paths hidden
      by authz
* Add >= 2.7 requirement for python-all-dev Build-Depends, needed to run
  tests.
* Remove Build-Conflicts against ruby-test-unit.  (Closes: #791844)
* Remove patches/apache_module_dependency in favor of expressing the
  dependencies in authz_svn.load/dav_svn.load.
* Build-Depend on apache2-dev (>= 2.4.16) to ensure ap_some_authn_required()
  is available when building mod_authz_svn and Depend on apache2-bin (>=
  2.4.16) for runtime support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# List the versions of all of SVN's dependencies.
 
3
# The output is suitable for putting in the buildbot slave's 'info/host'
 
4
# file, after a general description of the slave machine.
 
5
 
 
6
echo "=== SVN dependencies ==="
 
7
DEPS="gcc apr apr-util apr-devel apr-util-devel httpd httpd-devel \
 
8
   neon neon-devel python python-devel ruby ruby-devel"
 
9
#yum -C list $DEPS
 
10
rpm -q ${DEPS} | sort | uniq
 
11
# The SQLite version is found by the name of the amalgamation directory,
 
12
# which is found in the home dir.  It is also explicitly referenced in the
 
13
# './configure' line in 'svnbuild.sh'.
 
14
(cd && echo sqlite-3.*[0-9].*[0-9])
 
15
echo
 
16
 
 
17
echo "=== SVN test dependencies ==="
 
18
#rpm -q pysqlite | sort | uniq
 
19
echo
 
20
 
 
21
JAVA_VER=`java -fullversion 2>&1`
 
22
PY_VER=`python -V 2>&1`
 
23
RUBY_VER=`ruby --version`
 
24
PERL_VER=`perl -v | grep This`
 
25
echo "=== interpreters / bindings ==="
 
26
echo "Java:   $JAVA_VER"
 
27
echo "Python: $PY_VER"
 
28
echo "Ruby:   $RUBY_VER"
 
29
echo "Perl:   $PERL_VER"
 
30
echo
 
31
 
 
32
echo "=== BuildBot version ==="
 
33
buildbot --version
 
34
echo