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 "".
The branch, master has been updated via 2dd964e170d71078cfe03d4c9e00c6f592b4326b (commit) via 449c693b2678bc29577b64fb76003bb10b86db6e (commit) via b13eba4e9b9cb814f115627addf763322fe22a76 (commit) via ea9f2aa440a653a77cbcadc2862c5af298205272 (commit) from 5e840b83992bba2f64750bb3a4599478d6ea9260 (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 ----------------------------------------------------------------- commit 2dd964e170d71078cfe03d4c9e00c6f592b4326b Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Thu Nov 2 16:49:34 2017 +0300
build: run doxygen-doc during make distcheck
Check that distribution has all files necessary to build doxygen documentation.
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/Makefile.am b/Makefile.am index e6edb7e1..dab8ca8c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,3 +21,9 @@ SUBDIRS = \ @DX_RULES@
EXTRA_DIST = bootstrap CHANGELOG config/README + +distcheck-hook: + if test -n "$(DX_CLEANFILES)" ; \ + then \ + $(MAKE) doxygen-doc ; \ + fi
commit 449c693b2678bc29577b64fb76003bb10b86db6e Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Thu Nov 2 21:36:18 2017 +0300
travis: move Doxygen compilation to before_install
Move Doxygen compilation to before_install to make it available to make distcheck.
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/.travis.yml b/.travis.yml index 7632ae3f..6bd03a0c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -138,6 +138,19 @@ before_install: - export PKG_CONFIG_PATH="$HOME/cunit-install/$CROSS_ARCH/lib/pkgconfig:${PKG_CONFIG_PATH}" - find $HOME/cunit-install
+ # Updated Doxygen + - | + if [ ! -f "$HOME/doxygen-install/bin/doxygen" ]; then + wget https://github.com/doxygen/doxygen/archive/Release_1_8_13.tar.gz + tar xpvf Release_1_8_13.tar.gz + pushd doxygen-Release_1_8_13 + cmake -DCMAKE_INSTALL_PREFIX=$HOME/doxygen-install . + make install + popd + fi + - export PATH=$HOME/doxygen-install/bin:$PATH + + install: - echo 1000 | sudo tee /proc/sys/vm/nr_hugepages - sudo mkdir -p /mnt/huge @@ -249,17 +262,6 @@ jobs: install: - true script: - - | - if [ ! -f "$HOME/doxygen-install/bin/doxygen" ]; then - wget https://github.com/doxygen/doxygen/archive/Release_1_8_13.tar.gz - tar xpvf Release_1_8_13.tar.gz - pushd doxygen-Release_1_8_13 - cmake -DCMAKE_INSTALL_PREFIX=$HOME/doxygen-install . - make install - popd - fi - - - export PATH=$HOME/doxygen-install/bin:$PATH - ./bootstrap - ./configure # doxygen does not trap on warnings, check for them here.
commit b13eba4e9b9cb814f115627addf763322fe22a76 Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Thu Nov 2 16:36:37 2017 +0300
doc: include Doxyfile into EXTRA_DIST
As it is done with the rest of Doxygen docs, include Doxyfile into EXTRA_DIST of corresponding doc directory. Drop $(DX_CONFIG) from top-level Makefile.am, as it becomes unused now.
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/Makefile.am b/Makefile.am index c28b0229..e6edb7e1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,4 +20,4 @@ SUBDIRS = \
@DX_RULES@
-EXTRA_DIST = bootstrap $(DX_CONFIG) CHANGELOG config/README +EXTRA_DIST = bootstrap CHANGELOG config/README diff --git a/doc/application-api-guide/Makefile.am b/doc/application-api-guide/Makefile.am index 6109e825..7d900397 100644 --- a/doc/application-api-guide/Makefile.am +++ b/doc/application-api-guide/Makefile.am @@ -1,4 +1,5 @@ EXTRA_DIST = \ + Doxyfile \ api_guide_lines.dox \ examples.dox \ odp.dox \
commit ea9f2aa440a653a77cbcadc2862c5af298205272 Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Thu Nov 2 16:48:50 2017 +0300
configure: don't try building driver api guide
driver api guide was removed from master branch. Drop it from configure.ac.
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/configure.ac b/configure.ac index 4bce0534..069fdb4c 100644 --- a/configure.ac +++ b/configure.ac @@ -219,9 +219,7 @@ DX_INIT_DOXYGEN($PACKAGE_NAME, ${srcdir}/doc/helper-guide/Doxyfile, ${builddir}/doc/helper-guide/output, ${srcdir}/doc/platform-api-guide/Doxyfile, - ${builddir}/doc/platform-api-guide/output, - ${srcdir}/doc/driver-api-guide/Doxyfile, - ${builddir}/doc/driver-api-guide/output) + ${builddir}/doc/platform-api-guide/output)
########################################################################## # Enable/disable ODP_DEBUG
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 24 +++++++++++++----------- Makefile.am | 8 +++++++- configure.ac | 4 +--- doc/application-api-guide/Makefile.am | 1 + 4 files changed, 22 insertions(+), 15 deletions(-)
hooks/post-receive