diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-09-06 12:37:14 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-09-06 12:37:14 +0200 |
| commit | 486cca122af72382388c7c194945bec783c04f07 (patch) | |
| tree | 660badeb5957838c8930fc80b0fbb3606c3ddd8e | |
| parent | 5665d666499dee54e121d8c11a684067dcc4ceb7 (diff) | |
| download | python-apt-486cca122af72382388c7c194945bec783c04f07.tar.gz | |
* DistUpgrade/DistUpgradeControler.py:
- increased the freespace savety buffer
* debian/changelog:
- updated (prepared new upload)
| -rw-r--r-- | DistUpgrade/Changelog | 2 | ||||
| -rw-r--r-- | DistUpgrade/DistUpgradeControler.py | 2 | ||||
| -rw-r--r-- | debian/changelog | 8 |
3 files changed, 11 insertions, 1 deletions
diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 5e7c36bb..33ecff3d 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-09-06: + - increased the "free-space-savety-buffer" to 100MB 2006-09-05: - added "RemoveEssentialOk" option and put "sysvinit" into it 2006-09-04: diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index a51fa485..02d25121 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -388,7 +388,7 @@ class DistUpgradeControler(object): free = st_usr[statvfs.F_BAVAIL]*st_usr[statvfs.F_FRSIZE] logging.debug("/usr on different fs than %s, free: %s" % (archivedir, free)) - safety_buffer = 1024*1024*75 # 75 Mb + safety_buffer = 1024*1024*100 # 100 Mb logging.debug("using safety buffer: %s" % safety_buffer) if (self.cache.additionalRequiredSpace+safety_buffer) > free: free_at_least = apt_pkg.SizeToStr(self.cache.additionalRequiredSpace+safety_buffer-free) diff --git a/debian/changelog b/debian/changelog index f797ce0a..3012c6d4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +update-manager (0.44.7) edgy; urgency=low + + * UpdateManager/UpdateManager.py: + - be more accurate about dependencies when the user selects only + a supset of the packages + + -- Michael Vogt <michael.vogt@ubuntu.com> Wed, 6 Sep 2006 12:29:05 +0200 + update-manager (0.44.6) edgy; urgency=low * SoftwareProperties/SoftwareProperties.py: |
