Skip to content
Commits on Source (6)
probabel (0.5.0+dfsg-2) unstable; urgency=medium
* Work around a problem with the NEON code in Eigen 3 for arm64 architecture
(Thanks for the patch to Adrian Bunk <bunk@debian.org>)
CLoses: #919189
* debhelper 12
* Standards-Version: 4.3.0
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
-- Andreas Tille <tille@debian.org> Sun, 13 Jan 2019 17:10:41 +0100
probabel (0.5.0+dfsg-1) unstable; urgency=medium
* Fix watch file
......
......@@ -4,14 +4,13 @@ Uploaders: Andreas Tille <tille@debian.org>,
L.C. Karssen <lennart@karssen.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 11~),
Build-Depends: debhelper (>= 12~),
libeigen3-dev,
texlive-latex-base,
texlive-latex-extra,
texlive-latex-recommended,
texlive-fonts-recommended,
libeigen3-dev
Standards-Version: 4.2.1
texlive-fonts-recommended
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/probabel
Vcs-Git: https://salsa.debian.org/med-team/probabel.git
Homepage: http://www.genabel.org
......
......@@ -6,6 +6,10 @@ BUILDARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
ifeq ($(DEB_HOST_ARCH),arm64)
export DEB_CXXFLAGS_MAINT_APPEND = -march=armv8-a+nosimd
endif
include /usr/share/dpkg/default.mk
# Location of the example files, will be converted to the
......@@ -32,7 +36,7 @@ override_dh_installchangelogs:
dh_installchangelogs doc/ChangeLog
override_dh_install-arch:
dh_install -a --fail-missing
dh_install -a
rm debian/$(DEB_SOURCE)/usr/bin/probabel.pl
mv debian/$(DEB_SOURCE)/etc/probabel_config.cfg.example debian/$(DEB_SOURCE)/etc/probabel_config.cfg
......@@ -44,5 +48,7 @@ ifeq ($(BUILDARCH),$(filter $(BUILDARCH), mips s390x hppa powerpc ppc64 sparc64)
# the final result. See
# https://github.com/GenABEL-Project/ProbABEL/issues/45
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_test || true
endif
endif