Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
· 80a08dfc
Michael R. Crusoe
authored
Jan 06, 2019
80a08dfc
Remove trailing whitespace in debian/changelog
· f6247751
Michael R. Crusoe
authored
Jan 06, 2019
f6247751
Remove trailing whitespace in debian/copyright
· fc7e0a14
Michael R. Crusoe
authored
Jan 06, 2019
fc7e0a14
Silence lintian spelling false positives.
· ff0b1424
Michael R. Crusoe
authored
Jan 06, 2019
ff0b1424
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
ff0b1424
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 ]
...
...
debian/control
View file @
ff0b1424
...
...
@@ -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
...
...
debian/copyright
View file @
ff0b1424
debian/plastimatch.lintian-overrides
View file @
ff0b1424
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
debian/rules
View file @
ff0b1424
...
...
@@ -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
...
...