From d3744a8c51a842ad833c3f69af5359122504b12f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Sun, 1 Nov 2015 23:59:27 +0000 Subject: [PATCH] new author url --- AUTHORS | 2 +- ChangeLog | 25 +++++++++++++++++++++++++ ax_init_standard_project.m4 | 7 +++++-- bootstrap.sh | 7 ++++--- debian/control.in | 4 ++-- resolve-debbuilddeps.sh | 3 +++ 6 files changed, 40 insertions(+), 8 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 3feb91e..38573c1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,28 @@ +2015-09-29 07:55 marc + + * ax_check_qt.m4, ax_init_standard_project.m4, bootstrap.sh, + build-resource-file.sh, configure.ac, resolve-debbuilddeps.sh, + resolve-rpmbuilddeps.sh, uninstall-64-and-32-bit-linux.sh: by + default, disable qt debug output + +2015-09-04 09:27 marc + + * bootstrap.sh, debian/control.in: updated build + +2015-09-04 09:06 marc + + * debian/control.in: updated build + +2015-09-04 08:57 marc + + * ChangeLog, ax_init_standard_project.m4, bootstrap.sh, + resolve-debbuilddeps.sh: updated build + +2015-08-28 12:58 marc + + * debian/proxyface-dev.install: translationsdir added to debian + installation + 2015-08-27 13:03 marc * ChangeLog, src/proxyface.pc.in: translationsdir fixed diff --git a/ax_init_standard_project.m4 b/ax_init_standard_project.m4 index 9f68063..5baecf4 100644 --- a/ax_init_standard_project.m4 +++ b/ax_init_standard_project.m4 @@ -207,13 +207,16 @@ AC_DEFUN([AX_INIT_STANDARD_PROJECT], [ AX_ADD_MAKEFILE_TARGET_DEP([maintainer-clean-am], [maintainer-clean-standard-project-targets], [makefile.in]) test -f makefile.in && cat >> makefile.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}')