new author url

master
Marc Wäckerlin 9 years ago
parent 6ed8e7887d
commit 49e4570f9c
  1. 2
      AUTHORS
  2. 40
      ChangeLog
  3. 2
      bootstrap.sh
  4. 3
      resolve-debbuilddeps.sh

@ -1 +1 @@
Marc Wäckerlin (http://marc.waeckerlin.org) <marc@waeckerlin.org>
Marc Wäckerlin (https://marc.wäckerlin.ch) <marc@waeckerlin.org>

@ -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

@ -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 <<EOF
Source: @PACKAGE_NAME@
Priority: extra

@ -15,8 +15,11 @@ SCHROOTNAME="$1"
sed 's,@[^@]*@, dummytext,g' 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}')

Loading…
Cancel
Save