Étienne Mollier pushed to branch master at Debian Med / libmaus2
Commits: affa7f2a by Étienne Mollier at 2020-12-02T20:19:45+01:00 rewrap watch file - - - - - 934a437e by Étienne Mollier at 2020-12-02T20:20:19+01:00 New upstream version 2.0.767+dfsg - - - - - deeffb2a by Étienne Mollier at 2020-12-02T20:20:19+01:00 routine-update: New upstream version - - - - - ef614e85 by Étienne Mollier at 2020-12-02T20:20:25+01:00 Update upstream source from tag 'upstream/2.0.767+dfsg' Update to upstream version '2.0.767+dfsg' with Debian dir 589fa316798fb8d1f3fa77d8e24a3094dd245bf7 - - - - - 1290dd83 by Étienne Mollier at 2020-12-02T20:38:02+01:00 routine-update: Ready to upload to unstable - - - - - 5 changed files: - ChangeLog - configure.ac - debian/changelog - debian/watch - src/libmaus2/util/ArgParser.hpp Changes: ===================================== ChangeLog ===================================== @@ -1,3 +1,9 @@ +libmaus2 (2.0.767-1) unstable; urgency=medium + + * Add getStringArgOrDefault in ArgParser + + -- German Tischler-Höhle <[email protected]> Mon, 23 Nov 2020 13:01:14 +0100 + libmaus2 (2.0.766-1) unstable; urgency=medium * Enable compilation without libsecrecy ===================================== configure.ac ===================================== @@ -1,5 +1,5 @@ -AC_INIT(libmaus2,2.0.766,[[email protected]],[libmaus2],[https://gitlab.com/german.tischler/libmaus2]) -LIBRARY_VERSION=2:766:0 +AC_INIT(libmaus2,2.0.767,[[email protected]],[libmaus2],[https://gitlab.com/german.tischler/libmaus2]) +LIBRARY_VERSION=2:767:0 AC_MSG_NOTICE([Configuring for source in directory ${srcdir}]) AC_CANONICAL_SYSTEM AC_CANONICAL_HOST ===================================== debian/changelog ===================================== @@ -1,9 +1,10 @@ -libmaus2 (2.0.766+dfsg-2) UNRELEASED; urgency=medium +libmaus2 (2.0.767+dfsg-1) unstable; urgency=medium * Add spelling-error-in-header.patch to fix spelling-error-in-binary affecting biobambam2. + * New upstream version - -- Étienne Mollier <[email protected]> Wed, 18 Nov 2020 13:52:56 +0100 + -- Étienne Mollier <[email protected]> Wed, 02 Dec 2020 20:20:29 +0100 libmaus2 (2.0.766+dfsg-1) unstable; urgency=medium ===================================== debian/watch ===================================== @@ -1,4 +1,5 @@ version=4 opts="repacksuffix=+dfsg,dversionmangle=auto,repack,compression=xz" \ - https://gitlab.com/german.tischler/libmaus2/tags?sort=updated_desc .*/archive/.*/libmaus2-@ANY_VERSION@-release-\d+@ARCHIVE_EXT@ + https://gitlab.com/german.tischler/libmaus2/tags?sort=updated_desc \ + .*/archive/.*/libmaus2-@ANY_VERSION@-release-\d+@ARCHIVE_EXT@ ===================================== src/libmaus2/util/ArgParser.hpp ===================================== @@ -604,6 +604,18 @@ namespace libmaus2 } } + std::string getStringArgOrDefault(std::string const & key, std::string const & v_default) const + { + if ( uniqueArgPresent(key) ) + { + return (*this)[key]; + } + else + { + return v_default; + } + } + template<typename value_type> value_type getParsedArgOrDefault(std::string const & key, value_type const & v_default) const { View it on GitLab: https://salsa.debian.org/med-team/libmaus2/-/compare/be6f8364c812e75c44c9134e2cddf2d92690344f...1290dd831b58532ea9eae44df28ad8ab955a59c7 -- View it on GitLab: https://salsa.debian.org/med-team/libmaus2/-/compare/be6f8364c812e75c44c9134e2cddf2d92690344f...1290dd831b58532ea9eae44df28ad8ab955a59c7 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
