Package: arduino-ctags / 5.8-arduino11-3
Metadata
Package | Version | Patches format |
---|---|---|
arduino-ctags | 5.8-arduino11-3 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
fixes/Remove unneeded quote for apostrophe.patch | (download) |
ctags.1 |
4 2 + 2 - 0 ! |
remove unneeded quote for apostrophe The man page is using an apostrophe for closing a quote, this isn't needed in this case. |
fixes/Fix misspelled word langauge.patch | (download) |
options.c |
2 1 + 1 - 0 ! |
fix misspelled word langauge |
debian hacks/Using arduino as an prefix for files to install.patch | (download) |
Makefile.in |
4 2 + 2 - 0 ! |
using arduino as an prefix for files to install To not conflict with the ctags binary from the exuberant-ctags package use a prefix for the Arduino modified version. |
exuberant debian hacks/Use memmove on overlapping strings.patch | (download) |
routines.c |
4 2 + 2 - 0 ! |
use memmove on overlapping strings strcpy is not guaranteed to work on overlapping strings, and this can lead to broken paths appearing in tag files. Use memmove instead. |
exuberant debian hacks/python Disable import parsing by default.patch | (download) |
python.c |
2 1 + 1 - 0 ! |
python: disable import parsing by default Parsing imports mixes up imports with actual class definitions. If you need to re-enable this, use the --python-kinds=+i option. Bug: http://sourceforge.net/tracker/?func=detail&aid=2829739&group_id=6556&atid=106556 Bug-Ubuntu: https://bugs.launchpad.net/bugs/618979 |
exuberant debian hacks/Fix infinite loop parsing vim commands.patch | (download) |
vim.c |
4 3 + 1 - 0 ! |
fix infinite loop parsing vim commands This happens if a non-alphanumeric character other than whitespace or '-' is found before the first alphanumeric character after 'command'. Bug: http://sourceforge.net/tracker/index.php?func=detail&aid=3214129&group_id=6556&atid=106556 Bug-Ubuntu: https://bugs.launchpad.net/bugs/736367 |
exuberant debian hacks/Add Go support.patch | (download) |
go.c |
670 670 + 0 - 0 ! |
add go support Bug-Debian: http://bugs.debian.org/634166 |
exuberant debian hacks/Changed the javascript parser to set the tag s scope rath.patch | (download) |
jscript.c |
54 51 + 3 - 0 ! |
changed the javascript parser to set the tag's scope rather than including it in the tag name. Patch from Colomban. |
exuberant debian hacks/Don t build the compilation date and time into the binary.patch | (download) |
options.c |
1 0 + 1 - 0 ! |
don't build the compilation date and time into the binary This made the build unreproducible. |
exuberant debian hacks/Fix build with gcc fno common.patch | (download) |
ocaml.c |
16 8 + 8 - 0 ! |
fix build with gcc -fno-common Bug-Debian: https://bugs.debian.org/957185 |
exuberant debian hacks/Adjust __unused__ macro after glibc changes 2.33.patch | (download) |
eiffel.c |
2 1 + 1 - 0 ! |
adjust __unused__ macro after glibc changes 2.33++ The build is breaking with glibc >= 2.33 due changes in cdefs.h. This patch is mostly just a hack and no proper solution, it's taken from the Gentoo people. |
exuberant debian hacks/Adjust another __unused__ macro after dpkg changes.patch | (download) |
routines.c |
2 1 + 1 - 0 ! |
adjust another __unused__ macro after dpkg changes MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit dpkg has modified the default compiler flags while the time_t64 transition, now one more code part is hit by a compliler error. > gcc -I. -I../.. -DHAVE_CONFIG_H -g -O2 -Werror=implicit-function-declaration -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -c ../../sh.c > ../../routines.c:529:48: error: expected ;, , or ) before __unused__ > 529 | static void canonicalizePath (char *const path __unused__) > | ^~~~~~~~~~ > ../../routines.c: In function isSameFile: > ../../routines.c:553:17: error: implicit declaration of function canonicalizePath [-Werror=implicit-function-declaration] > 553 | canonicalizePath (n1); > | ^~~~~~~~~~~~~~~~ > cc1: some warnings being treated as errors > make[2]: *** [Makefile:220: routines.o] Error 1 |