From 49e4570f9c835d89f866210740603cb0b9d5e2fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Mon, 2 Nov 2015 00:01:34 +0000 Subject: [PATCH] new author url --- AUTHORS | 2 +- ChangeLog | 40 ++++++++++++++++++++++++++++++++++++++++ bootstrap.sh | 2 +- resolve-debbuilddeps.sh | 3 +++ 4 files changed, 45 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index bd79912..86ccdef 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1 +1 @@ -Marc Wäckerlin (http://marc.waeckerlin.org) +Marc Wäckerlin (https://marc.wäckerlin.ch) diff --git a/ChangeLog b/ChangeLog index b74188c..37de006 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,43 @@ +2015-10-11 19:45 marc + + * examples/test-commands.wt: added test for multidimensional for + loop + +2015-10-11 15:28 marc + + * bootstrap.sh, examples/test-commands.wt, src/commands.hxx: added + test for multidimensional for loop + +2015-10-10 18:05 marc + + * bootstrap.sh, doc/doxyfile.in: no search index when embedded in + redmine + +2015-10-10 15:27 marc + + * examples/makefile.am: added xvfb-run to run on headless systems + +2015-10-10 15:00 marc + + * examples/SwissSign_Silver_CA_-_G2.pem, examples/ca.pem, + examples/client.key, examples/client.pem, examples/makefile.am, + examples/test-commands.wt, src/commands.hxx: new for loop + successfull tested + +2015-10-10 14:09 marc + + * ax_init_standard_project.m4, configure.ac, examples, + examples/SwissSign_Silver_CA_-_G2.pem, examples/makefile.am, + examples/test-commands.wt, makefile.am, src/commands.hxx, + src/webrunner.cxx: includes example and test; new command echo + +2015-10-10 10:48 marc + + * ChangeLog, ax_check_qt.m4, ax_init_standard_project.m4, + bootstrap.sh, build-resource-file.sh, mac-create-app-bundle.sh, + resolve-debbuilddeps.sh, resolve-rpmbuilddeps.sh, + src/commands.hxx: new feature: «for»-loop; updated buildsystem + 2015-10-09 15:01 marc * src/commands.hxx, src/networkaccessmanager.hxx: unfinished: new diff --git a/bootstrap.sh b/bootstrap.sh index c66bc97..d3e8653 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -698,7 +698,7 @@ if testtag AX_USE_DEBIAN_PACKAGING; then -- @AUTHOR@ @BUILD_DATE@ EOF - BUILD_DEPENDS="debhelper, subversion, pkg-config, autotools-dev, lsb-release $(if testtag AX_USE_DOXYGEN; then echo -n ", doxygen, graphviz, mscgen"; fi; if testtag AX_USE_CPPUNIT; then echo -n ", libcppunit-dev"; fi; if testtag AX_CXX_QT || testtag AX_CHECK_QT AX_REQUIRE_QT; then echo -n ", qt5-default | qt4-default | qt5-qmake | qt4-qmake, qtbase5-dev | libqt4-dev, qtbase5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools"; fi)" + BUILD_DEPENDS="debhelper, subversion, pkg-config, automake, libtool, autotools-dev, lsb-release $(if testtag AX_USE_DOXYGEN; then echo -n ", doxygen, graphviz, mscgen"; fi; if testtag AX_USE_CPPUNIT; then echo -n ", libcppunit-dev"; fi; if testtag AX_CXX_QT || testtag AX_CHECK_QT AX_REQUIRE_QT; then echo -n ", qt5-default | qt4-default | qt5-qmake | qt4-qmake, qtbase5-dev | libqt4-dev, qtbase5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools"; fi)" to debian/control.in < debian/control if test -n "${SCHROOTNAME}"; then + schroot -c "${SCHROOTNAME}" -u root -d / -- apt-get install -y dpkg-dev DEPS=$(schroot -c "${SCHROOTNAME}" -- dpkg-checkbuilddeps 2>&1 || true) else + sudo apt-get install -y dpkg-dev + sudo apt-get update DEPS=$(dpkg-checkbuilddeps 2>&1 || true) fi DEPS=$(echo "$DEPS" | sed -n '/Unmet build dependencies/ { s,.*Unmet build dependencies: ,,g; s, ([^)]*),,g; s, *| *,|,g; p}')