Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (7)
Fix FTCBFS: Let dh_auto_build pass cross tools to make
· d521904c
Andreas Tille
authored
Jun 11, 2018
d521904c
Standards-Version: 4.1.4, Point Vcs-fields to Salsa
· bcb1c2c9
Andreas Tille
authored
Jun 11, 2018
bcb1c2c9
debhelper 11
· c1e48d97
Andreas Tille
authored
Jun 11, 2018
c1e48d97
Silence lintian about not mentioned patch
· 7496c846
Andreas Tille
authored
Jun 11, 2018
7496c846
doc-base: debhelper 11 moves docs to /usr/share/doc/mummer - adapt path
· d574b8d4
Andreas Tille
authored
Jun 11, 2018
d574b8d4
Spelling
· f896a3af
Andreas Tille
authored
Jun 11, 2018
f896a3af
Upload to unstable
· e435a7f2
Andreas Tille
authored
Jun 11, 2018
e435a7f2
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
e435a7f2
mummer (3.23+dfsg-4) unstable; urgency=medium
[ Helmut Grohne ]
* Fix FTCBFS: Let dh_auto_build pass cross tools to make. (Closes: #901261)
[ Andreas Tille ]
* Standards-Version: 4.1.4
* Point Vcs-fields to Salsa
* debhelper 11
* doc-base: debhelper 11 moves docs to /usr/share/doc/mummer - adapt path
-- Andreas Tille <tille@debian.org> Mon, 11 Jun 2018 08:38:49 +0200
mummer (3.23+dfsg-3) unstable; urgency=low
* Team upload
...
...
debian/compat
View file @
e435a7f2
1
0
1
1
debian/control
View file @
e435a7f2
...
...
@@ -5,13 +5,13 @@ Uploaders: Steffen Moeller <moeller@debian.org>,
Charles Plessy <plessy@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 1
0
),
Build-Depends: debhelper (>= 1
1~
),
texlive-latex-base,
texlive-latex-recommended,
texlive-fonts-recommended
Standards-Version:
3.9.8
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med
/mummer
.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/mummer.git
Standards-Version:
4.1.4
Vcs-Browser: https://
salsa
.debian.org/
med-team
/mummer
Vcs-Git: https://
salsa
.debian.org/
med-team
/mummer.git
Homepage: http://mummer.sourceforge.net/
Package: mummer
...
...
debian/mummer-doc.README.Debian
View file @
e435a7f2
...
...
@@ -2,7 +2,7 @@ mummer for Debian
-----------------
The original tarball contained four papers about MUMmer in PDF
format. Because we have neither an explicit
e
license nor the
format. Because we have neither an explicit license nor the
source of these PDFs they were removed from the tarball. All
these papers are published at
...
...
debian/mummer-doc.doc-base
View file @
e435a7f2
...
...
@@ -14,7 +14,7 @@ Abstract: MUMmer is a system for rapidly aligning entire genomes, whether in
Section: Science/Biology
Format: pdf
Files: /usr/share/doc/mummer
-doc/*.pdf /usr/share/doc/mummer-doc
/*.pdf
Files: /usr/share/doc/mummer/*.pdf
Format: HTML
Index: /usr/share/doc/mummer-doc/html/index.html
...
...
debian/patches/series
View file @
e435a7f2
...
...
@@ -6,4 +6,5 @@ hardening.patch
spelling.patch
addition_from_mugsy.patch
0009-improve-performance-of-delta2maf.patch
# most probably broken see bug #843621 addition_from_report_duplicates.patch
# most probably broken see bug #843621
# addition_from_report_duplicates.patch
debian/rules
View file @
e435a7f2
...
...
@@ -19,7 +19,7 @@ FINAL_SCRIPT_DIR = /usr/share/perl5/
override_dh_auto_build:
[ -d $(BIN_DIR) ] || mkdir -p $(BIN_DIR)
[ -d $(AUX_BIN_DIR) ] || mkdir -p $(AUX_BIN_DIR)
$(MAKE)
BIN_DIR=$(BIN_DIR) AUX_BIN_DIR=$(AUX_BIN_DIR) \
dh_auto_build --
BIN_DIR=$(BIN_DIR) AUX_BIN_DIR=$(AUX_BIN_DIR) \
FINAL_BIN_DIR=$(FINAL_BIN_DIR) FINAL_AUX_BIN_DIR=$(FINAL_AUX_BIN_DIR) \
FINAL_SCRIPT_DIR=$(FINAL_SCRIPT_DIR) \
CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)"
...
...