Control: tags 778146 + pending Dear maintainer,
I've prepared an NMU for tinyscheme (versioned as 1.41-1.1) and uploaded it to DELAYED/5. Please feel free to tell me if I should delay it longer. Regards. -- .''`. Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06 : :' : Debian GNU/Linux user, admin, and developer - https://www.debian.org/ `. `' Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe `- NP: Vic Chesnutt: Doubting Woman
diff -Nru tinyscheme-1.41/debian/changelog tinyscheme-1.41/debian/changelog --- tinyscheme-1.41/debian/changelog 2013-04-22 08:41:32.000000000 +0200 +++ tinyscheme-1.41/debian/changelog 2015-07-19 16:15:42.000000000 +0200 @@ -1,3 +1,12 @@ +tinyscheme (1.41-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "ftbfs with GCC-5": add patch from Nicholas Luedtke: + Removed inline from function signatures to work with test cases. + (Closes: #778146) + + -- gregor herrmann <[email protected]> Sun, 19 Jul 2015 16:15:11 +0200 + tinyscheme (1.41-1) unstable; urgency=low * New upsteram version. diff -Nru tinyscheme-1.41/debian/patches/gcc5.patch tinyscheme-1.41/debian/patches/gcc5.patch --- tinyscheme-1.41/debian/patches/gcc5.patch 1970-01-01 01:00:00.000000000 +0100 +++ tinyscheme-1.41/debian/patches/gcc5.patch 2015-07-19 16:17:08.000000000 +0200 @@ -0,0 +1,29 @@ +Description: Fixxed GCC5 build issue + Removed inline from problematic functions. +Bug-Debian: https://bugs.debian.org/778146 +Author: Nicholas Luedtke <Nicholas [email protected]> +Reviewed-by: gregor herrmann <[email protected]> +Last-Update: 2015-07-19 + +--- a/scheme.c ++++ b/scheme.c +@@ -200,8 +200,8 @@ + INTERFACE long charvalue(pointer p) { return ivalue_unchecked(p); } + + INTERFACE INLINE int is_port(pointer p) { return (type(p)==T_PORT); } +-INTERFACE INLINE int is_inport(pointer p) { return is_port(p) && p->_object._port->kind & port_input; } +-INTERFACE INLINE int is_outport(pointer p) { return is_port(p) && p->_object._port->kind & port_output; } ++INTERFACE int is_inport(pointer p) { return is_port(p) && p->_object._port->kind & port_input; } ++INTERFACE int is_outport(pointer p) { return is_port(p) && p->_object._port->kind & port_output; } + + INTERFACE INLINE int is_pair(pointer p) { return (type(p)==T_PAIR); } + #define car(p) ((p)->_object._cons._car) +@@ -226,7 +226,7 @@ + static const char *procname(pointer x); + + INTERFACE INLINE int is_closure(pointer p) { return (type(p)==T_CLOSURE); } +-INTERFACE INLINE int is_macro(pointer p) { return (type(p)==T_MACRO); } ++INTERFACE int is_macro(pointer p) { return (type(p)==T_MACRO); } + INTERFACE INLINE pointer closure_code(pointer p) { return car(p); } + INTERFACE INLINE pointer closure_env(pointer p) { return cdr(p); } + diff -Nru tinyscheme-1.41/debian/patches/series tinyscheme-1.41/debian/patches/series --- tinyscheme-1.41/debian/patches/series 2013-04-22 08:45:13.000000000 +0200 +++ tinyscheme-1.41/debian/patches/series 2015-07-19 16:12:49.000000000 +0200 @@ -1 +1,2 @@ debian-changes +gcc5.patch
signature.asc
Description: Digital Signature

