Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Use filter instead of findstring to prevent partial matches.
· 55c4e3e4
Bas Couwenberg
authored
Jul 17, 2018
55c4e3e4
Update lintian override for embedded-javascript-library.
· bf8596d6
Bas Couwenberg
authored
Jul 17, 2018
bf8596d6
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
bf8596d6
proj (5.1.0-2) UNRELEASED; urgency=medium
* Bump Standards-Version to 4.1.5, no changes.
* Use filter instead of findstring to prevent partial matches.
* Update lintian override for embedded-javascript-library.
-- Bas Couwenberg <sebastic@debian.org> Thu, 05 Jul 2018 10:56:56 +0200
...
...
debian/libproj-java.lintian-overrides
View file @
bf8596d6
# jQuery from libjs-jquery is not compatible
embedded-javascript-library * please use libjs-jquery
embedded-javascript-library * please use libjs-jquery-ui
debian/rules
View file @
bf8596d6
...
...
@@ -55,7 +55,7 @@ override_dh_auto_build:
override_dh_auto_test:
# Ignore test failures on problematic architectures only
ifneq (,$(fi
ndstring
$(DEB_BUILD_ARCH),
"
i386 hurd-i386 hppa ia64 kfreebsd-i386 powerpc
"
))
ifneq (,$(fi
lter
$(DEB_BUILD_ARCH),i386 hurd-i386 hppa ia64 kfreebsd-i386 powerpc))
dh_auto_test || echo "Ignoring test failures"
else
dh_auto_test
...
...