Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
cme fix dpkg-control
· 50d4e3ab
Andreas Tille
authored
Feb 14, 2018
50d4e3ab
debhelper 11
· c406b68e
Andreas Tille
authored
Feb 14, 2018
c406b68e
Upload to unstable
· bb77e1bf
Andreas Tille
authored
Feb 14, 2018
bb77e1bf
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
bb77e1bf
dialign-t (1.0.2-10) unstable; urgency=medium
[ Helmut Grohne ]
* Fix FTCBFS: fix build/host confusion. (Closes: #890371)
[ Andreas Tille ]
* cme fix dpkg-control
* debhelper 11
-- Andreas Tille <tille@debian.org> Wed, 14 Feb 2018 09:27:32 +0100
dialign-t (1.0.2-9) unstable; urgency=medium
* Team upload.
...
...
debian/compat
View file @
bb77e1bf
9
11
debian/control
View file @
bb77e1bf
...
...
@@ -4,8 +4,8 @@ Uploaders: Charles Plessy <plessy@debian.org>,
Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>=
9
)
Standards-Version:
3.9.8
Build-Depends: debhelper (>=
11~
)
Standards-Version:
4.1.3
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/dialign-t.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/dialign-t.git
Homepage: http://dialign-tx.gobics.de/
...
...
debian/rules
View file @
bb77e1bf
...
...
@@ -2,7 +2,10 @@
SRCDIR=$(CURDIR)/source
export SSEFLAGS := $(shell if [ `dpkg-architecture -qDEB_BUILD_ARCH` = amd64 -o `dpkg-architecture -qDEB_BUILD_ARCH` = i386 ] ; then echo "-mfpmath=sse -msse -mmmx" ; fi)
include /usr/share/dpkg/architecture.mk
ifneq ($(filter $(DEB_HOST_ARCH_CPU),amd64 i386),)
export SSEFLAGS = -mfpmath=sse -msse -mmmx
endif
export DEB_BUILD_MAINT_OPTIONS += hardening=+all
%:
...
...