[Apt-offline-devel] [SCM] Offline APT Package Manager branch, master, updated. 0.9.5-19-g2b1fdf4

Ritesh Raj Sarraf rrs at researchut.com
Tue Dec 8 10:50:23 UTC 2009


The following commit has been merged in the master branch:
commit 2b1fdf487a25b5266a12bcd93ebfb4716889d0ab
Author: Ritesh Raj Sarraf <rrs at researchut.com>
Date:   Sun Dec 6 09:14:41 2009 +0530

    Make strip assumptions from RHS
    
    The earlier assumption was causing problems for packages like OO, that
    have a . in their package name.
    
    Following are the list of bugs present.
    org-calc        : openoffice.org-calc: crashes when deleting the 3rd
    sheet of the given
    org-calc        : Something wrong with vertical text in oocalc
    523008  : smplayer: MPlayer crash while playing Real media
    org-calc        : openoffice: oocalc 3.1 is so slow to display graphics
    that it is nearly
    522182  : xserver-xorg-video-openchrome: Wrong Mouse placing
    315762  : tetex-bin: Fork bomb in postinst/fmtutil?
    513511  : zargs: cannot fit single argument within size limit
    org-calc        : openoffice.org-calc: Cannot Select the Document Option
    When Assigning
    org-calc        : sometimes resizing of charts in oocalc results in
    "strange strings"
    523497  : whohas: memory pig for some queries (such as sqlite)
    525514  : xserver-xorg-video-openchrome: X-Server becomes unresponsive
    555957  : zsh: failed to create hard link as lock file
    /root/.zsh/history.LOCK: no
    288323  : bash: doesn't handle suspension of commands in conditional
    lists correctly
    501183  : xserver-xorg-video-openchrome: System freezes with screen
    saver
    535851  : zsh: completion does not work anymore with some specific
    applications
    org-calc        : openoffice.org-calc: Paste of one formula into
    multiple cells fails
    276187  : zsh: Ineractive menu completion with tab doesnt work.
    org-calc        : openoffice.org-calc: Export... to XHTML throws up
    error message "JRE is
    492404  : xserver-xorg-video-openchrome: Resolutions only up to 800x600
    496899  : texlive-base-bin's tools use hardcoded TMPDIR variable
    org-impress     : ooimpress eats up all memory when opening a ppt file
    org-calc        : openoffice.org: [VBA Support] Poor compatibility
    433481  : texlive-base-bin: Launches forkbomb on upgrade/install
    org-impress     : openoffice.org-impress: Crashes during save if /tmp
    fills up
    406526  : tetex-base: woeful copyright file
    org-calc        : openoffice.org-calc: unable to resize document window
    443237  : texlive-base-bin requires omega during configure
    528180  : xserver-xorg-video-openchrome: incompatible whith kernel
    2.6.26 and
    org-core        : error while loading shared libraries (libjvmfwk.so.3
    and libunopkgapp.so)
    org-calc        : openoffice.org-calc: Extremely slow scrolling in calc
    when charts are
    428259  : texlive-base-bin: Launches forkbomb on upgrade/install
    (Y) Yes. Proceed with installation
    (N) No, Abort.
    (R) Redisplay the list of bugs.
    (Bug Number) Display the bug report from the Offline Bug Reports.
    (?) Display this help message.
    What would you like to do next:  (y, N, Bug Number, R, ?)y

diff --git a/AptOfflineCoreLib.py b/AptOfflineCoreLib.py
index 1a5d34f..9c2043b 100644
--- a/AptOfflineCoreLib.py
+++ b/AptOfflineCoreLib.py
@@ -928,7 +928,7 @@ def installer( args ):
                 '''
                 log.msg( "\n\nFollowing are the list of bugs present.\n" )
                 for each_bug in dictList.keys():
-                        bug_num = each_bug.split( '.' )[1]
+                        bug_num = each_bug.split( '.' )[-2]
                         bug_subject = dictList[each_bug]
                         log.msg( "%s\t%s\n" % ( bug_num, bug_subject ) )
             

-- 
Offline APT Package Manager



More information about the Apt-offline-devel mailing list