This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, master has been updated
       via  625190bb6b757d84dc0e088da354471ddecb5880 (commit)
      from  56dc6380faea79ed637ef60dd1216b6073543331 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=625190bb6b757d84dc0e088da354471ddecb5880

commit 625190bb6b757d84dc0e088da354471ddecb5880
Author: Franck Villaume <[email protected]>
Date:   Sat Apr 27 13:57:36 2019 +0200

    limit bzr integration autoinstall to centos & debian8. loggerhead is 
currently missing on debian9

diff --git a/autoinstall/install-src.sh b/autoinstall/install-src.sh
index 11d7f3a..9eca782 100755
--- a/autoinstall/install-src.sh
+++ b/autoinstall/install-src.sh
@@ -92,12 +92,14 @@ fi
        cd $(dirname $0)/../src/
        make
        make install-base install-shell install-scm \
-               install-plugin-scmcvs install-plugin-scmsvn 
install-plugin-scmgit install-plugin-scmbzr install-plugin-scmhg \
+               install-plugin-scmcvs install-plugin-scmsvn 
install-plugin-scmgit install-plugin-scmhg \
                install-plugin-blocks install-plugin-moinmoin \
                install-plugin-taskboard install-plugin-message \
                install-plugin-repositoryapi \
                install-plugin-mediawiki
-
+       if [ -e /etc/centos-release ] || grep -q ^8 /etc/debian_version; then
+               make install-plugin-scmbzr
+       fi
        if [ -e /etc/centos-release -o -e /etc/debian-release ]; then
                make install-plugin-phptextcaptcha
        fi
diff --git a/autoinstall/install.sh b/autoinstall/install.sh
index 71e0b06..1d8fe4e 100755
--- a/autoinstall/install.sh
+++ b/autoinstall/install.sh
@@ -41,12 +41,15 @@ if [ -e /etc/debian_version ]; then
 
                # Additional components for testsuite
                $APT install fusionforge-shell fusionforge-scm fusionforge-ftp \
-               fusionforge-plugin-scmcvs fusionforge-plugin-scmsvn 
fusionforge-plugin-scmgit fusionforge-plugin-scmbzr fusionforge-plugin-scmhg \
+               fusionforge-plugin-scmcvs fusionforge-plugin-scmsvn 
fusionforge-plugin-scmgit fusionforge-plugin-scmhg \
                fusionforge-plugin-mediawiki \
                fusionforge-plugin-moinmoin \
                fusionforge-plugin-blocks fusionforge-plugin-taskboard \
                fusionforge-plugin-message fusionforge-plugin-repositoryapi
                $APT install dpkg-dev
+               if grep -q ^8 /etc/debian_version; then
+                       $APT install fusionforge-plugin-scmbzr
+               fi
                if ! dpkg-vendor --is Ubuntu; then
                        apt-get install locales-all  # 
https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/1394929
                fi
diff --git a/tests/func/50_PluginsScmBzr/bzrTest.php 
b/tests/func/50_PluginsScmBzr/bzrTest.php
index c154cc2..4a083dc 100644
--- a/tests/func/50_PluginsScmBzr/bzrTest.php
+++ b/tests/func/50_PluginsScmBzr/bzrTest.php
@@ -35,6 +35,7 @@ class ScmBzrTest extends FForge_SeleniumTestCase
        function testScmBzr()
        {
                $this->skip_on_src_installs();
+               $this->skip_on_deb_installs();
 
                $this->loadAndCacheFixture();
 

-----------------------------------------------------------------------

Summary of changes:
 autoinstall/install-src.sh              | 6 ++++--
 autoinstall/install.sh                  | 5 ++++-
 tests/func/50_PluginsScmBzr/bzrTest.php | 1 +
 3 files changed, 9 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to