Skip to content
Commits on Source (4)
plastimatch (1.7.3+dfsg.1-2) UNRELEASED; urgency=medium
* Team upload.
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
* Remove trailing whitespace in debian/changelog
* Remove trailing whitespace in debian/copyright
* Silence lintian spelling false positives.
-- Michael R. Crusoe <michael.crusoe@gmail.com> Sun, 06 Jan 2019 02:10:04 -0800
plastimatch (1.7.3+dfsg.1-1) unstable; urgency=medium
[ Gregory C. Sharp ]
......
......@@ -19,7 +19,7 @@ Build-Depends: debhelper (>= 11~),
libtiff-dev,
uuid-dev,
zlib1g-dev
Standards-Version: 4.1.5
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/plastimatch
Vcs-Git: https://salsa.debian.org/med-team/plastimatch.git
Homepage: http://plastimatch.org
......
plastimatch: package-name-doesnt-match-sonames
plastimatch: non-dev-pkg-with-shlib-symlink
# false positives, these spelling errors aren't from us
plastimatch: spelling-error-in-binary usr/bin/plastimatch abov above
plastimatch: spelling-error-in-binary usr/bin/plastimatch nam name
plastimatch: spelling-error-in-binary usr/lib/libplmbase.so.1.7 Verticies Vertices
plastimatch: spelling-error-in-binary usr/lib/libplmbase.so.1.7 transfrom transform
......@@ -33,12 +33,14 @@ override_dh_auto_configure:
dh_auto_configure -- $(DEB_CMAKE_EXTRA_FLAGS)
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
#Make the test suit fatal on supported arches
ifneq (,$(filter $(DEB_HOST_ARCH),amd64 i386 kfreebsd-amd64 kfreebsd-amd64))
dh_auto_test
else
dh_auto_test || true
endif
endif
override_dh_auto_install:
dh_auto_install
......