From 15e72abc8f7890e42cb883b582b54058b9e7f79b Mon Sep 17 00:00:00 2001 From: Avram Lubkin Date: Tue, 4 Oct 2016 08:46:19 -0400 Subject: [PATCH] Updated sources for 1.15.0 --- .gitignore | 1 + sources | 3 +-- test_fails_on_missing_file.patch | 12 ++++++++++++ 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 test_fails_on_missing_file.patch diff --git a/.gitignore b/.gitignore index a7d1a45..5de6836 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /dnspython-1.12.0GITa4774ee.tar.gz /dnspython3-1.12.0GIT99fd864.tar.gz /dnspython-1.12.0GIT99fd864.tar.gz +/dnspython-1.15.0.tar.gz diff --git a/sources b/sources index 5dd0c27..07b6da6 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -13eb56cdb03a2bbef3b14b4f07aa0c21 dnspython3-1.12.0GIT99fd864.tar.gz -9e5260494d865d43d05ec51c42e1fecd dnspython-1.12.0GIT99fd864.tar.gz +63a679089822fb86127867c315286dc5 dnspython-1.15.0.tar.gz diff --git a/test_fails_on_missing_file.patch b/test_fails_on_missing_file.patch new file mode 100644 index 0000000..5c7c989 --- /dev/null +++ b/test_fails_on_missing_file.patch @@ -0,0 +1,12 @@ +diff -ruN /home/avram/Desktop/dnspython-1.15.0.orig/tests/test_zone.py /home/avram/Desktop/dnspython-1.15.0/tests/test_zone.py +--- a/tests/test_zone.py 2016-09-20 12:24:02.000000000 -0400 ++++ b/tests/test_zone.py 2016-10-04 07:59:39.717946790 -0400 +@@ -177,7 +177,7 @@ + def testToFileFilename(self): + z = dns.zone.from_file(here('example'), 'example') + try: +- z.to_file('example3-filename.out') ++ z.to_file(here('example3-filename.out')) + ok = filecmp.cmp(here('example3-filename.out'), + here('example3.good')) + finally: