Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Update d/rules, remove EXTRA_CONFIGURE_ARGS, not needed for recent versions
· f160a9b9
Alexandre Mestiashvili
authored
Sep 19, 2018
f160a9b9
Limit architectures to any-amd64 and any-i386
· 58072410
Alexandre Mestiashvili
authored
Sep 19, 2018
58072410
Update changelog
· 61df26f3
Alexandre Mestiashvili
authored
Sep 19, 2018
Gbp-Dch: Ignore
61df26f3
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
61df26f3
gmap (2018-07-04-4)
UNRELEASED
; urgency=medium
gmap (2018-07-04-4)
unstable
; urgency=medium
* Team upload.
* Limit to Architecture: amd64
[ Alexandre Mestiashvili ]
* Update d/rules, remove EXTRA_CONFIGURE_ARGS, not needed for recent versions
* Limit architectures to any-amd64 and any-i386
Closes: #908386
-- A
ndreas Tille <tille
@debian.org> Wed, 19 Sep 2018 09:
4
5:
44
+0
2
00
-- A
lexandre Mestiashvili <mestia
@debian.org> Wed, 19 Sep 2018 09:
0
5:
16
+0
0
00
gmap (2018-07-04-3) unstable; urgency=medium
...
...
debian/control
View file @
61df26f3
...
...
@@ -4,6 +4,7 @@ Uploaders: Shaun Jackman <sjackman@debian.org>,
Andreas Tille <tille@debian.org>,
Alexandre Mestiashvili <mestia@debian.org>
Section: non-free/science
XS-Autobuild: yes
Priority: optional
Build-Depends: debhelper (>= 11~),
dh-exec,
...
...
@@ -16,7 +17,7 @@ Vcs-Git: https://salsa.debian.org/med-team/gmap.git
Homepage: http://research-pub.gene.com/gmap
Package: gmap
Architecture: a
md64
Architecture: a
ny-amd64 any-i386
Depends: ${misc:Depends},
${perl:Depends},
${shlibs:Depends}
...
...
debian/rules
View file @
61df26f3
...
...
@@ -7,10 +7,6 @@ utildir := $(CURDIR)/util
bindir := $(CURDIR)/src
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
EXTRA_CONFIGURE_ARGS =
ifeq ($(DEB_HOST_ARCH), i386)
EXTRA_CONFIGURE_ARGS += --enable-sse4.1=no --disable-simd
endif
HELP2MAN = /usr/bin/help2man --no-info --version-string=${DEB_VERSION}
...
...
@@ -19,7 +15,7 @@ HELP2MAN = /usr/bin/help2man --no-info --version-string=${DEB_VERSION}
override_dh_auto_configure:
dh_auto_configure -- --with-gmapdb=/var/cache/gmap \
--bindir=/usr/lib/gmap
$(EXTRA_CONFIGURE_ARGS)
--bindir=/usr/lib/gmap
override_dh_auto_install:
mkdir -p $(mandir)
...
...