| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2011-01-10 | merged lp:~geser/ubuntu/natty/python-apt/build-with-py3.2 (manually as bzr ↵ | Michael Vogt | 2 | -4/+4 | |
| thinks the branches have nothing in common) | |||||
| 2010-12-13 | * apt/progress/text.py: | Michael Vogt | 1 | -6/+8 | |
| - only run ioctl for termios.TIOCGWINSZ if the fd is a tty | |||||
| 2010-03-03 | apt/progress/old.py: Add missing return statements. | Julian Andres Klode | 1 | -10/+10 | |
| 2010-03-03 | apt/progress/old.py: Call parent constructors. | Julian Andres Klode | 1 | -0/+2 | |
| 2010-03-03 | * apt/progress/old.py: | Julian Andres Klode | 1 | -25/+64 | |
| - Let the new method call the old one; e.g. status_update() now calls self.statusUpdate(). This improves compatibility for sub classes. | |||||
| 2010-03-01 | Some stylistic changes. | Julian Andres Klode | 3 | -6/+14 | |
| 2010-03-01 | * apt/progress/text.py: | Julian Andres Klode | 1 | -2/+0 | |
| - Drop InstallProgress, it's useless to keep this alias around. | |||||
| 2010-03-01 | Style fixes. | Julian Andres Klode | 2 | -3/+6 | |
| 2010-02-17 | apt/progress/old.py: move compat updateInterface here | Michael Vogt | 2 | -4/+1 | |
| 2010-02-17 | apt/progress/base.py: more compat fixes | Michael Vogt | 1 | -1/+8 | |
| 2010-02-17 | apt/progress/base.py: call pipe ends {write,status}_stream | Michael Vogt | 1 | -6/+6 | |
| 2010-02-17 | * apt/cache.py: | Michael Vogt | 1 | -7/+7 | |
| - call install_progress.startUpdate()/finishUpdate() to keep compatibility with older code * apt/progress/base.py: - restore "self.statusfd, self.writefd" type, provide additional self.status_pipe and self.write_pipe file like objects | |||||
| 2010-02-02 | apt/progress/base.py: select.error objects do not have an errno attribute ↵ | Julian Andres Klode | 1 | -2/+2 | |
| (Closes: #568005) | |||||
| 2010-01-20 | apt/progress/gtk2.py: Add GAcquireProgress. | Julian Andres Klode | 1 | -21/+103 | |
| 2010-01-20 | apt/progress/base.py: Add InstallProgress.dpkg_status_change. | Julian Andres Klode | 1 | -3/+8 | |
| 2010-01-17 | apt/progress/text.py: Replace one print statement with a .write() call. | Julian Andres Klode | 1 | -1/+1 | |
| 2010-01-17 | apt/progress/base.py: Fix some parsing of dpkg status fd. | Julian Andres Klode | 1 | -3/+9 | |
| 2010-01-17 | apt/progress/base.py: Use attributes of IOError and OSError object. | Julian Andres Klode | 1 | -6/+6 | |
| Do not treat them as tuples, but use the attributes. This is way more 'modern'. | |||||
| 2010-01-15 | Make all class-level constants have uppercase names. | Julian Andres Klode | 2 | -2/+2 | |
| 2009-09-16 | Merge 0.7.13.0 - 0.7.13.3 from unstable. | Julian Andres Klode | 1 | -3/+15 | |
| * apt/cache.py: - add actiongroup() method (backport from 0.7.92) - re-work the logic in commit() to fail if installArchives() returns a unexpected result * apt/progress/__init__.py: - catch exceptions in pm.DoInstall() * apt/package.py: - Export if a package is an essential one (Closes: #543428) * python/depcache.cc: - Make ActionGroups context managers so apt.Cache.actiongroup() has the same behavior as in 0.7.92 * apt/cache.py: - Add raiseOnError option to Cache.update() (Closes: #545474) * apt/package.py: - Use the source version instead of the binary version in fetch_source(). * apt/progress/__init__.py: - Correctly ignore ECHILD by checking before EINTR (Closes: #546007) * apt/cache.py: - Convert argument to str in __getitem__() (Closes: #542965). | |||||
| 2009-09-15 | merge from mvo | Julian Andres Klode | 1 | -4/+19 | |
| * apt/cache.py: - re-work the logic in commit() to fail if installArchives() returns a unexpected result * apt/progress/__init__.py: - catch exceptions in pm.DoInstall() | |||||
| 2009-09-10 | apt/progress/__init__.py: Correctly ignore ECHILD by checking before EINTR ↵ | Julian Andres Klode | 1 | -2/+2 | |
| (Closes: #546007) As the check for != EINTR will re-raise the error, we have to check ECHILD before it. | |||||
| 2009-09-03 | apt/progress/__init__.py: doc string update for run() | Michael Vogt | 1 | -1/+5 | |
| 2009-09-03 | * apt/progress/__init__.py: | Michael Vogt | 1 | -2/+9 | |
| - catch exceptions in pm.DoInstall() | |||||
| 2009-09-03 | apt/progress/__init__.py: doc update | Michael Vogt | 1 | -1/+5 | |
| 2009-07-31 | apt/progress: Large update, introducing apt.progress.base.InstallProgress. | Julian Andres Klode | 5 | -303/+223 | |
| This contains many updates including the introduction of a new InstallProgress class which replaces the old InstallProgress and DpkgInstallProgress classes. | |||||
| 2009-07-31 | apt/progress/gtk2.py: Cleanup. | Julian Andres Klode | 1 | -15/+21 | |
| 2009-07-31 | apt/progress/old.py: Derive some more old classes from new classes. | Julian Andres Klode | 1 | -33/+10 | |
| OpTextProgress is now derived from text.OpProgress and DumbInstallProgress is derived from base.InstallProgress. | |||||
| 2009-07-31 | python: Remove the progress classes in apt_pkg. | Julian Andres Klode | 2 | -34/+30 | |
| They have been replaced with apt.progress.base, so stuff like GTK+ or Qt progress classes can be written using subclassing. | |||||
| 2009-07-31 | apt/progress/base.py: Introduce new base progress classes. | Julian Andres Klode | 2 | -20/+183 | |
| Also adjust the class in apt/progress/text.py to derive from this instead of the classes in apt_pkg (which will be dropped). | |||||
| 2009-07-30 | Merge 0.7.11.1-0.7.12.0 from unstable. | Julian Andres Klode | 1 | -5/+11 | |
| 2009-07-30 | apt/progress/__init__.py: Fix InstallProgress.waitChild() | Julian Andres Klode | 1 | -2/+3 | |
| - Do not break out of InstallProgress.waitChild()'s loop just because it is hitting EINTR, but only on child exit or on ECHILD. | |||||
| 2009-07-30 | apt/progress.py: Extract the package name from the status message | Julian Andres Klode | 1 | -2/+3 | |
| (Closes: #532660) | |||||
| 2009-07-25 | Exception handling fixes in InstallProgress class. | Stephan Peijnik | 1 | -4/+13 | |
| 2009-07-23 | python/cdrom.cc: Do not check arguments in PkgCdromNew. | Julian Andres Klode | 1 | -1/+1 | |
| 2009-07-21 | apt/progress/old.py: Replace OpProgress.sub_op with OpProgress.subop. | Julian Andres Klode | 1 | -3/+3 | |
| 2009-07-19 | apt/progress/text.py: Always call methods of the parent class. | Julian Andres Klode | 1 | -1/+10 | |
| 2009-07-19 | apt/progress/text.py: Add some docstrings. | Julian Andres Klode | 1 | -0/+5 | |
| 2009-07-19 | apt/progress/text.py: Introduce CdromProgress. | Julian Andres Klode | 1 | -4/+27 | |
| 2009-07-19 | python/cdromprogress.cc: Add apt_pkg.CdromProgress. | Julian Andres Klode | 1 | -18/+4 | |
| 2009-07-17 | apt: Use apt_pkg.gettext instead of Python's gettext. | Julian Andres Klode | 2 | -5/+3 | |
| 2009-07-17 | apt/progress/text.py: Improve final summary. | Julian Andres Klode | 1 | -14/+22 | |
| 2009-07-17 | apt/progress/text.py: Cleanup, add i18n (and try apt translation if we have ↵ | Julian Andres Klode | 1 | -40/+52 | |
| none). | |||||
| 2009-07-17 | apt/progress: Fix apt.progress with COMPAT_0_7 | Julian Andres Klode | 2 | -13/+6 | |
| 2009-07-17 | apt/progress/text.py: Don't display complete items in AcquireProgress.fetch | Julian Andres Klode | 1 | -0/+3 | |
| 2009-07-16 | apt/progress/text.py: Limit number of displayed items by display size. | Julian Andres Klode | 1 | -2/+8 | |
| 2009-07-16 | apt/progress/text.py: Print status messages. | Julian Andres Klode | 1 | -7/+6 | |
| 2009-07-16 | apt/progress/gtk2.py: Replace apt.progress with apt.progress.old. | Julian Andres Klode | 1 | -12/+13 | |
| 2009-07-16 | apt/progress: Move apt.progress to apt.progress.old | Julian Andres Klode | 2 | -418/+447 | |
| 2009-07-16 | apt/progress/text.py: 'Sync' AcquireProgress with the one used for apt-get. | Julian Andres Klode | 1 | -18/+93 | |
