Hi, Duplicity 0.6.25 introduced a warning about 0.6 series beeing phased out.
This warning breaks the parsing of duplicity --version done by deja-dup and makes it bail that only version 0.6.0 is installed while it needs at least 0.6.23. The patch below (applied directly to /usr/local/bin/duplicity, sorry, not a real patch for the port) fixes it by removing this warning. --- /usr/local/bin/duplicity~ Sat Jan 3 17:29:23 2015 +++ /usr/local/bin/duplicity Sat Jan 3 17:29:23 2015 @@ -1328,13 +1328,6 @@ # set the current time strings (make it available for command line processing) dup_time.setcurtime() - # deprecation warning - log.Warn(_( -""" -Duplicity 0.6 series is being deprecated: -See http://www.nongnu.org/duplicity/ -"""), log.WarningCode.deprecate_0_6) - # determine what action we're performing and process command line action = commandline.ProcessCommandLine(sys.argv[1:]) -- Matthieu Herrb