# # patch "ChangeLog" # from [31d14d51d3d418d20fd9166a3c1bca5c58792807] # to [7ea13e6ee21fdeb720e6317972e61d061cd694bc] # # patch "contrib/ciabot_monotone.py" # from [52e228b933b23db9c2c0b7cb554e1ebf9c3942d2] # to [8eb270dff65b9be32974d139b0e6d8ba720902d4] # --- ChangeLog +++ ChangeLog @@ -1,5 +1,10 @@ 2005-07-07 Nathaniel Smith + * contrib/ciabot_monotone.py (Monotone.log): Fix to work with + 0.20. + +2005-07-07 Nathaniel Smith + * Makefile.am (monotone_CPPFLAGS, unit_tests_CPPFLAGS): Add -DBOOST_REGEX_V4_CHAR_REGEX_TRAITS_HPP to work around g++ 4.0/boost 1.32.0 lossage. --- contrib/ciabot_monotone.py +++ contrib/ciabot_monotone.py @@ -116,7 +116,7 @@ last_arg = ["--last=%i" % (xlast,)] else: last_arg = [] - return self._run_monotone(["log", rev] + last_arg) + return self._run_monotone(["log", "-r", rev] + last_arg) def toposort(self, revs): args = ["automate", "toposort"] + revs