Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (6)
Drop -msse3 from compiler options
· 17b1b106
Andreas Tille
authored
Jun 30, 2018
17b1b106
debhelper 11
· 9c5441ce
Andreas Tille
authored
Jun 30, 2018
9c5441ce
Standards-Version: 4.1.4
· cfb6594a
Andreas Tille
authored
Jun 30, 2018
cfb6594a
DEP3
· 2be3504d
Andreas Tille
authored
Jun 30, 2018
2be3504d
hardening=+all
· 0cd3fe05
Andreas Tille
authored
Jun 30, 2018
0cd3fe05
Upload to unstable
· e56a4867
Andreas Tille
authored
Jun 30, 2018
e56a4867
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
e56a4867
soapaligner (2.20-2) unstable; urgency=medium
* Team upload.
* Drop -msse3 from compiler options
Closes: #902129
* debhelper 11
* Standards-Version: 4.1.4
* DEP3
* hardening=+all
-- Andreas Tille <tille@debian.org> Sat, 30 Jun 2018 07:22:04 +0200
soapaligner (2.20-1) unstable; urgency=low
[ Steffen Moeller ]
...
...
debian/compat
View file @
e56a4867
1
0
1
1
debian/control
View file @
e56a4867
...
...
@@ -3,8 +3,8 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Steffen Moeller <moeller@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 1
0
)
Standards-Version: 4.1.
3
Build-Depends: debhelper (>= 1
1~
)
Standards-Version: 4.1.
4
Vcs-Browser: https://salsa.debian.org/med-team/soapaligner
Vcs-Git: https://salsa.debian.org/med-team/soapaligner.git
Homepage: http://soap.genomics.org.cn/soapaligner.html
...
...
debian/patches/UsageDoublette.patch
View file @
e56a4867
Author: Steffen Moeller
Last-Update: 2018-05-04 18:33:03 +0200
Description: Deal with doublette of Usage function by making it static
Index: soapaligner/soap.c
===================================================================
--- soapaligner.orig/soap.c
...
...
debian/patches/compiler_options.patch
View file @
e56a4867
Author: Steffen Moeller
Last-Update: 2018-05-04 18:33:03 +0200
Description: Adapt Makefile to accept Debian preset compiler options
Index: soapaligner/Makefile
===================================================================
--- soapaligner.orig/Makefile
...
...
@@ -24,7 +28,7 @@ Index: soapaligner/Makefile
+CC ?= gcc
+DEBUG_FLAGS ?= -g3 -Wall -O2
+PROFILE_FLAGS ?= -fprofile-arcs -ftest-coverage -pg
+RELEASE_FLAGS ?=
-msse3
-O3 -funroll-loops -maccumulate-outgoing-args -fomit-frame-pointer
+RELEASE_FLAGS ?= -O3 -funroll-loops -maccumulate-outgoing-args -fomit-frame-pointer
+STATIC_FLAGS ?= -static
+DFLAGS ?= -DMAKE_TIME=\""`date`"\"
+LDFLAGS ?=
...
...
debian/patches/linkerror.patch
View file @
e56a4867
Author: Steffen Moeller
Last-Update: 2018-05-04 18:33:03 +0200
Description: Fix build
Index: soapaligner/Makefile
===================================================================
--- soapaligner.orig/Makefile
...
...
debian/rules
View file @
e56a4867
...
...
@@ -9,5 +9,7 @@ export CFLAGS += -flto
export
CXXFLAGS
+=
-flto
export
LDFLAGS
+=
-Wl
,-flto
export
DEB_BUILD_MAINT_OPTIONS
=
hardening
=
+all
%
:
dh
$@