Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
Do not run build time tests parallel
· de976733
Andreas Tille
authored
Feb 07, 2019
de976733
Fix build for 32bit architectures
· 3390b21c
Andreas Tille
authored
Feb 07, 2019
3390b21c
debhelper 12
· 698bbde8
Andreas Tille
authored
Feb 07, 2019
698bbde8
Standards-Version: 4.3.0
· 60120d69
Andreas Tille
authored
Feb 07, 2019
60120d69
Upload to unstable
· 92b349b2
Andreas Tille
authored
Feb 07, 2019
92b349b2
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
92b349b2
mash (2.1+dfsg-1)
UNRELEASED
; urgency=medium
mash (2.1+dfsg-1)
unstable
; urgency=medium
* Team upload.
* Remove code copy of MurmurHash and use libmurmurhash-dev instead
Closes: #918566
[ Steve Langasek ]
* debian/rules: set -DARCH_32 on our 32-bit architectures, as apparently
...
...
@@ -10,7 +8,14 @@ mash (2.1+dfsg-1) UNRELEASED; urgency=medium
whenever running on a system that disallows unaligned access.
Closes: #919778
-- Andreas Tille <tille@debian.org> Tue, 05 Feb 2019 15:58:23 +0100
[ Andreas Tille ]
* Remove code copy of MurmurHash and use libmurmurhash-dev instead
Closes: #918566
* Do not run build time tests parallel
* debhelper 12
* Standards-Version: 4.3.0
-- Andreas Tille <tille@debian.org> Thu, 07 Feb 2019 13:36:30 +0100
mash (2.1-2) unstable; urgency=medium
...
...
debian/compat
View file @
92b349b2
1
1
1
2
debian/control
View file @
92b349b2
...
...
@@ -3,7 +3,7 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Sascha Steinbiss <satta@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 1
1
),
Build-Depends: debhelper (>= 1
2~
),
capnproto (>= 0.6.1),
libcapnp-dev (>= 0.6.1),
libgsl-dev,
...
...
@@ -12,7 +12,7 @@ Build-Depends: debhelper (>= 11),
libjs-mathjax,
asciidoctor,
libmurmurhash-dev
Standards-Version: 4.
2.1
Standards-Version: 4.
3.0
Vcs-Browser: https://salsa.debian.org/med-team/mash
Vcs-Git: https://salsa.debian.org/med-team/mash.git
Homepage: https://mash.readthedocs.io
...
...
debian/rules
View file @
92b349b2
...
...
@@ -3,14 +3,15 @@
# DH_VERBOSE := 1
export LC_ALL=C.UTF-8
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
ifneq (,filter(armhf i386,$(DEB_HOST_ARCH)))
include /usr/share/dpkg/architecture.mk
ifeq ($(DEB_HOST_ARCH_BITS),32)
DEB_CPPFLAGS_MAINT_APPEND = -DARCH_32
endif
export DEB_CPPFLAGS_MAINT_APPEND
%:
dh $@
--with
autoreconf,
sphinxdoc
dh $@ --with sphinxdoc
override_dh_auto_clean:
dh_auto_clean
...
...
@@ -28,3 +29,8 @@ override_dh_installman:
asciidoctor -a docdate='' -b manpage $(CURDIR)/debian/man_src/*.adoc
cp $(CURDIR)/debian/man_src/*.? $(CURDIR)/debian/man
dh_installman --
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_test --no-parallel
endif