sc (7.16-4.3)
[PTS] [DDPO]
ERROR:
- Git: git://git.debian.org/collab-maint/sc.git
-
- Branch: master
- Path: debian/changelog
- Repo size:
- Browser: http://git.debian.org/?p=collab-maint/sc.git;a=summary
- Last scan: 2024-11-20 14:00:02+00
- Error: fatal: repository 'https://anonscm.debian.org/git/collab-maint/sc.git/' not found
- Next scan: 2024-11-21 10:12:00+00
- Debian changelog in Git:
sc (7.16-4) unstable; urgency=low
* debian/patches/function_definitions
+ use correct function signature instead of relying on implied
one which used wrong number of parameters.
This was found by Michael Tautschnig. (closes: #748220)
+ move most of the function declarations from sc.c into sc.h
+ is_cleared flag is now a macro in standard curses.h - to prevent
redefinitions, prepend sc's flag usage with flag_
* debian/patches/Upstream-changes-from-old-versions
+ contains all patches to upstream changes as one-big-diff. All of the
changes should be self-explanatory (variable initialization, always return
value from a function, etc.)
+ adding this quilt patch fixes FTBFS bug introduced by "new" behaviour
to dpkg-source (closes: #643269). Yes, it's been a while since this
package was updated.
* debian/patches/use_varadic_macro
+ use variadic macros instead allowing us to silence "unused
calculation results" warnings
* debian/patches/call_function_not_take_its_address
+ call a function and use its return value instead of taking its
address which is always true.
-- Adam Majer <adamm@zombino.com> Sun, 18 May 2014 14:28:50 -0500
- This branch is 7 commits ahead of tag v7.16-3
- Git log:
commit 8d75b0ec9f761b5d5245290a79a20b409c442d52
Author: Adam Majer <adamm@zombino.com>
Date: Sun May 18 15:04:14 2014 -0500
Call function instead of take its address.
screen.c:877:24: warning: the address of âhas_colorsâ will always
evaluate as âtrueâ [-Waddress]
if (!*pp && color && has_colors && cr && cr->r_color != 1) {
commit 4cd6dba48913005558b3160eba20d3394c69c80b
Author: Adam Majer <adamm@zombino.com>
Date: Sun May 18 15:00:23 2014 -0500
Use variadic macro instead of relying on cobbled-together functions after macro has run
commit 28e0027c38ea7fd187c201cb02e04ae1c22cda5b
Author: Adam Majer <adamm@zombino.com>
Date: Sun May 18 14:41:43 2014 -0500
update chagelog
commit 331e89bc4e3ece9b9e77a123aeac267d3c2a595b
Author: Adam Majer <adamm@zombino.com>
Date: Sun May 18 14:22:58 2014 -0500
Git patches => quilt....
commit e7ba0952b79135d927384df7416f39d6927d8e3d
Author: Adam Majer <adamm@zombino.com>
Date: Sun May 18 14:05:30 2014 -0500
Fix some coding issues
1. repaint() had a different signature than used in sc.c. Move
definitions of functions to sc.h and remove them from .c files.
2. is_cleared is now defined macro in curses headers - prefix define
to avoid name conflicts
3. add stdlib.h header to help.c to avoid implicit function
definition
commit c7b082bec55a637a2fbccb3201a2af0a630d0e40
Author: Adam Majer <adamm@zombino.com>
Date: Sun May 18 14:05:13 2014 -0500
Add debug symbols to executable - stripped anyway
commit efd5c827564d32453d50ffafc297d166fb0d7b54
Author: Adam Majer <adamm@zombino.com>
Date: Mon Sep 26 23:27:23 2011 -0500
Add quilt patches to "tracked" files
This is not ideal considering it is completely redundant to using Git,
but I guess sometimes ideal is not what you get ;)