diff -Nru juju-core-1.24.6/debian/changelog juju-core-1.24.6/debian/changelog --- juju-core-1.24.6/debian/changelog 2015-10-19 21:43:29.000000000 +0000 +++ juju-core-1.24.6/debian/changelog 2015-10-21 17:09:35.000000000 +0000 @@ -1,3 +1,13 @@ +juju-core (1.24.6-0ubuntu3) wily; urgency=medium + + * Fix fake-future dep8 tests: + - Correct the date format string so it uses months as intended + instead of generating invalid dates. Thanks to Colin Watson. + - Fix /etc/os-release generation when the faked release is an LTS: + VERSION_ID should not contain "LTS". + + -- Robie Basak Wed, 21 Oct 2015 17:07:29 +0000 + juju-core (1.24.6-0ubuntu2) wily; urgency=medium * Updates to support MIR in Ubuntu: diff -Nru juju-core-1.24.6/debian/tests/fake-future.sh juju-core-1.24.6/debian/tests/fake-future.sh --- juju-core-1.24.6/debian/tests/fake-future.sh 2015-10-16 14:04:23.000000000 +0000 +++ juju-core-1.24.6/debian/tests/fake-future.sh 2015-10-21 17:01:31.000000000 +0000 @@ -55,9 +55,9 @@ codename=`echo "$last_line"|cut -d, -f2|bump_words` series=`echo "$last_line"|cut -d, -f3|bump_word` -created=`date -d '-2 days' +%Y-%M-%d` -release=`date -d '-1 days' +%Y-%M-%d` -eol=`date -d '+1 days' +%Y-%M-%d` +created=`date -d '-2 days' +%Y-%m-%d` +release=`date -d '-1 days' +%Y-%m-%d` +eol=`date -d '+1 days' +%Y-%m-%d` id=`lsb_release -si` @@ -79,7 +79,7 @@ ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu $codename" -VERSION_ID="$version" +VERSION_ID="$version_" HOME_URL="http://www.ubuntu.com/" SUPPORT_URL="http://help.ubuntu.com/" BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"