Skip to content
Commits on Source (7)
bamf (0.5.3-3) unstable; urgency=medium
* debian/copyright:
+ Use secure URI for copyright format.
* debian/control:
+ Update Vcs-*: fields. Package has been migrated to salsa.debian.org.
+ Switch Maintainer: from Alioth's pkg-mate-team to debian-mate at
lists.debian.org.
+ Bump Standards-Version: to 4.1.5. No changes needed.
* debian/{control,compat}: Bump DH compat level to version 11.
* debian/patches:
+ Add 1001_autotools-pkg-config-macro-not-cross-compilation-safe.patch.
Fix FTCBFS (lintian tag autotools-pkg-config-macro-not-cross-compilation-
safe).
-- Mike Gabriel <sunweaver@debian.org> Sat, 21 Jul 2018 23:08:26 +0200
bamf (0.5.3-2) unstable; urgency=medium
* debian/control:
......
Source: bamf
Section: libs
Priority: optional
Maintainer: Debian+Ubuntu MATE Packaging Team <debian-mate@lists.debian.org>
Uploaders: Mike Gabriel <sunweaver@debian.org>,
Didier Roche <didrocks@ubuntu.com>,
Build-Depends: dbus (>= 1.8),
debhelper (>= 9),
debhelper (>= 11),
gobject-introspection (>= 0.6.5-3),
gtk-doc-tools,
libgirepository1.0-dev,
......@@ -16,7 +17,7 @@ Build-Depends: dbus (>= 1.8),
python-libxslt1,
valac,
xvfb,
Standards-Version: 3.9.8
Standards-Version: 4.1.5
Homepage: https://launchpad.net/bamf
Vcs-Browser: https://salsa.debian.org/debian-mate-team/bamf
Vcs-Git: https://salsa.debian.org/debian-mate-team/bamf.git
......
Description: Fix FTCBFS: lintian tag autotools-pkg-config-macro-not-cross-compilation-safe.
Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
--- a/configure.ac
+++ b/configure.ac
@@ -23,8 +23,8 @@
AC_ISC_POSIX
AC_SUBST(ACLOCAL_AMFLAFS, "$ACLOCAL_FLAGS -I m4")
-AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
-if test "x$PKG_CONFIG" = "xno"; then AC_MSG_ERROR([You need to install pkg-config]); fi
+PKG_PROG_PKG_CONFIG
+if test "x$PKG_CONFIG" = "x"; then AC_MSG_ERROR([You need to install pkg-config]); fi
# Checks for programs.
AC_PROG_CC
......@@ -2,3 +2,4 @@
2001_build-using-mate-common.patch
2002_use-dbus-run-session-instead-of-dbus-launch.patch
2003_allow-gtk3-deprecated-symbols.patch
1001_autotools-pkg-config-macro-not-cross-compilation-safe.patch