Browse Source

releasing version 0.8.5-2

Jelmer Vernooij 13 years ago
parent
commit
23a0a15776
2 changed files with 10 additions and 6 deletions
  1. 1 1
      debian/changelog
  2. 9 5
      debian/patches/01_less_strict_index_tests

+ 1 - 1
debian/changelog

@@ -1,4 +1,4 @@
-dulwich (0.8.5-2) UNRELEASED; urgency=low
+dulwich (0.8.5-2) unstable; urgency=low
 
   * Make index tests a bit less strict, fixes FTBFS on some systems.
     Closes: #666328

+ 9 - 5
debian/patches/01_less_strict_index_tests

@@ -7,8 +7,8 @@ Applied-Upstream: merged in revision 1044
 X-Bzr-Revision-Id: git-v1:c398d692d1ba6c5fcee26383bfc78f73875de20b
 
 === modified file 'dulwich/tests/test_index.py'
---- old/dulwich/tests/test_index.py	2012-04-02 10:29:11 +0000
-+++ new/dulwich/tests/test_index.py	2012-04-02 10:37:42 +0000
+--- old/dulwich/tests/test_index.py	2012-03-29 00:21:54 +0000
++++ new/dulwich/tests/test_index.py	2012-04-02 11:05:18 +0000
 @@ -26,7 +26,6 @@
  import shutil
  import stat
@@ -17,7 +17,7 @@ X-Bzr-Revision-Id: git-v1:c398d692d1ba6c5fcee26383bfc78f73875de20b
  import tempfile
  
  from dulwich.index import (
-@@ -216,11 +215,7 @@
+@@ -216,15 +215,8 @@
  
  class BuildIndexTests(TestCase):
  
@@ -28,9 +28,13 @@ X-Bzr-Revision-Id: git-v1:c398d692d1ba6c5fcee26383bfc78f73875de20b
 -        self.assertTrue(index_entry[0] > time - delta)
 +    def assertReasonableIndexEntry(self, index_entry, mode, filesize, sha):
          self.assertEquals(index_entry[4], mode)  # mode
+-        if sys.platform != 'nt':
+-            self.assertEquals(index_entry[5], os.getuid())
+-            self.assertEquals(index_entry[6], os.getgid())
          self.assertEquals(index_entry[7], filesize)  # filesize
          self.assertEquals(index_entry[8], sha)  # sha
-@@ -280,8 +275,6 @@
+ 
+@@ -283,8 +275,6 @@
                  repo.object_store, tree.id)
  
          # Verify index entries
@@ -39,7 +43,7 @@ X-Bzr-Revision-Id: git-v1:c398d692d1ba6c5fcee26383bfc78f73875de20b
          index = repo.open_index()
          self.assertEquals(len(index), 4)
  
-@@ -289,28 +282,28 @@
+@@ -292,28 +282,28 @@
          apath = os.path.join(repo.path, 'a')
          self.assertTrue(os.path.exists(apath))
          self.assertReasonableIndexEntry(index['a'],