Package: ghmm / 0.9~rc3-11
Metadata
Package | Version | Patches format |
---|---|---|
ghmm | 0.9~rc3-11 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
fix_imp_func_issue.patch | (download) |
ghmm/xmlwriter.c |
1 1 + 0 - 0 ! |
fix implicit declaration of function issue |
buildError.patch | (download) |
ghmm/xmlwriter.c |
2 1 + 1 - 0 ! |
--- |
pythonpaths.patch | (download) |
HMMEd/Makefile.am |
2 1 + 1 - 0 ! |
--- |
fix_libxml2_config.patch | (download) |
configure.in |
9 0 + 9 - 0 ! |
skip non-working check for libxml2 version which is granted by Build-Depends anyway |
2to3.patch | (download) |
HMMEd/EditingContext.py |
26 13 + 13 - 0 ! |
use 2to3 to port to python3 Bug-Debian: https://bugs.debian.org/936609 |
python3_build_system.patch | (download) |
configure.in |
2 1 + 1 - 0 ! |
make sure python3 is used Bug-Debian: https://bugs.debian.org/936609 |
lapacke.patch | (download) |
configure.in |
65 13 + 52 - 0 ! |
use lapacke instead of atlas Bug-Debian: https://bugs.debian.org/1056673 |
python3_syntax.patch | (download) |
HMMEd/HMMEditingContext.py |
4 2 + 2 - 0 ! |
fix: syntaxwarning: "is" with a literal. did you mean "=="? |
fix test mcmc.patch | (download) |
ghmmwrapper/sclass_change.c |
14 7 + 7 - 0 ! |
--- |
python3.12.patch | (download) |
ghmm/smodel.c |
4 2 + 2 - 0 ! |
--- |
gcc 14.patch | (download) |
tests/mcmc.c |
2 1 + 1 - 0 ! |
fix pointer indirection level in tests/mcmc.c. Attempts to build ghmm with gcc 14 end up with the following error: . mcmc.c: In function main: mcmc.c:148:15: error: initialization of int * from incompatible pointer type int ** [-Wincompatible-pointer-types] 148 | int * Q = ghmm_dmodel_cfbgibbs(mo, my_output, | ^~~~~~~~~~~~~~~~~~~~ mcmc.c:150:108: error: passing argument 4 of ghmm_dmodel_viterbi_logp makes pointer from integer without a cast [-Wint-conversion] 150 | printf("viterbi prob mcmc%f \n", ghmm_dmodel_viterbi_logp(mo, my_output->seq[0], my_output->seq_len[0], Q[0])); | ~^~~ | | | int . This looks to be caused by a missing '*' in Q declaration. |
python3.12 syntax.patch | (download) |
ghmmwrapper/ghmm.py |
26 13 + 13 - 0 ! |
fix python3.12 string syntax Bug-Debian: https://bugs.debian.org/1085608 |
python3.13 build fix.patch | (download) |
ghmmwrapper/ghmmwrapper.i |
2 1 + 1 - 0 ! |
replace pyeval_callobject with pyobject_callobject deprecated in python 3.9 and removed in python 3.13 |