Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
debhelper 11
· 17eb8ac6
Andreas Tille
authored
May 08, 2018
17eb8ac6
Point Vcs fields to salsa.debian.org
· 1ccfbc98
Andreas Tille
authored
May 08, 2018
1ccfbc98
Standards-Version: 4.1.4
· 41480584
Andreas Tille
authored
May 08, 2018
41480584
Fix spelling
· a6e4ad8e
Andreas Tille
authored
May 08, 2018
a6e4ad8e
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
a6e4ad8e
...
...
@@ -2,6 +2,10 @@ snap (2013-11-29-9) UNRELEASED; urgency=medium
* Enlarge too short target string for sprintf
Closes: #897864
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.1.4
* Fix spelling
-- Andreas Tille <tille@debian.org> Mon, 07 May 2018 23:38:54 +0200
...
...
debian/compat
View file @
a6e4ad8e
1
0
1
1
debian/control
View file @
a6e4ad8e
...
...
@@ -4,11 +4,11 @@ Uploaders: Steffen Moeller <moeller@debian.org>,
Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 1
0
),
Build-Depends: debhelper (>= 1
1~
),
help2man
Standards-Version: 4.1.
2
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med
/snap
.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/snap.git
Standards-Version: 4.1.
4
Vcs-Browser: https://
salsa
.debian.org/
med-team
/snap
Vcs-Git: https://
salsa
.debian.org/
med-team
/snap.git
Homepage: https://www.psc.edu/index.php/user-resources/software/snap
Package: snap
...
...
debian/patches/replace_itoa_with_broken_indentation.patch
View file @
a6e4ad8e
Author: Andreas Tille <tille@debian.org>
Last-Update: Wed, 24 Aug 2016 10:43:36 +0200
Description: itoa implementation had broken identation - use
Description: itoa implementation had broken i
n
dentation - use
sprintf instead
--- a/Zoe/zoeTools.c
...
...
debian/patches/series
View file @
a6e4ad8e
...
...
@@ -5,3 +5,4 @@ use-CC.patch
replace_itoa_with_broken_indentation.patch
fix_missing_braces_in_if_statements.patch
gcc-8.patch
spelling.patch
debian/patches/spelling.patch
0 → 100644
View file @
a6e4ad8e
Description: Fix spelling
Author: Andreas Tille <tille@debian.org>
Last-Update: Mon, 07 May 2018 23:38:54 +0200
--- a/Zoe/zoePhasePref.c
+++ b/Zoe/zoePhasePref.c
@@ -80,7 +80,7 @@
score_t zoeScorePhase (zoePhasePref pp,
case Int0: return pp->score[Ei_I0];
case Int1: case Int1T: return pp->score[Ei_I1];
case Int2: case Int2TA: case Int2TG: return pp->score[Ei_I2];
- default: zoeExit("zoeScorePhase does not allow to %d", to);
+ default: zoeExit("zoeScorePhase does not allow one to %d", to);
}
case Exon:
switch (inc5) {
@@ -111,19 +111,19 @@
score_t zoeScorePhase (zoePhasePref pp,
switch (to) {
case Exon: return pp->score[I0_E0];
case Eterm: return pp->score[I0_Et];
- default: zoeExit("zoeScorePhase does not allow to %d", to);
+ default: zoeExit("zoeScorePhase does not allow one to %d", to);
}
case Int1: case Int1T:
switch (to) {
case Exon: return pp->score[I1_E1];
case Eterm: return pp->score[I1_Et];
- default: zoeExit("zoeScorePhase does not allow to %d", to);
+ default: zoeExit("zoeScorePhase does not allow one to %d", to);
}
case Int2: case Int2TA: case Int2TG:
switch (to) {
case Exon: return pp->score[I2_E2];
case Eterm: return pp->score[I2_Et];
- default: zoeExit("zoeScorePhase does not allow to %d", to);
+ default: zoeExit("zoeScorePhase does not allow one to %d", to);
}
default: return 0;
}