Package: velvet / 1.2.10+dfsg1-9
Metadata
Package | Version | Patches format |
---|---|---|
velvet | 1.2.10+dfsg1-9 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
include_debians_zlib.patch | (download) |
src/binarySequences.c |
2 1 + 1 - 0 ! |
use the zlib distributed by debian, not the one in third-party/zlib-1.2.3/. |
shuffleSequences_fasta.patch | (download) |
contrib/shuffleSequences_fasta/shuffleSequences_fasta.py |
1 1 + 0 - 0 ! |
scripts need to specify interpreter in the first line |
fix perl path.patch | (download) |
contrib/select_paired/select_paired.pl |
2 1 + 1 - 0 ! |
s?/usr/local/perl?/usr/perl? |
0001 isCreateBinary should not be inline.patch | (download) |
src/readSet.c |
2 1 + 1 - 0 ! |
[patch 1/4] iscreatebinary() should not be inline This function is used from several .c files; with inline here, compilation with clang was broken. |
hardening.patch | (download) |
Makefile |
22 11 + 11 - 0 ! |
propagate hardening options |
spelling.patch | (download) |
src/correctedGraph.c |
2 1 + 1 - 0 ! |
fix spelling |
2to3.patch | (download) |
contrib/AssemblyAssembler1.3/AssemblyAssembler1.3.py |
92 46 + 46 - 0 ! |
use 2to3 to port to python3 Bug-Debian: https://bugs.debian.org/945743 |
gcc 14.patch | (download) |
src/readSet.c |
9 6 + 3 - 0 ! |
fix incompatible pointer types. Incompatible pointer types are now fatal with gcc 14 by default. This change fixes the following issues: . src/readSet.c:641:21: error: assignment to gzFile {aka struct gzFile_s *} from incompatible pointer type AutoFile * [-Wincompatible-pointer-types] 641 | file.gzFile = file.autoFile = NULL; | ^ src/readSet.c: In function readFastXPair: src/readSet.c:680:22: error: assignment to gzFile {aka struct gzFile_s *} from incompatible pointer type AutoFile * [-Wincompatible-pointer-types] 680 | file1.gzFile = file1.autoFile = NULL; | ^ src/readSet.c:681:22: error: assignment to gzFile {aka struct gzFile_s *} from incompatible pointer type AutoFile * [-Wincompatible-pointer-types] 681 | file2.gzFile = file2.autoFile = NULL; | ^ |