Andreas Tille pushed to branch master at Debian Med / librostlab-blast
Commits: 706fabe3 by Andreas Tille at 2022-01-23T08:14:35+01:00 eliminate the need to force an old C++ standard version - - - - - 3 changed files: - debian/changelog - + debian/patches/modernize_c++.patch - debian/patches/series Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,11 @@ +librostlab-blast (1.0.1-12) UNRELEASED; urgency=medium + + [ Aaron M. Ucko] + * eliminate the need to force an old C++ standard version + Closes: #851472, #832138 + + -- Andreas Tille <[email protected]> Sun, 23 Jan 2022 08:13:21 +0100 + librostlab-blast (1.0.1-11) unstable; urgency=medium * debhelper-compat 13 (routine-update) ===================================== debian/patches/modernize_c++.patch ===================================== @@ -0,0 +1,38 @@ +Author: Aaron M. Ucko <[email protected]> +Last-Update: Date: Sun, 23 Jan 2022 00:10:05 -0500 +Bug-Debian: https://bugs.debian.org/851472 + https://bugs.debian.org/832138 +Origin: https://lists.debian.org/debian-med/2022/01/msg00071.html +Description: eliminates the need to force an old C++ standard version + +--- a/lib/rostlab/blast-parser-driver.h ++++ b/lib/rostlab/blast-parser-driver.h +@@ -37,7 +37,7 @@ + YY_DECL; + #define YY_DECL_FRIEND \ + rostlab::blast::parser::token_type \ +- ::yylex( rostlab::blast::parser::semantic_type* __yylval, \ ++ (::yylex)( rostlab::blast::parser::semantic_type* __yylval, \ + rostlab::blast::parser::location_type* __yylloc, \ + rostlab::blast::parser_driver& __drv, \ + void* yyscanner ) +@@ -88,7 +88,7 @@ class parser_driver { + /// Parse one result from the input stream. + /** Each call returns a reference to the filled result structure. The structure may be empty in case there are no more results in the stream. */ + const result_type& +- parse( bool __trace_parsing = false, bool __trace_scanning = false ) throw (rostlab::blast::parser_error); ++ parse( bool __trace_parsing = false, bool __trace_scanning = false ); + + /// Get tracing of scanning. + bool trace_scanning(); +--- a/lib/blast-parser-driver.cpp ++++ b/lib/blast-parser-driver.cpp +@@ -19,7 +19,7 @@ + #include "rostlab/blast-parser-driver.h" + + const rostlab::blast::parser_driver::result_type& +- rostlab::blast::parser_driver::parse( bool __trace_parsing, bool __trace_scanning ) throw (rostlab::blast::parser_error) ++ rostlab::blast::parser_driver::parse( bool __trace_parsing, bool __trace_scanning ) + { + rostlab::blast::parser parser(*this, _scanner); + parser.set_debug_level( __trace_parsing ); ===================================== debian/patches/series ===================================== @@ -1 +1,2 @@ reproducible.patch +modernize_c++.patch View it on GitLab: https://salsa.debian.org/med-team/librostlab-blast/-/commit/706fabe362a9a645b749d3841d7fbbed7876b001 -- View it on GitLab: https://salsa.debian.org/med-team/librostlab-blast/-/commit/706fabe362a9a645b749d3841d7fbbed7876b001 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
